From b6629240570c4d901673ec9ebacaf40c8dc36688 Mon Sep 17 00:00:00 2001 From: anigasan Date: Sun, 6 Jul 2025 18:44:27 -0700 Subject: [PATCH] more commits --- .../remote/tool_runtime/tavily_search/tavily_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/providers/remote/tool_runtime/tavily_search/tavily_search.py b/llama_stack/providers/remote/tool_runtime/tavily_search/tavily_search.py index cdaf78d4a..d89c9b101 100644 --- a/llama_stack/providers/remote/tool_runtime/tavily_search/tavily_search.py +++ b/llama_stack/providers/remote/tool_runtime/tavily_search/tavily_search.py @@ -70,7 +70,7 @@ class TavilySearchToolRuntimeImpl(ToolGroupsProtocolPrivate, ToolRuntime, NeedsR async def invoke_tool(self, tool_name: str, kwargs: dict[str, Any]) -> ToolInvocationResult: api_key = self._get_api_key() - timeout = https.Timeout(timeout=self.config.timeout, connect=self.config.connect_timeout) + httpx.Timeout(timeout=self.config.timeout, connect=self.config.connect_timeout) async with httpx.AsyncClient() as client: response = await client.post(