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 b5dce10 commit 98bf162Copy full SHA for 98bf162
src/llama_stack_client/lib/agents/agent.py
@@ -29,6 +29,7 @@ def __init__(
29
):
30
self.client = client
31
self.agent_config = agent_config
32
+ self.agent_config["client_tools"] = [client_tool.get_tool_definition() for client_tool in client_tools]
33
self.agent_id = self._create_agent(agent_config)
34
self.client_tools = {t.get_name(): t for t in client_tools}
35
self.sessions = []
0 commit comments