jarguello76 commited on
Commit
2103635
·
verified ·
1 Parent(s): 926c41e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(provider="groq", 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]}...")
 
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]}...")