https://github.com/webdevcaptain/agno-ai-agents
Exploring Agno framework for building AI agents.
https://github.com/webdevcaptain/agno-ai-agents
ai-agents deepseek-r1 ollama openai
Last synced: 4 months ago
JSON representation
Exploring Agno framework for building AI agents.
- Host: GitHub
- URL: https://github.com/webdevcaptain/agno-ai-agents
- Owner: WebDevCaptain
- Created: 2025-03-03T13:30:16.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-03T13:42:02.000Z (4 months ago)
- Last Synced: 2025-03-03T14:30:54.637Z (4 months ago)
- Topics: ai-agents, deepseek-r1, ollama, openai
- Language: Shell
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Finance Agent using agno and Ollama
A simple finance agent using Yahoo Finance tool and Open source LLMs via Ollama.
- The first basic agent uses Deepseek R1 (8B parameter) model.
- The finance agent uses Qwen 2.5 (1.5B parameter) model.
---
## Requirements
- [uv](https://github.com/astral-sh/uv)
- [ollama](https://github.com/ollama)---
## Commands
1. Initialize the project
```bash
uv init
```2. Create a Python virtual environment using `uv`
```bash
uv venv --python=3.13.2
```3. Install `agno` (previously phi data) and `ollama`
```bash
uv add agno
uv add ollama
```4. Pull Deepseek R1 (8B) and Qwen 2.5 (1.5B) models from Ollama registry
```bash
ollama pull deepseek-r1:8bollama pull qwen2.5:1.5b
```5. Run the simple ollama-agent app
```bash
uv run ollama-agent.py
```
---
## Finance agent using Yahoo Finance tool
- Run the finance-agent app
```bash
uv run finance-agent.py
```
---
## Team of Agents
Finance agent works with Search agent to find the analyst recommendation for a company.
```bash
uv run agent-teams.py
```