eventanilha/First_agent_template
0
1from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool2import datetime3import requests4import pytz5import yaml6from tools.final_answer import FinalAnswerTool7 8from Gradio_UI import GradioUI9 10@tool11def convert_temperature(value: float, mode: int) -> str:12 """Converts temperature between Celsius and Fahrenheit. 13 Args:14 value: Temperature value.15 mode: Conversion type (1 for C → F, 2 for F → C). 16 Returns:17 A string with the converted temperature value.18 """19 if mode == 1:20 result = (value * 9/5) + 3221 return f"{result:.2f}°F"22 elif mode == 2:23 result = (value - 32) * 5/924 return f"{result:.2f}°C"25 else:26 return "Error: mode must be 1 (C → F) or 2 (F → C)."27 28@tool29def get_current_time_in_timezone(timezone: str) -> str:30 """A tool that fetches the current local time in a specified timezone.31 Args:32 timezone: A string representing a valid timezone (e.g., 'America/New_York').33 """34 try:35 # Create timezone object36 tz = pytz.timezone(timezone)37 # Get current time in that timezone38 local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")39 return f"The current local time in {timezone} is: {local_time}"40 except Exception as e:41 return f"Error fetching time for timezone '{timezone}': {str(e)}"42 43 44final_answer = FinalAnswerTool()45 46# If the agent does not answer, the model is overloaded, please use another model or the following Hugging Face Endpoint that also contains qwen2.5 coder:47# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud' 48 49model = HfApiModel(50max_tokens=2096,51temperature=0.5,52model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded53custom_role_conversions=None,54)55 56search_tool = DuckDuckGoSearchTool()57 58# Import tool from Hub59image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)60 61with open("prompts.yaml", 'r') as stream:62 prompt_templates = yaml.safe_load(stream)63 64agent = CodeAgent(65 model=model,66 tools=[final_answer, search_tool, convert_temperature, get_current_time_in_timezone, image_generation_tool], ## add your tools here (don't remove final answer)67 max_steps=6,68 verbosity_level=1,69 grammar=None,70 planning_interval=None,71 name=None,72 description=None,73 prompt_templates=prompt_templates74)75 76 77GradioUI(agent).launch()