chore: Hide the ask_data_insights tool until the API is publicly available

PiperOrigin-RevId: 789806535
This commit is contained in:
Google Team Member
2025-08-01 10:17:13 -07:00
committed by Copybara-Service
parent 041f04e89c
commit bead607364
3 changed files with 1 additions and 14 deletions
@@ -34,7 +34,7 @@ async def test_bigquery_toolset_tools_default():
tools = await toolset.get_tools()
assert tools is not None
assert len(tools) == 6
assert len(tools) == 5
assert all([isinstance(tool, BigQueryTool) for tool in tools])
expected_tool_names = set([
@@ -43,7 +43,6 @@ async def test_bigquery_toolset_tools_default():
"list_table_ids",
"get_table_info",
"execute_sql",
"ask_data_insights",
])
actual_tool_names = set([tool.name for tool in tools])
assert actual_tool_names == expected_tool_names