Spaces:
Sleeping
Sleeping
Reorder imports in app.py for better readability
Browse files
__pycache__/Gradio_UI.cpython-310.pyc
ADDED
|
Binary file (6.81 kB). View file
|
|
|
app.py
CHANGED
|
@@ -4,14 +4,13 @@ import requests
|
|
| 4 |
import pytz
|
| 5 |
import yaml
|
| 6 |
from tools.final_answer import FinalAnswerTool
|
| 7 |
-
|
| 8 |
-
from Gradio_UI import GradioUI
|
| 9 |
-
|
| 10 |
from bs4 import BeautifulSoup
|
| 11 |
import time
|
| 12 |
import re
|
| 13 |
from urllib.parse import quote
|
| 14 |
|
|
|
|
|
|
|
| 15 |
def search_internet_archive(query):
|
| 16 |
"""
|
| 17 |
Search the Internet Archive for pages containing the exact query phrase.
|
|
|
|
| 4 |
import pytz
|
| 5 |
import yaml
|
| 6 |
from tools.final_answer import FinalAnswerTool
|
|
|
|
|
|
|
|
|
|
| 7 |
from bs4 import BeautifulSoup
|
| 8 |
import time
|
| 9 |
import re
|
| 10 |
from urllib.parse import quote
|
| 11 |
|
| 12 |
+
from Gradio_UI import GradioUI
|
| 13 |
+
|
| 14 |
def search_internet_archive(query):
|
| 15 |
"""
|
| 16 |
Search the Internet Archive for pages containing the exact query phrase.
|
tools/__pycache__/final_answer.cpython-310.pyc
ADDED
|
Binary file (898 Bytes). View file
|
|
|