Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -131,10 +131,10 @@ def pvsnp(problem):
|
|
| 131 |
with the tools leveraged.''')
|
| 132 |
final_answer = f"""
|
| 133 |
Agent's Response:
|
| 134 |
-
{textwrap.indent(textwrap.fill(
|
| 135 |
|
| 136 |
Critic's Response:
|
| 137 |
-
{textwrap.indent(textwrap.fill(
|
| 138 |
"""
|
| 139 |
return final_answer
|
| 140 |
|
|
|
|
| 131 |
with the tools leveraged.''')
|
| 132 |
final_answer = f"""
|
| 133 |
Agent's Response:
|
| 134 |
+
{textwrap.indent(textwrap.fill(answer, width=80), prefix=' ')}
|
| 135 |
|
| 136 |
Critic's Response:
|
| 137 |
+
{textwrap.indent(textwrap.fill(critic_answer, width=80), prefix=' ')}
|
| 138 |
"""
|
| 139 |
return final_answer
|
| 140 |
|