Spaces:
Sleeping
Sleeping
| from smolagents import CodeAgent, HfApiModel, load_tool, tool | |
| from tools.final_answer import FinalAnswerTool | |
| from duckduckgo_search import DDGS | |
| import datetime | |
| import pytz | |
| import yaml | |
| from Gradio_UI import GradioUI | |
| def get_current_weather(city: str) -> str: | |
| """ | |
| Get current weather for a city using Open-Meteo API. | |
| Args: | |
| city (str): The city name. | |
| Returns: | |
| str: Current temperature and wind speed. | |
| """ | |
| import requests | |
| # Get coordinates | |
| geo_url = f"https://geocoding-api.open-meteo.com/v1/search?name={city}" | |
| geo_response = requests.get(geo_url).json() | |
| if "results" not in geo_response: | |
| return "City not found." | |
| lat = geo_response["results"][0]["latitude"] | |
| lon = geo_response["results"][0]["longitude"] | |
| # Get weather | |
| weather_url = ( | |
| f"https://api.open-meteo.com/v1/forecast?" | |
| f"latitude={lat}&longitude={lon}¤t_weather=true" | |
| ) | |
| weather_data = requests.get(weather_url).json() | |
| current = weather_data.get("current_weather", {}) | |
| return ( | |
| f"Current weather in {city}: " | |
| f"{current.get('temperature')}°C, " | |
| f"Wind {current.get('windspeed')} km/h" | |
| ) | |
| def get_current_time_in_timezone(timezone: str) -> str: | |
| """ | |
| Get the current local time in a specified timezone. | |
| Args: | |
| timezone (str): A valid timezone string such as 'America/New_York'. | |
| Returns: | |
| str: The current local time formatted as YYYY-MM-DD HH:MM:SS. | |
| """ | |
| tz = pytz.timezone(timezone) | |
| local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S") | |
| return f"The current local time in {timezone} is {local_time}" | |
| final_answer = FinalAnswerTool() | |
| model = HfApiModel( | |
| max_tokens=2096, | |
| temperature=0.5, | |
| model_id="Qwen/Qwen2.5-Coder-32B-Instruct", | |
| ) | |
| with open("prompts.yaml", "r") as stream: | |
| prompt_templates = yaml.safe_load(stream) | |
| agent = CodeAgent( | |
| model=model, | |
| tools=[get_current_weather, get_current_time_in_timezone, final_answer], | |
| max_steps=6, | |
| verbosity_level=1, | |
| prompt_templates=prompt_templates | |
| ) | |
| GradioUI(agent).launch() |