CoolFace
Apppublic

Dagoss/First_agent_template

sourceHugging Faceupdated 2y 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 FinalAnswerTool7import random8from Gradio_UI import GradioUI9 10@tool11def get_random_number_between_range(start_range: int = None, end_range: int = None) -> int:12    """A tool that generates a random number given a range.13 14    Args:15        start_range: The start number of the range.16        end_range: The end number of the range.17    """18    # Ask the user for missing inputs19    if start_range is None:20        return "Please provide the start number of the range."21    if end_range is None:22        return "Please provide the end number of the range."23    24    # Ensure valid range25    if start_range >= end_range:26        return "Error: The start number must be smaller than the end number."27    28    return random.randint(start_range, end_range)29 30@tool31def get_current_time_in_timezone(timezone: str) -> str:32    """A tool that fetches the current local time in a specified timezone.33    Args:34        timezone: A string representing a valid timezone (e.g., 'America/New_York').35    """36    try:37        # Create timezone object38        tz = pytz.timezone(timezone)39        # Get current time in that timezone40        local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")41        return f"The current local time in {timezone} is: {local_time}"42    except Exception as e:43        return f"Error fetching time for timezone '{timezone}': {str(e)}"44 45 46final_answer = FinalAnswerTool()47 48# 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:49# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud' 50 51model = HfApiModel(52max_tokens=2096,53temperature=0.5,54#model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded55model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud', 56custom_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=[get_random_number_between_range,get_current_time_in_timezone,final_answer], ## 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()