Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ class BasicAgent:
|
|
12 |
|
13 |
def __init__(self, csv_file_path: str = "embedding_database.csv"):
|
14 |
print("BasicAgent initialized.")
|
15 |
-
self.graph = build_graph(
|
16 |
|
17 |
def __call__(self, question: str) -> str:
|
18 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
|
|
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 |
|
17 |
def __call__(self, question: str) -> str:
|
18 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|