diff --git a/examples/basic/tools.py b/examples/basic/tools.py index 8936065a5..65d0c753a 100644 --- a/examples/basic/tools.py +++ b/examples/basic/tools.py @@ -13,6 +13,7 @@ class Weather(BaseModel): @function_tool def get_weather(city: str) -> Weather: + """Get the current weather information for a specified city.""" print("[debug] get_weather called") return Weather(city=city, temperature_range="14-20C", conditions="Sunny with wind.")