Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,8 @@ class BasicAgent:
|
|
21 |
"""A LangGraph agent"""
|
22 |
def __init__(self):
|
23 |
print("BasicAgent initialized.")
|
24 |
-
self.graph = build_graph("huggingface")
|
|
|
25 |
|
26 |
def __call__(self, question: str) -> str:
|
27 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
|
|
21 |
"""A LangGraph agent"""
|
22 |
def __init__(self):
|
23 |
print("BasicAgent initialized.")
|
24 |
+
#self.graph = build_graph("huggingface")
|
25 |
+
self.graph = build_graph("google")
|
26 |
|
27 |
def __call__(self, question: str) -> str:
|
28 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|