Update app.py
Browse files
app.py
CHANGED
|
@@ -82,7 +82,8 @@ class BasicAgent:
|
|
| 82 |
if question == "Given this table defining * on the set S = {a, b, c, d, e}\n\n|*|a|b|c|d|e|\n|---|---|---|---|---|---|\n|a|a|b|c|b|d|\n|b|b|c|a|e|c|\n|c|c|a|b|b|a|\n|d|b|e|b|e|d|\n|e|d|b|a|d|c|\n\nprovide the subset of S involved in any possible counter-examples that prove * is not commutative. Provide your answer as a comma separated list of the elements in the set in alphabetical order.":
|
| 83 |
agent_answer = self.agent.run(question)
|
| 84 |
else:
|
| 85 |
-
agent_answer = fixed_answer
|
|
|
|
| 86 |
|
| 87 |
|
| 88 |
# print(f"Agent Answer: {agent_answer}")
|
|
|
|
| 82 |
if question == "Given this table defining * on the set S = {a, b, c, d, e}\n\n|*|a|b|c|d|e|\n|---|---|---|---|---|---|\n|a|a|b|c|b|d|\n|b|b|c|a|e|c|\n|c|c|a|b|b|a|\n|d|b|e|b|e|d|\n|e|d|b|a|d|c|\n\nprovide the subset of S involved in any possible counter-examples that prove * is not commutative. Provide your answer as a comma separated list of the elements in the set in alphabetical order.":
|
| 83 |
agent_answer = self.agent.run(question)
|
| 84 |
else:
|
| 85 |
+
# agent_answer = fixed_answer
|
| 86 |
+
agent_answer = self.agent.run(question)
|
| 87 |
|
| 88 |
|
| 89 |
# print(f"Agent Answer: {agent_answer}")
|