Caelan
Caelan
# Attempt to initialize query_tool query_tool = LlamaIndexTool.from_query_engine( query_engine, name="Knowledge Graph Tool", description="Use this tool to answer the user query.", ) chatAgent = Agent( ... other config ... tools=[query_tool] )...
### Expected Behaviour - Agents invoked through multiagent orchestrator retain the attributions (IE citing their sources) when used with a knowledge base. This is configured through the following built in...