VertexAISearchTool is not accessible #3118
Replies: 3 comments
-
I have initialized Apparently, after creating a new search app in the AI Applications Console and linking it to the data store used by Is there a need to have the data store connected to any search app for it to be used in When the LLM response says that tool is not working, I do not see any errors/failures in the ADK debug logs. Is this expected behaviour? What can be checked further to find the issue? |
Beta Was this translation helpful? Give feedback.
-
Response from ADK Answering Agent (experimental, answer may be inaccurate) TLDR: Your analysis is correct. The Hello! Thanks for your detailed question. Your understanding is spot on. The problem you're encountering with Let's break down your agent hierarchy:
Because Your implementation of To resolve this, you would need to restructure your hierarchy so that the agent using |
Beta Was this translation helpful? Give feedback.
-
Thank you for clarification. Your explanation does not match my observation. As mentioned in my previous comment, the vertexAiSearchTool (with agent_6) is working intermittently after connecting the corresponding data store with a search app. In my initial attempts, the vertexAiSearchTool (with agent_6) was not working at all. After some debugging I have found out that the data store I had created with structured data was not indexed implicitly after creation. On connecting the data store to a search app, the documents are indexed. After that, the vertexAISearchTool (with agent_6) is working intermittently. To me it appears to be some issue around using a data store with structured data. PS. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have created the following agent hierarchy using ADK 1.13.0.
The code snippets of agents definition are as follows:
The
VertexAiSearchTool
under agent_6 is not working. The agent_6 replies that tool is not found or not accessible.I am familiar with the limitation that "Built-in tools cannot be used within a sub-agent". In the agent hierarchy I have created, is the VertexAiSearchTool under agent_6 not working due to this limitation? I have used AgentTool for agent_6 to mitigate the limitation. But is it the case that as agent_5 is a sub-agent, any configuration under it cannot use built-in tools?
Beta Was this translation helpful? Give feedback.
All reactions