Hubertwue/First_agent4
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 my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type12 #Keep this format for the description / args / args description but feel free to modify the tool13 """A tool that does nothing yet 14 Args:15 arg1: the first argument16 arg2: the second argument17 """18 return "What magic will you build ?"19 20@tool21def get_current_time_in_timezone(timezone: str) -> str:22 """A tool that fetches the current local time in a specified timezone.23 Args:24 timezone: A string representing a valid timezone (e.g., 'America/New_York').25 """26 try:27 # Create timezone object28 tz = pytz.timezone(timezone)29 # Get current time in that timezone30 local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")31 return f"The current local time in {timezone} is: {local_time}"32 except Exception as e:33 return f"Error fetching time for timezone '{timezone}': {str(e)}"34 35 36final_answer = FinalAnswerTool()37model = HfApiModel(38max_tokens=2096,39temperature=0.5,40model_id='Qwen/Qwen2.5-Coder-32B-Instruct',41custom_role_conversions=None,42)43 44 45# Import tool from Hub46image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)47 48with open("prompts.yaml", 'r') as stream:49 prompt_templates = yaml.safe_load(stream)50 51agent = CodeAgent(52 model=model,53 tools=[image_generation_tool,get_current_time_in_timezone,final_answer,DuckDuckGoSearchTool()], ## add or remove tools here54 max_steps=6,55 verbosity_level=1,56 grammar=None,57 planning_interval=None,58 name=None,59 description=None,60 prompt_templates=prompt_templates61)62 63 64GradioUI(agent).launch()