CoolFace
Apppublic

Thatguyjk723/First_agent_template

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
app.py79 linesDownload Raw Back to root
1from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool2import datetime3import requests4import pytz5import yaml6from tools.final_answer import FinalAnswerTool7 8from Gradio_UI import GradioUI9 10# Below is an example of a tool that does nothing. Amaze us with your creativity !11@tool12def get_name_age(name:str)-> str: #it's import to specify the return type13    #Keep this format for the description / args / args description but feel free to modify the tool14    """A tool that predicts the age of a person based on their name 15    Args:16        name: name of the person to guess their age17    """18    try:19        # make a call to the agify api with the given name20        payload = {'name': name}21 22        res = requests.get('https://api.agify.io/', params=payload)23        data = res.json()24        age = data["age"]25    26    except Exception as e:27        return f"Error fetching age for {name} in data {e}"28    29    return f"your name is {name} and you are {age} years old."30 31@tool32def get_current_time_in_timezone(timezone: str) -> str:33    """A tool that fetches the current local time in a specified timezone.34    Args:35        timezone: A string representing a valid timezone (e.g., 'America/New_York').36    """37    try:38        # Create timezone object39        tz = pytz.timezone(timezone)40        # Get current time in that timezone41        local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")42        return f"The current local time in {timezone} is: {local_time}"43    except Exception as e:44        return f"Error fetching time for timezone '{timezone}': {str(e)}"45 46 47final_answer = FinalAnswerTool()48 49# 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:50# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud' 51 52model = HfApiModel(53max_tokens=2096,54temperature=0.5,55model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded56custom_role_conversions=None,57)58 59 60# Import tool from Hub61image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)62 63with open("prompts.yaml", 'r') as stream:64    prompt_templates = yaml.safe_load(stream)65    66agent = CodeAgent(67    model=model,68    tools=[final_answer, get_name_age], ## add your tools here (don't remove final answer)69    max_steps=6,70    verbosity_level=1,71    grammar=None,72    planning_interval=None,73    name=None,74    description=None,75    prompt_templates=prompt_templates76)77 78 79GradioUI(agent).launch()