Update app.py
Browse files
app.py
CHANGED
|
@@ -36,7 +36,7 @@ class BasicAgent:
|
|
| 36 |
input_state = {"question": question}
|
| 37 |
# Run the graph
|
| 38 |
answer = self.graph.invoke(input_state)
|
| 39 |
-
print(f"Agent returning fixed answer: {answer}")
|
| 40 |
return answer
|
| 41 |
|
| 42 |
class State(TypedDict):
|
|
|
|
| 36 |
input_state = {"question": question}
|
| 37 |
# Run the graph
|
| 38 |
answer = self.graph.invoke(input_state)
|
| 39 |
+
print(f"Agent returning fixed answer: {answer.content}")
|
| 40 |
return answer
|
| 41 |
|
| 42 |
class State(TypedDict):
|