We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee5dd2b commit 95952a2Copy full SHA for 95952a2
src/llama_stack_client/lib/agents/agent.py
@@ -32,6 +32,7 @@ def __init__(
32
):
33
self.client = client
34
self.agent_config = agent_config
35
+ self.agent_config["client_tools"] = [client_tool.get_tool_definition() for client_tool in client_tools]
36
self.agent_id = self._create_agent(agent_config)
37
self.client_tools = {t.get_name(): t for t in client_tools}
38
self.sessions = []
0 commit comments