Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"))
|
|
26 |
|
27 |
assistant, thread = None, None
|
28 |
|
29 |
-
def today_tool() ->
|
30 |
"""Returns today's date. Use this function for any questions related to knowing today's date.
|
31 |
There is no input. This function always returns today's date."""
|
32 |
return str(date.today())
|
|
|
26 |
|
27 |
assistant, thread = None, None
|
28 |
|
29 |
+
def today_tool() -> str:
|
30 |
"""Returns today's date. Use this function for any questions related to knowing today's date.
|
31 |
There is no input. This function always returns today's date."""
|
32 |
return str(date.today())
|