recordings

This commit is contained in:
Ashwin Bharambe 2025-10-01 13:48:00 -07:00
parent a78f981dbb
commit fa6ed28aea
21 changed files with 4085 additions and 6339 deletions

View file

@ -199,14 +199,14 @@ class TestMCPToolsInChatCompletion:
}
# Get the tools from MCP
tools_response = llama_stack_client.tool_runtime.list_runtime_tools(
tools_response = llama_stack_client.tool_runtime.list_tools(
tool_group_id=test_toolgroup_id,
extra_headers=auth_headers,
)
# Convert to OpenAI format for inference
tools = []
for tool in tools_response.data:
for tool in tools_response:
tools.append(
{
"type": "function",