Sarthak Deshpande
Sarthak Deshpande
Since you are using agents, you need to use AgentConfigSearchToolDefinition in the agent_config and not SearchToolDefinition. In the code base checkout the object AgentConfigSearchToolDefinition and use that and for future...
Can you send your stack trace and the code properly? Start to end
Firstly its self.client.agents.sessions.create and self.client.agents.turns.create. You have written session and turn respectively in their place that could be causing an issue. Update that and let me know ``` class Agent:...
I am unable to solve this because I can't see where SearchEngineType is being used in this code
You are using AgentConfigToolSearchToolDefinition and not SearchEngineType ``` class AgentConfigToolSearchToolDefinition(TypedDict, total=False): api_key: Required[str] engine: Required[Literal["bing", "brave"]] type: Required[Literal["brave_search"]] input_shields: List[str] output_shields: List[str] remote_execution: AgentConfigToolSearchToolDefinitionRemoteExecution ``` This is its definition. SearchEngineType...
WIll try to pickup some of these to solve inbuilt tools blocking network calls. - Added Faiss search non blocking call as well. - Made mongo sync client into async...
> > Sorry, pull again please. [988a9ca](https://github.com/meta-llama/llama-stack/commit/988a9cada3e7ea296611e20facdd2990f9512b2a) > > `llama stack build` works, but `llama stack run my-local-stack` fails. Looks like it's something related to Ollama. I'm currently using version...
Added the pre-commit changes @ashwinb
> Thanks for putting this out. Can you include tests? Also, we would like providers to be available through distributions. Are you able to run llama-stack-apps using pinecone as memory?...