Update ADK doc according to issue #744 - 9#765
Closed
adk-bot wants to merge 1 commit into
Closed
Conversation
| code_executor=gke_executor, | ||
| ) | ||
| ``` | ||
|
|
Collaborator
There was a problem hiding this comment.
BREAKING CHANGE: removal of content
| ```py | ||
| --8<-- "examples/python/snippets/tools/built-in-tools/vertexai_rag_engine.py" | ||
| ``` | ||
|
|
Collaborator
There was a problem hiding this comment.
BREAKING CHANGE: removal of content
| ```py | ||
| --8<-- "examples/python/snippets/tools/built-in-tools/vertexai_search.py" | ||
| ``` | ||
|
|
Collaborator
There was a problem hiding this comment.
BREAKING CHANGE: removal of content
| * **`list_table_ids`**: Fetches table ids present in a BigQuery dataset. | ||
| * **`get_table_info`**: Fetches metadata about a BigQuery table. | ||
| * **`execute_sql`**: Runs a SQL query in BigQuery and fetch the result. | ||
| * **`execute_sql`**: Runs a SQL query in BigQuery and fetch the result. This tool now includes a `dry_run` parameter. If set to `True`, the query will be validated by BigQuery but not actually executed, returning information about the query's validity and potential cost. |
| * **`execute_sql`**: Runs a SQL query in BigQuery and fetch the result. This tool now includes a `dry_run` parameter. If set to `True`, the query will be validated by BigQuery but not actually executed, returning information about the query's validity and potential cost. | ||
| * **`forecast`**: Runs a BigQuery AI time series forecast using the `AI.FORECAST` function. | ||
| * **`ask_data_insights`**: Answers questions about data in BigQuery tables using natural language. | ||
| * **`analyze_contribution`**: Runs a BigQuery ML contribution analysis using `ML.CREATE_MODEL` and `ML.GET_INSIGHTS` to identify the dimensions that contribute most significantly to a given metric. |
|
|
||
| search_agent = Agent( | ||
| model='gemini-2.0-flash', | ||
| model='gemini-1.5-flash', |
| ) | ||
| coding_agent = Agent( | ||
| model='gemini-2.0-flash', | ||
| model='gemini-1.5-flash', |
| root_agent = Agent( | ||
| name="RootAgent", | ||
| model="gemini-2.0-flash", | ||
| model="gemini-1.5-flash", |
| instruction=""" | ||
| You're a specialist in Code Execution | ||
| """, | ||
| instruction=""""\n You're a specialist in Code Execution\n """", |
Collaborator
There was a problem hiding this comment.
trival, uneeded update.
| .subAgents(searchAgent, codingAgent) // Not supported, as the sub agents use built in tools. | ||
| .build(); | ||
| ``` | ||
| ``` No newline at end of file |
Collaborator
There was a problem hiding this comment.
BREAKING CHANGE: removal of content
Collaborator
|
DECISION: REJECT
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR removes the limitation notice on using multiple built-in tools and adds a new section explaining how to use them together with a code example.