Skip to main content
Full-stack AI applications - not toy demos. Each app solves a real problem with proper architecture.

Examples

Agentic RAG

Document Q&A with knowledge base, citations, and conversation memory.

Text to SQL

Natural language database queries with dynamic few-shot learning.

Answer Engine

Perplexity-style search with multi-source synthesis.

Running the Apps

git clone https://github.com/agno-agi/agno.git
cd agno

python3 -m venv .venv
source .venv/bin/activate

# Install for specific app
uv pip install -r cookbook/02_examples/streamlit_apps/agentic_rag/requirements.txt

# Run
streamlit run cookbook/02_examples/streamlit_apps/agentic_rag/app.py
Open localhost:8501 to use the application.