We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9834eae commit 431b9b5Copy full SHA for 431b9b5
cookbook/examples/agents/deep_knowledge.py
@@ -41,7 +41,7 @@ def initialize_knowledge_base():
41
),
42
)
43
# Load the knowledge base (comment out after first run)
44
- agent_knowledge.load()
+ # agent_knowledge.load()
45
return agent_knowledge
46
47
@@ -120,6 +120,7 @@ def get_example_topics() -> List[str]:
120
return [
121
"What are AI agents and how do they work in Agno?",
122
"What chunking strategies does Agno support for text processing?",
123
+ "How can I implement custom tools in Agno?",
124
"How does knowledge retrieval work in Agno?",
125
"What types of embeddings does Agno support?",
126
]
0 commit comments