Anesti commited on
Commit
5b76500
·
verified ·
1 Parent(s): beb602b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +54 -35
app.py CHANGED
@@ -1,26 +1,35 @@
1
- from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel, load_tool, tool
2
  import datetime
 
3
  import pytz
4
- import random
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
7
- from Gradio_UI import GradioUI
8
 
9
-
10
- # Load external tool before function declarations
11
- image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
12
 
13
 
14
  @tool
15
- def tell_joke() -> str:
16
- """Returns a random joke."""
17
- jokes = [
18
- "Why don't skeletons fight each other? They don't have the guts.",
19
- "I told my wife she was drawing her eyebrows too high. She looked surprised.",
20
- "Why don’t scientists trust atoms? Because they make up everything!"
21
- ]
22
- return random.choice(jokes)
23
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  @tool
26
  def random_fact() -> str:
@@ -34,20 +43,28 @@ def random_fact() -> str:
34
 
35
 
36
  @tool
37
- def generate_image_with_prompt(prompt: str) -> str:
38
- """Generates an image based on the provided prompt."""
39
  try:
40
- image_url = image_generation_tool.run(prompt)
41
- return f"Here's your generated image: {image_url}"
 
 
 
 
42
  except Exception as e:
43
- return f"Error generating image: {str(e)}"
44
-
45
 
46
  @tool
47
  def get_current_time_in_timezone(timezone: str) -> str:
48
- """Fetches the current local time in a specified timezone."""
 
 
 
49
  try:
 
50
  tz = pytz.timezone(timezone)
 
51
  local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
52
  return f"The current local time in {timezone} is: {local_time}"
53
  except Exception as e:
@@ -55,29 +72,31 @@ def get_current_time_in_timezone(timezone: str) -> str:
55
 
56
 
57
  final_answer = FinalAnswerTool()
58
-
59
  model = HfApiModel(
60
- max_tokens=2096,
61
- temperature=0.5,
62
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct'
 
63
  )
64
 
 
 
 
 
65
  with open("prompts.yaml", 'r') as stream:
66
  prompt_templates = yaml.safe_load(stream)
67
-
68
  agent = CodeAgent(
69
  model=model,
70
- tools=[
71
- tell_joke,
72
- random_fact,
73
- generate_image_with_prompt,
74
- get_current_time_in_timezone,
75
- final_answer,
76
- DuckDuckGoSearchTool() # Keeping web search tool for additional functionality
77
- ],
78
  max_steps=6,
79
  verbosity_level=2,
 
 
 
 
80
  prompt_templates=prompt_templates
81
  )
82
 
83
- GradioUI(agent).launch()
 
 
1
+ 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
 
8
+ from Gradio_UI import GradioUI
9
+ import random
 
10
 
11
 
12
  @tool
13
+ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
14
+ #Keep this format for the description / args / args description but feel free to modify the tool
15
+ """A tool that does nothing yet
16
+ Args:
17
+ arg1: the first argument
18
+ arg2: the second argument
19
+ """
20
+ return "What magic will you build ?"
21
 
22
+ @tool
23
+ def generate_image_with_prompt(prompt: str) -> str:
24
+ """Generates an image based on the provided prompt using the image generation tool.
25
+ Args:
26
+ prompt: A textual description for the image to be generated.
27
+ """
28
+ try:
29
+ image_url = image_generation_tool.run(prompt)
30
+ return f"Here's your generated image: {image_url}"
31
+ except Exception as e:
32
+ return f"Error generating image: {str(e)}"
33
 
34
  @tool
35
  def random_fact() -> str:
 
43
 
44
 
45
  @tool
46
+ def tell_joke() -> str:
47
+ """Returns a random joke."""
48
  try:
49
+ jokes = [
50
+ "Why don't skeletons fight each other? They don't have the guts.",
51
+ "I told my wife she was drawing her eyebrows too high. She looked surprised.",
52
+ "Why don’t scientists trust atoms? Because they make up everything!"
53
+ ]
54
+ return random.choice(jokes)
55
  except Exception as e:
56
+ return f"Error fetching joke: {str(e)}"
 
57
 
58
  @tool
59
  def get_current_time_in_timezone(timezone: str) -> str:
60
+ """A tool that fetches the current local time in a specified timezone.
61
+ Args:
62
+ timezone: A string representing a valid timezone (e.g., 'America/New_York').
63
+ """
64
  try:
65
+ # Create timezone object
66
  tz = pytz.timezone(timezone)
67
+ # Get current time in that timezone
68
  local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
69
  return f"The current local time in {timezone} is: {local_time}"
70
  except Exception as e:
 
72
 
73
 
74
  final_answer = FinalAnswerTool()
 
75
  model = HfApiModel(
76
+ max_tokens=2096,
77
+ temperature=0.5,
78
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
79
+ custom_role_conversions=None,
80
  )
81
 
82
+
83
+ # Import tool from Hub
84
+ image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
85
+
86
  with open("prompts.yaml", 'r') as stream:
87
  prompt_templates = yaml.safe_load(stream)
88
+
89
  agent = CodeAgent(
90
  model=model,
91
+ tools=[tell_joke,random_fact,generate_image_with_prompt,final_answer,DuckDuckGoSearchTool()], ## add or remove tools here
 
 
 
 
 
 
 
92
  max_steps=6,
93
  verbosity_level=2,
94
+ grammar=None,
95
+ planning_interval=None,
96
+ name=None,
97
+ description=None,
98
  prompt_templates=prompt_templates
99
  )
100
 
101
+
102
+ GradioUI(agent).launch()