WingNeville commited on
Commit
beb78e7
·
verified ·
1 Parent(s): dee563b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +62 -52
app.py CHANGED
@@ -1,63 +1,73 @@
 
1
  import datetime
 
2
  import pytz
 
 
 
3
  import gradio as gr
 
 
 
 
4
 
5
- # Define tools
6
- def combine_string_and_number(text: str, number: int) -> str:
7
- """Combines a string and a number into a message."""
8
- return f"You entered '{text}' and the number {number}."
 
 
 
 
 
 
9
 
10
- def get_time_in_timezone(timezone: str) -> str:
11
- """Gets the current time in the specified timezone."""
 
 
 
 
12
  try:
 
13
  tz = pytz.timezone(timezone)
 
14
  local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
15
- return f"Current time in {timezone}: {local_time}"
16
  except Exception as e:
17
- return f"Error: Invalid timezone '{timezone}'"
18
-
19
- # Simple agent class
20
- class MyFirstAgent:
21
- def __init__(self):
22
- self.tools = {
23
- "combine": combine_string_and_number,
24
- "time": get_time_in_timezone
25
- }
26
-
27
- def run(self, query: str) -> str:
28
- query = query.lower().strip()
29
- if query.startswith("combine"):
30
- try:
31
- parts = query.split("combine")[-1].strip().split("and")
32
- text = parts[0].strip()
33
- number = int(parts[1].strip())
34
- return self.tools["combine"](text, number)
35
- except:
36
- return "Error: Please use format 'combine <text> and <number>'"
37
- elif query.startswith("time in"):
38
- try:
39
- timezone = query.split("time in")[-1].strip()
40
- return self.tools["time"](timezone)
41
- except:
42
- return "Error: Please use format 'time in <timezone>'"
43
- else:
44
- return "Sorry, I only understand 'combine <text> and <number>' or 'time in <timezone>'"
45
-
46
- # Create agent
47
- agent = MyFirstAgent()
48
-
49
- # Define Gradio interface function
50
- def run_agent(query: str) -> str:
51
- return agent.run(query)
52
-
53
- # Create and launch Gradio interface
54
- interface = gr.Interface(
55
- fn=run_agent,
56
- inputs=gr.Textbox(label="Enter your command", placeholder="e.g., combine hello and 42 or time in America/New_York"),
57
- outputs=gr.Textbox(label="Agent Response"),
58
- title="My First Agent",
59
- description="Try commands like 'combine hello and 42' or 'time in America/New_York'"
60
  )
61
 
62
- if __name__ == "__main__":
63
- interface.launch(server_port=7860, share=False, quiet=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from smolagents import CodeAgent,DuckDuckGoSearchTool, HfApiModel,load_tool,tool
2
  import datetime
3
+ import requests
4
  import pytz
5
+ import yaml
6
+ from tools.final_answer import FinalAnswerTool
7
+ from openai import OpenAI
8
  import gradio as gr
9
+ import os
10
+ api_key = os.getenv(“OPENAI_API_KEY”)
11
+ client = OpenAI(api_key=api_key)
12
+ from Gradio_UI import GradioUI
13
 
14
+ # Below is an example of a tool that does nothing. Amaze us with your creativity !
15
+ @tool
16
+ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
17
+ #Keep this format for the description / args / args description but feel free to modify the tool
18
+ """A tool that does nothing yet
19
+ Args:
20
+ arg1: the first argument
21
+ arg2: the second argument
22
+ """
23
+ return "What magic will you build ?"
24
 
25
+ @tool
26
+ def get_current_time_in_timezone(timezone: str) -> str:
27
+ """A tool that fetches the current local time in a specified timezone.
28
+ Args:
29
+ timezone: A string representing a valid timezone (e.g., 'America/New_York').
30
+ """
31
  try:
32
+ # Create timezone object
33
  tz = pytz.timezone(timezone)
34
+ # Get current time in that timezone
35
  local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
36
+ return f"The current local time in {timezone} is: {local_time}"
37
  except Exception as e:
38
+ return f"Error fetching time for timezone '{timezone}': {str(e)}"
39
+
40
+
41
+ final_answer = FinalAnswerTool()
42
+
43
+ # 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:
44
+ # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
45
+
46
+ model = HfApiModel(
47
+ max_tokens=2096,
48
+ temperature=0.5,
49
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
50
+ custom_role_conversions=None,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  )
52
 
53
+
54
+ # Import tool from Hub
55
+ image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
56
+
57
+ with open("prompts.yaml", 'r') as stream:
58
+ prompt_templates = yaml.safe_load(stream)
59
+
60
+ agent = CodeAgent(
61
+ model=model,
62
+ tools=[final_answer], ## add your tools here (don't remove final answer)
63
+ max_steps=6,
64
+ verbosity_level=1,
65
+ grammar=None,
66
+ planning_interval=None,
67
+ name=None,
68
+ description=None,
69
+ prompt_templates=prompt_templates
70
+ )
71
+
72
+
73
+ GradioUI(agent).launch()