phspoden commited on
Commit
8894d38
·
1 Parent(s): a49a7ec

Added agent tool "get_corporate_bullshit_text"

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -62,12 +62,13 @@ def get_current_time_in_timezone(timezone: str) -> str:
62
  final_answer = FinalAnswerTool()
63
 
64
  # 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:
65
- # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
 
66
 
67
  model = HfApiModel(
68
  max_tokens=2096,
69
  temperature=0.5,
70
- model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
71
  custom_role_conversions=None,
72
  )
73
 
 
62
  final_answer = FinalAnswerTool()
63
 
64
  # 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:
65
+ # model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
66
+ # default is: model_id='Qwen/Qwen2.5-Coder-32B-Instruct'
67
 
68
  model = HfApiModel(
69
  max_tokens=2096,
70
  temperature=0.5,
71
+ model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',# it is possible that this model may be overloaded
72
  custom_role_conversions=None,
73
  )
74