Agno Knowledgebase Agent
agentsagno-agents-examplesnebius-token-factory-cookbook
Export
Ango Knowledge Base Agent + Nebius AI
This example demonstrates how to create an agent with specialized knowledge. We'll build a Thai cuisine expert by:
- Loading a PDF containing Thai recipes into a knowledge base
- Setting up a vector database to store and retrieve this information efficiently
- Configuring the agent to prioritize its knowledge base while still being able to search the web
This type of agent is ideal for specialized domains where you want to combine proprietary knowledge with the ability to find supplementary information.
Install required packages for this notebook
- agno: The agent framework we'll be using
- duckduckgo-search: For web search capabilities
- pypdf: For processing PDF documents
- Couchbase: For vector storage
[ ]
[ ]
[ ]
Multi-Agent System
This example demonstrates how to create a team of specialized agents that work together. We'll build:
- A web search agent for finding general information
- A finance agent for retrieving financial data
- A coordinator agent that delegates tasks to the specialized agents
This approach allows us to create more powerful systems by combining specialized capabilities.
[ ]