jarguello76 commited on
Commit
f14a5a7
·
verified ·
1 Parent(s): b42faa7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
10
 
11
  class BasicAgent:
12
 
13
- def __init__(self, csv_file_path: str = "embedding_database.csv"):
14
  print("BasicAgent initialized.")
15
  self.graph = build_graph(csv_file_path=csv_file_path)
16
 
 
10
 
11
  class BasicAgent:
12
 
13
+ def __init__(self, csv_file_path: str = "embeddings.csv"):
14
  print("BasicAgent initialized.")
15
  self.graph = build_graph(csv_file_path=csv_file_path)
16