Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -3,10 +3,10 @@ from openai import OpenAI
|
|
3 |
from smolagents import DuckDuckGoSearchTool
|
4 |
import re
|
5 |
import time
|
6 |
-
import datetime
|
7 |
|
8 |
-
current_date = datetime.datetime.now().strftime("%d:%m:%Y")
|
9 |
current_date = datetime.now().strftime("%d:%m:%Y")
|
|
|
10 |
|
11 |
web_search = DuckDuckGoSearchTool()
|
12 |
|
|
|
3 |
from smolagents import DuckDuckGoSearchTool
|
4 |
import re
|
5 |
import time
|
6 |
+
from datetime import datetime
|
7 |
|
|
|
8 |
current_date = datetime.now().strftime("%d:%m:%Y")
|
9 |
+
refresh_time = datetime.now().strftime("%H:%M")
|
10 |
|
11 |
web_search = DuckDuckGoSearchTool()
|
12 |
|