-
Notifications
You must be signed in to change notification settings - Fork 982
/
Copy pathgemini_example.py
59 lines (48 loc) · 1.47 KB
/
gemini_example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import os
import asyncio
from dotenv import load_dotenv
from agents import (
Agent,
Runner,
GeminiProvider,
RunConfig,
function_tool
)
# Load environment variables from .env file
load_dotenv()
# Get the API key from environment variables
gemini_api_key = os.environ.get("GEMINI_API_KEY")
if not gemini_api_key:
raise ValueError("GEMINI_API_KEY environment variable is not set")
# Create a Gemini provider with your API key
gemini_provider = GeminiProvider(api_key=gemini_api_key)
# Define a simple function tool
@function_tool
def get_weather(city: str) -> str:
"""Get the current weather for a city."""
# In a real application, this would call a weather API
return f"The weather in {city} is sunny and 75°F."
# Define an agent using Gemini
agent = Agent(
name="Gemini Assistant",
instructions="You are a helpful assistant powered by Google Gemini.",
tools=[get_weather],
)
async def main():
# Create a run configuration that uses the Gemini provider
config = RunConfig(
model_provider=gemini_provider,
# Specify the model to use (default is "gemini-2.0-flash")
model="gemini-2.0-flash",
)
# Run the agent with the Gemini provider
result = await Runner.run(
agent,
"What's the weather like in Tokyo?",
run_config=config,
)
# Print the final output
print("\nFinal output:")
print(result.final_output)
if __name__ == "__main__":
asyncio.run(main())