We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 984931f commit 1e7c686Copy full SHA for 1e7c686
1 file changed
genai/tools/tools_google_maps_with_txt.py
@@ -32,7 +32,7 @@ def generate_content() -> str:
32
33
response = client.models.generate_content(
34
model="gemini-2.5-flash-preview-05-20",
35
- contents="Recommend a good restaurant in San Francisco",
+ contents="Recommend a good restaurant in San Francisco.",
36
config=GenerateContentConfig(
37
tools=[
38
# Use Google Maps Tool
@@ -51,7 +51,7 @@ def generate_content() -> str:
51
52
print(response.text)
53
# Example response:
54
- # 'The next total solar eclipse in the United States will occur on ...'
+ # 'San Francisco boasts a vibrant culinary scene...'
55
# [END googlegenaisdk_tools_google_maps_with_txt]
56
return response.text
57
0 commit comments