JeCabrera commited on
Commit
1db2112
·
verified ·
1 Parent(s): 0a2b63c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -37
app.py CHANGED
@@ -1,57 +1,51 @@
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
-
8
  from Gradio_UI import GradioUI
9
 
10
- # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
-
12
- def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return type
13
- #Keep this format for the description / args / args description but feel free to modify the tool
14
- """A tool that does nothing yet
15
- Args:
16
- arg1: the first argument
17
- arg2: the second argument
18
- """
19
- return "What magic will you build ?"
20
-
21
-
22
  def get_current_time_in_timezone(timezone: str) -> str:
23
- """A tool that fetches the current local time in a specified timezone.
24
- Args:
25
- timezone: A string representing a valid timezone (e.g., 'America/New_York').
26
- """
27
  try:
28
- # Create timezone object
29
  tz = pytz.timezone(timezone)
30
- # Get current time in that timezone
31
- local_time = datetime.datetime.now(tz).strftime("%Y-%m-%d %H:%M:%S")
32
- return f"The current local time in {timezone} is: {local_time}"
33
  except Exception as e:
34
- return f"Error fetching time for timezone '{timezone}': {str(e)}"
35
-
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  final_answer = FinalAnswerTool()
38
  model = HfApiModel(
39
- max_tokens=2096,
40
- temperature=0.5,
41
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
42
- custom_role_conversions=None,
43
  )
44
-
45
-
46
- # Import tool from Hub
47
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
48
 
49
  with open("prompts.yaml", 'r') as stream:
50
  prompt_templates = yaml.safe_load(stream)
51
-
 
 
 
 
 
52
  agent = CodeAgent(
53
  model=model,
54
- tools=[final_answer], ## add your tools here (don't remove final answer)
55
  max_steps=6,
56
  verbosity_level=1,
57
  grammar=None,
@@ -61,5 +55,9 @@ agent = CodeAgent(
61
  prompt_templates=prompt_templates
62
  )
63
 
64
-
65
- GradioUI(agent).launch()
 
 
 
 
 
1
+ from smolagents import CodeAgent, HfApiModel, load_tool
2
  import datetime
 
3
  import pytz
4
+ yaml
5
  from tools.final_answer import FinalAnswerTool
 
6
  from Gradio_UI import GradioUI
7
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  def get_current_time_in_timezone(timezone: str) -> str:
9
+ """Obtiene la hora actual en una zona horaria específica."""
 
 
 
10
  try:
 
11
  tz = pytz.timezone(timezone)
12
+ local_time = datetime.datetime.now(tz).strftime("%H:%M")
13
+ return local_time
 
14
  except Exception as e:
15
+ return f"Error obteniendo la hora para '{timezone}': {str(e)}"
16
+
17
+ def generate_time_based_image(time: str) -> str:
18
+ """Genera una imagen representativa de la hora actual."""
19
+ hour = int(time.split(":")[0])
20
+ if 5 <= hour < 12:
21
+ prompt = "A beautiful sunrise over a city skyline. Morning vibes."
22
+ elif 12 <= hour < 18:
23
+ prompt = "A lively city during the afternoon with bright daylight."
24
+ else:
25
+ prompt = "A peaceful night with a starry sky over a quiet city."
26
+
27
+ image_url = image_generation_tool(prompt) # Genera la imagen con el tool
28
+ return image_url
29
 
30
  final_answer = FinalAnswerTool()
31
  model = HfApiModel(
32
+ max_tokens=2096,
33
+ temperature=0.5,
34
+ model_id='Qwen/Qwen2.5-Coder-32B-Instruct',
 
35
  )
 
 
 
36
  image_generation_tool = load_tool("agents-course/text-to-image", trust_remote_code=True)
37
 
38
  with open("prompts.yaml", 'r') as stream:
39
  prompt_templates = yaml.safe_load(stream)
40
+
41
+ def chatbot(timezone: str):
42
+ time = get_current_time_in_timezone(timezone)
43
+ image_url = generate_time_based_image(time)
44
+ return f"La hora actual en {timezone} es {time}", image_url
45
+
46
  agent = CodeAgent(
47
  model=model,
48
+ tools=[final_answer],
49
  max_steps=6,
50
  verbosity_level=1,
51
  grammar=None,
 
55
  prompt_templates=prompt_templates
56
  )
57
 
58
+ gr.Interface(
59
+ chatbot,
60
+ inputs=gr.Textbox(label="Introduce tu zona horaria (ej. America/New_York)"),
61
+ outputs=[gr.Textbox(label="Hora actual"), gr.Image(label="Imagen de la hora")],
62
+ title="Chatbot de Hora con Generación de Imágenes",
63
+ ).launch()