LamiaYT commited on
Commit
2666c00
·
1 Parent(s): 580bcf5

Final working version

Browse files
Files changed (2) hide show
  1. requirements.txt +2 -3
  2. 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.0.1
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/docs" # Replace with actual endpoint
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]: