Prerequisites
- Manual
- Agentic
Start AgentOS
Load the Knowledge Agent
Connect to AgentOS UI
Open os.agno.com and log in. Click Add OS, choose Local, enterhttp://localhost:8000, click Connect.
Try one prompt against each agent:
“What is Agno?” → Knowledge Agent answers from the loaded RAG corpus.
“How do I create my first agent?” → Knowledge Agent cites the First Agent doc.
“Search the Agno docs for how to use LearningMachine.” → MCP Agent calls the docs MCP.
“What tools do you have access to?” → MCP Agent lists every tool the docs MCP exposes.
What you have now
| Agent | Tools | Backed by |
|---|---|---|
| Knowledge Agent | search_knowledge_base, agentic memory | pgvector index seeded with https://docs.agno.com/introduction.md and https://docs.agno.com/first-agent.md |
| MCP Agent | Whatever the docs MCP exposes | MCPTools(url="https://docs.agno.com/mcp") |
Add your own knowledge
Editagents/knowledge_agent.py and update load_default_documents() to point at your own URLs or files:
skip_if_exists=True makes the loader idempotent.