Update agent.py
Browse files
agent.py
CHANGED
@@ -106,8 +106,7 @@ def answer_question(question: str, task_id: str = None) -> str:
|
|
106 |
non_comm.add(a)
|
107 |
non_comm.add(b)
|
108 |
result = ", ".join(sorted(non_comm))
|
109 |
-
file_context += f"
|
110 |
-
[Parsed Non-Commutative Set] {result}"
|
111 |
except Exception as e:
|
112 |
file_context += f"
|
113 |
[Table Parse Error] {e}"
|
|
|
106 |
non_comm.add(a)
|
107 |
non_comm.add(b)
|
108 |
result = ", ".join(sorted(non_comm))
|
109 |
+
file_context += f"[Parsed Non-Commutative Set] {result}"
|
|
|
110 |
except Exception as e:
|
111 |
file_context += f"
|
112 |
[Table Parse Error] {e}"
|