danieldeng commited on
Commit
b39f126
·
verified ·
1 Parent(s): 8c5c24b
Files changed (1) hide show
  1. app.py +18 -7
app.py CHANGED
@@ -4,19 +4,30 @@ 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
  @tool
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
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str:
@@ -55,7 +66,7 @@ with open("prompts.yaml", 'r') as stream:
55
 
56
  agent = CodeAgent(
57
  model=model,
58
- tools=[final_answer], ## add your tools here (don't remove final answer)
59
  max_steps=6,
60
  verbosity_level=1,
61
  grammar=None,
 
4
  import pytz
5
  import yaml
6
  from tools.final_answer import FinalAnswerTool
 
7
  from Gradio_UI import GradioUI
8
 
9
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
10
  @tool
11
+ def generate_qr_code(text:str)-> str: #it's import to specify the return type
12
  #Keep this format for the description / args / args description but feel free to modify the tool
13
+ """A tool that generate a QR code image based on the input string.
14
  Args:
15
+ text: The text or URL that needs to be encoded into the QR code.
 
16
  """
17
+ import qrcode
18
+ try:
19
+ qr = qrcode.QRCode(box_size=10, border=4)
20
+ qr.add_data(text)
21
+ qr.make(fit=True)
22
+
23
+ img = qr.make_image(fill_color="black", back_color="white")
24
+ file_path = "generated_qr.png"
25
+ img.save(file_path)
26
+
27
+ return f"The QR code has been successfully generated and saved to the following path: {file_path}"
28
+ except Exception as e:
29
+ return f"QR code generation failed: {str(e)}"
30
+ # return "What magic will you build ?"
31
 
32
  @tool
33
  def get_current_time_in_timezone(timezone: str) -> str:
 
66
 
67
  agent = CodeAgent(
68
  model=model,
69
+ tools=[generate_qr_code, final_answer], ## add your tools here (don't remove final answer)
70
  max_steps=6,
71
  verbosity_level=1,
72
  grammar=None,