Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -45,6 +45,7 @@ class SuperSmartAgent:
|
|
| 45 |
|
| 46 |
def fix_question(state):
|
| 47 |
if state["is_reversed"]:
|
|
|
|
| 48 |
state["question"] = state["question"][::-1]
|
| 49 |
return state
|
| 50 |
|
|
|
|
| 45 |
|
| 46 |
def fix_question(state):
|
| 47 |
if state["is_reversed"]:
|
| 48 |
+
print(f"Reversing question: {state['question']}")
|
| 49 |
state["question"] = state["question"][::-1]
|
| 50 |
return state
|
| 51 |
|