mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 07:14:20 +00:00
Changed config and tavily_search for tavily API
This commit is contained in:
parent
7915551eee
commit
ef303c2a17
2 changed files with 16 additions and 2 deletions
|
@ -18,10 +18,20 @@ class TavilySearchToolConfig(BaseModel):
|
||||||
default=3,
|
default=3,
|
||||||
description="The maximum number of results to return",
|
description="The maximum number of results to return",
|
||||||
)
|
)
|
||||||
|
timeout: float = Field(
|
||||||
|
default=30.0,
|
||||||
|
description="HTTP request timeout in seconds",
|
||||||
|
)
|
||||||
|
connect_timeout: float = Field(
|
||||||
|
default=10.0,
|
||||||
|
description="HTTP connection timeout in seconds",
|
||||||
|
)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def sample_run_config(cls, __distro_dir__: str) -> dict[str, Any]:
|
def sample_run_config(cls, __distro_dir__: str) -> dict[str, Any]:
|
||||||
return {
|
return {
|
||||||
"api_key": "${env.TAVILY_SEARCH_API_KEY:=}",
|
"api_key": "${env.TAVILY_SEARCH_API_KEY:+}",
|
||||||
"max_results": 3,
|
"max_results": 3,
|
||||||
|
"timeout": 30.0,
|
||||||
|
"connect_timeout": 10.0,
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,11 @@ 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()
|
||||||
async with httpx.AsyncClient() as client:
|
|
||||||
|
# Configure timeout for external API calls using config values
|
||||||
|
timeout = httpx.Timeout(timeout=self.config.timeout, connect=self.config.connect_timeout)
|
||||||
|
|
||||||
|
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"]},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue