Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -102,14 +102,15 @@ final_answer = FinalAnswerTool()
|
|
| 102 |
web_search = DuckDuckGoSearchTool()
|
| 103 |
visit_webpage = VisitWebpageTool()
|
| 104 |
|
| 105 |
-
# If the agent does not answer, the model is overloaded,
|
| 106 |
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
|
| 107 |
|
| 108 |
model = HfApiModel(
|
| 109 |
max_tokens=2096,
|
| 110 |
temperature=0.5,
|
| 111 |
# model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
|
| 112 |
-
model_id="Qwen/Qwen3-Coder-Next",
|
|
|
|
| 113 |
custom_role_conversions=None,
|
| 114 |
)
|
| 115 |
|
|
|
|
| 102 |
web_search = DuckDuckGoSearchTool()
|
| 103 |
visit_webpage = VisitWebpageTool()
|
| 104 |
|
| 105 |
+
# 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:
|
| 106 |
# model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud'
|
| 107 |
|
| 108 |
model = HfApiModel(
|
| 109 |
max_tokens=2096,
|
| 110 |
temperature=0.5,
|
| 111 |
# model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
|
| 112 |
+
# model_id="Qwen/Qwen3-Coder-Next", # 80B in total and 3B activated, Super Efficient with Significant Performance
|
| 113 |
+
model_id = "meta-llama/Llama-3.3-70B-Instruct",
|
| 114 |
custom_role_conversions=None,
|
| 115 |
)
|
| 116 |
|