fixex chat response text from objet to string

This commit is contained in:
2026-03-13 08:32:17 +01:00
parent 4893d5e2ba
commit f0f3b40a30
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -803,7 +803,7 @@ class ARIABridge:
"method": "chat.send", "method": "chat.send",
"params": { "params": {
"sessionKey": self._session_key, "sessionKey": self._session_key,
"message": text, "text": text,
"idempotencyKey": str(uuid.uuid4()), "idempotencyKey": str(uuid.uuid4()),
}, },
}) })
+1 -1
View File
@@ -377,7 +377,7 @@ function sendToGateway(text, isPipeline) {
method: "chat.send", method: "chat.send",
params: { params: {
sessionKey: "aria-diagnostic", sessionKey: "aria-diagnostic",
message: text, text: text,
idempotencyKey: crypto.randomUUID(), idempotencyKey: crypto.randomUUID(),
}, },
}; };