Spaces:
Sleeping
Sleeping
Final working version
Browse files- requirements.txt +2 -3
- utils/gaia_api.py +1 -1
requirements.txt
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
-
# requirements.txt
|
2 |
llama-index==0.10.0
|
3 |
llama-index-llms-huggingface==0.2.0
|
4 |
transformers==4.34.0
|
5 |
-
torch==2.
|
6 |
gradio==3.41.0
|
7 |
requests==2.31.0
|
8 |
accelerate==0.23.0
|
9 |
sentence-transformers==2.2.2
|
10 |
python-dotenv==1.0.0
|
11 |
-
nltk==3.8.1
|
|
|
|
|
1 |
llama-index==0.10.0
|
2 |
llama-index-llms-huggingface==0.2.0
|
3 |
transformers==4.34.0
|
4 |
+
torch==2.1.2
|
5 |
gradio==3.41.0
|
6 |
requests==2.31.0
|
7 |
accelerate==0.23.0
|
8 |
sentence-transformers==2.2.2
|
9 |
python-dotenv==1.0.0
|
10 |
+
nltk==3.8.1
|
utils/gaia_api.py
CHANGED
@@ -8,7 +8,7 @@ class GaiaAPI:
|
|
8 |
"""Client for interacting with GAIA Benchmark API"""
|
9 |
|
10 |
# You need to replace this with the actual API endpoint from the course
|
11 |
-
BASE_URL = "https://agents-course-unit4-scoring.hf.space
|
12 |
|
13 |
@classmethod
|
14 |
def get_questions(cls) -> List[Dict]:
|
|
|
8 |
"""Client for interacting with GAIA Benchmark API"""
|
9 |
|
10 |
# You need to replace this with the actual API endpoint from the course
|
11 |
+
BASE_URL = "https://agents-course-unit4-scoring.hf.space" # Replace with actual endpoint
|
12 |
|
13 |
@classmethod
|
14 |
def get_questions(cls) -> List[Dict]:
|