wanda222 commited on
Commit
6d607dd
·
verified ·
1 Parent(s): 9133642

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -12
app.py CHANGED
@@ -7,18 +7,7 @@ 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
- # Below is an example of a tool that does nothing. Amaze us with your creativity !
22
  @tool
23
  def calculate_time_lag(timezone1:str, timezone2:int)-> str: #it's import to specify the return type
24
  """
@@ -96,7 +85,8 @@ final_answer = FinalAnswerTool()
96
  model = HfApiModel(
97
  max_tokens=2096,
98
  temperature=0.5,
99
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
 
100
  custom_role_conversions=None,
101
  )
102
 
 
7
 
8
  from Gradio_UI import GradioUI
9
 
 
 
 
 
 
 
 
 
 
 
10
 
 
11
  @tool
12
  def calculate_time_lag(timezone1:str, timezone2:int)-> str: #it's import to specify the return type
13
  """
 
85
  model = HfApiModel(
86
  max_tokens=2096,
87
  temperature=0.5,
88
+ # model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
89
+ model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud' ,
90
  custom_role_conversions=None,
91
  )
92