diff --git a/ai_agent_tutorials/ai_reasoning_agent/agents.db b/ai_agent_tutorials/ai_reasoning_agent/agents.db deleted file mode 100644 index c2d3d52..0000000 Binary files a/ai_agent_tutorials/ai_reasoning_agent/agents.db and /dev/null differ diff --git a/ai_agent_tutorials/ai_reasoning_agent/local_ai_reasoning_agent.py b/ai_agent_tutorials/ai_reasoning_agent/local_ai_reasoning_agent.py new file mode 100644 index 0000000..8f58d97 --- /dev/null +++ b/ai_agent_tutorials/ai_reasoning_agent/local_ai_reasoning_agent.py @@ -0,0 +1,12 @@ +from phi.agent import Agent +from phi.model.ollama import Ollama +from phi.playground import Playground, serve_playground_app + +reasoning_agent = Agent(name="Reasoning Agent", model=Ollama(id="qwq:32b"), markdown=True) + +# UI for Reasoning agent +app = Playground(agents=[reasoning_agent]).get_app() + +# Run the Playground app +if __name__ == "__main__": + serve_playground_app("local_ai_reasoning_agent:app", reload=True) \ No newline at end of file