Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-adk[toolbox]==1.27.2
toolbox-adk==0.7.0
google-genai==1.67.0
toolbox-adk==1.0.0
google-genai==1.67.0
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
langchain==1.2.12
langchain-google-vertexai==3.2.2
toolbox-langchain==0.6.0
toolbox-langchain==1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function main() {
model: 'gemini-2.5-flash',
description: 'Agent for hotel bookings and administration.',
instruction: prompt,
tools: tools,
tools: tools
});

const appName = rootAgent.name;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file makes the 'quickstart' directory a Python package.
# This file makes the quickstart directory a Python package.

# You can include any package-level initialization logic here if needed.
# For now, this file is empty.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ async def main():
if response.function_calls:
for function_call in response.function_calls:
fn_name = function_call.name
print('!!!!!!!!!!!CALLL!!!!!!!!!', function_call.name, function_call.args)

# The tools are sorted alphabetically
if fn_name == "search-hotels-by-name":
function_result = await toolbox_tools[3](**function_call.args)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
google-genai==1.67.0
toolbox-core==0.6.0
toolbox-core==1.0.0
pytest==9.0.2
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
langchain==1.2.12
langchain-google-vertexai==3.2.2
langgraph==1.1.2
toolbox-langchain==0.6.0
pytest==9.0.2
toolbox-langchain==1.0.0
pytest==9.0.2
Loading