Spaces:
Runtime error
Runtime error
Try alternative model
Browse files
app.py
CHANGED
|
@@ -34,11 +34,13 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
| 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='
|
| 42 |
custom_role_conversions=None,
|
| 43 |
)
|
| 44 |
|
|
|
|
| 34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
| 35 |
|
| 36 |
|
| 37 |
+
# model_id='Qwen/Qwen2.5-Coder-32B-Instruct',# it is possible that this model may be overloaded
|
| 38 |
+
|
| 39 |
final_answer = FinalAnswerTool()
|
| 40 |
model = HfApiModel(
|
| 41 |
max_tokens=2096,
|
| 42 |
temperature=0.5,
|
| 43 |
+
model_id='https://pflgm2locj2t89co.us-east-1.aws.endpoints.huggingface.cloud',
|
| 44 |
custom_role_conversions=None,
|
| 45 |
)
|
| 46 |
|