From 652f8a45c7259cfcbb710c3a86abfda6df9b723e Mon Sep 17 00:00:00 2001 From: ksp2000 Date: Fri, 28 Feb 2025 18:56:25 +0530 Subject: [PATCH 1/2] Add requirements file for local AI reasoning agent --- .../requirements_local_ai_reasoning_agent.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ai_agent_tutorials/ai_reasoning_agent/requirements_local_ai_reasoning_agent.txt diff --git a/ai_agent_tutorials/ai_reasoning_agent/requirements_local_ai_reasoning_agent.txt b/ai_agent_tutorials/ai_reasoning_agent/requirements_local_ai_reasoning_agent.txt new file mode 100644 index 0000000..88c5c83 --- /dev/null +++ b/ai_agent_tutorials/ai_reasoning_agent/requirements_local_ai_reasoning_agent.txt @@ -0,0 +1,4 @@ +agno +ollama +fastapi +uvicorn \ No newline at end of file From 2c61bedc4f6dcfd9b26cdba6b8f3a79ce08c3f72 Mon Sep 17 00:00:00 2001 From: ksp2000 Date: Fri, 28 Feb 2025 18:56:50 +0530 Subject: [PATCH 2/2] Add README for AI Reasoning Agent with setup instructions and features --- .../ai_reasoning_agent/README.md | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 ai_agent_tutorials/ai_reasoning_agent/README.md diff --git a/ai_agent_tutorials/ai_reasoning_agent/README.md b/ai_agent_tutorials/ai_reasoning_agent/README.md new file mode 100644 index 0000000..119bc83 --- /dev/null +++ b/ai_agent_tutorials/ai_reasoning_agent/README.md @@ -0,0 +1,51 @@ +## AI Reasoning Agent + +The AI Reasoning Agent leverages advanced AI models to provide insightful reasoning and decision-making capabilities. This agent is designed to assist users in various analytical tasks by processing information and generating structured outputs. + +### Features +- **Advanced Reasoning**: Utilizes the Ollama model to perform complex reasoning tasks +- **Interactive Playground**: Provides a user-friendly interface for interacting with the reasoning agent +- **Markdown Support**: Outputs results in markdown format for easy readability and sharing +- **Customizable Agent**: Easily configurable to suit different reasoning scenarios + +### How to Get Started +1. **Clone the repository**: + ```bash + git clone https://github.com/Shubhamsaboo/awesome-llm-apps.git + cd ai_agent_tutorials/ai_reasoning_agent + ``` + +2. **Install the required packages**: + #### For Local AI Reasoning Agent + ```bash + pip install -r requirements_local_ai_reasoning_agent.txt + ``` + +3. **Run the application**: + ```bash + python local_ai_reasoning_agent.py + ``` + +### Using the Agent +1. **Access the Playground**: + - Open the provided URL to access the interactive playground + - The playground allows you to input queries and receive structured reasoning outputs + +2. **Input Queries**: + - Enter your queries in the provided input field + - The agent processes the input and provides detailed reasoning and analysis + +3. **View Results**: + - Results are displayed in markdown format + - Easily copy and share the outputs for further use + +### Features in Detail +- **Reasoning Capabilities**: + - Handles a wide range of analytical tasks + - Provides clear and structured outputs + - Supports markdown for easy sharing and readability + +- **Interactive Interface**: + - User-friendly playground for seamless interaction + - Real-time processing and output generation + - Configurable settings to tailor the agent's behavior \ No newline at end of file