fixed typo
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ class BasicAgent:
|
|
16 |
"""A langgraph agent."""
|
17 |
def __init__(self):
|
18 |
print("BasicAgent initialized.")
|
19 |
-
self.graph =
|
20 |
|
21 |
def __call__(self, question: str) -> str:
|
22 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
|
|
16 |
"""A langgraph agent."""
|
17 |
def __init__(self):
|
18 |
print("BasicAgent initialized.")
|
19 |
+
self.graph = graph()
|
20 |
|
21 |
def __call__(self, question: str) -> str:
|
22 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|