Update app.py
Browse files
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 = "
|
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 |
|