Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -33,7 +33,16 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
| 33 |
except Exception as e:
|
| 34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
|
|
|
|
| 37 |
final_answer = FinalAnswerTool()
|
| 38 |
|
| 39 |
# 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:
|
|
|
|
| 33 |
except Exception as e:
|
| 34 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
| 35 |
|
| 36 |
+
@tool
|
| 37 |
+
def get_call_for_everything_else(task: str) -> str:
|
| 38 |
+
"""A tool that can be used for everything else.
|
| 39 |
+
Args:
|
| 40 |
+
task: task that needs to be done
|
| 41 |
+
"""
|
| 42 |
+
return f"The current task is : {task} and it is being done currently"
|
| 43 |
+
|
| 44 |
|
| 45 |
+
|
| 46 |
final_answer = FinalAnswerTool()
|
| 47 |
|
| 48 |
# 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:
|