made changes to tavily_search, simplified config logic

This commit is contained in:
anigasan 2025-07-07 12:39:33 -07:00
parent b662924057
commit ed6003cf45

View file

@ -70,9 +70,9 @@ class TavilySearchToolRuntimeImpl(ToolGroupsProtocolPrivate, ToolRuntime, NeedsR
async def invoke_tool(self, tool_name: str, kwargs: dict[str, Any]) -> ToolInvocationResult: async def invoke_tool(self, tool_name: str, kwargs: dict[str, Any]) -> ToolInvocationResult:
api_key = self._get_api_key() api_key = self._get_api_key()
httpx.Timeout(timeout=self.config.timeout, connect=self.config.connect_timeout) timeout = httpx.Timeout(timeout=self.config.timeout)
async with httpx.AsyncClient() as client: async with httpx.AsyncClient(timeout=timeout) as client:
response = await client.post( response = await client.post(
"https://api.tavily.com/search", "https://api.tavily.com/search",
json={"api_key": api_key, "query": kwargs["query"]}, json={"api_key": api_key, "query": kwargs["query"]},