Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -628,7 +628,7 @@ def multi_agent_chat_advanced(query: str, file=None) -> str:
|
|
| 628 |
if any(k in lower_query for k in math_keywords):
|
| 629 |
return _calc_tool(query)
|
| 630 |
|
| 631 |
-
date_keywords = ["what date", "today", "what time", "what day", "current time", "現在幾點", "今天幾號", "禮拜幾"]
|
| 632 |
if any(k in lower_query for k in date_keywords):
|
| 633 |
return get_time_tool(query)
|
| 634 |
|
|
|
|
| 628 |
if any(k in lower_query for k in math_keywords):
|
| 629 |
return _calc_tool(query)
|
| 630 |
|
| 631 |
+
date_keywords = ["what date", "today", "what time", "what day", "current time", "date", "現在幾點", "今天幾號", "禮拜幾"]
|
| 632 |
if any(k in lower_query for k in date_keywords):
|
| 633 |
return get_time_tool(query)
|
| 634 |
|