From 6b1358615400bb6237a77035f207d67ba3a05937 Mon Sep 17 00:00:00 2001 From: Showdown76py Date: Mon, 19 May 2025 20:45:50 +0200 Subject: [PATCH] wip --- ai/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/processor.py b/ai/processor.py index 6616a34..6657fe4 100644 --- a/ai/processor.py +++ b/ai/processor.py @@ -135,7 +135,7 @@ class AIProcessor: output_text: str = response.choices[0].message.content # type: ignore outputs.append(output_text) self.session.messages.append( - aic.Message(role="assistant", content=output_text) + aic.Message(role="assistant", content="Executed: " + (str(*outputs))) ) return [*outputs]