fixed meesage format to openclaw

This commit is contained in:
duffyduck 2026-03-12 00:24:50 +01:00
parent 3baa67d8de
commit 9b101e9c9f
2 changed files with 2 additions and 2 deletions

View File

@ -731,7 +731,7 @@ class ARIABridge:
"method": "chat.send",
"params": {
"sessionKey": self._session_key,
"text": text,
"message": text,
"idempotencyKey": str(uuid.uuid4()),
},
})

View File

@ -249,7 +249,7 @@ function sendToGateway(text) {
method: "chat.send",
params: {
sessionKey: "aria-diagnostic",
text,
message: text,
idempotencyKey: crypto.randomUUID(),
},
};