-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsmolagent_gemini.py
28 lines (20 loc) · 959 Bytes
/
smolagent_gemini.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
from smolagents import CodeAgent, ToolCallingAgent, DuckDuckGoSearchTool, LiteLLMModel, PythonInterpreterTool, tool, TOOL_CALLING_SYSTEM_PROMPT
from typing import Optional
import os
from dotenv import load_dotenv
load_dotenv()
model = LiteLLMModel(model_id="gemini/gemini-2.0-flash-exp",
api_key=os.getenv("GEMINI_API_KEY"))
@tool
def get_weather(location: str, celsius: Optional[bool] = False) -> str:
"""
Get weather in the next days at given location.
Args:
location: the location
celsius: whether to use Celsius for temperature
"""
return f"The weather in {location} is sunny with temperatures around 7°C."
agent = ToolCallingAgent(tools=[get_weather], model=model, system_prompt=TOOL_CALLING_SYSTEM_PROMPT)
# agent = CodeAgent(tools=[DuckDuckGoSearchTool()], model=model, additional_authorized_imports=["requests", "bs4"])
answer = agent.run("What is the weather in Tokyo?")
print(answer)