Update app.py
Browse files
app.py
CHANGED
@@ -24,6 +24,7 @@ class BasicAgent:
|
|
24 |
self.graph = build_graph()
|
25 |
|
26 |
def __call__(self, question: str) -> str:
|
|
|
27 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
28 |
# Wrap the question in a HumanMessage from langchain_core
|
29 |
messages = [HumanMessage(content=question)]
|
|
|
24 |
self.graph = build_graph()
|
25 |
|
26 |
def __call__(self, question: str) -> str:
|
27 |
+
print(f"**--**")
|
28 |
print(f"Agent received question (first 50 chars): {question[:50]}...")
|
29 |
# Wrap the question in a HumanMessage from langchain_core
|
30 |
messages = [HumanMessage(content=question)]
|