style(ios): satisfy settings chat formatting

This commit is contained in:
Vincent Koc
2026-07-24 06:48:35 +02:00
parent 342816a58d
commit a911bfb716
@@ -153,11 +153,12 @@ final class IOSSystemAgentChatModel {
nonisolated static func screenshotFixtureReply(params: [String: AnyCodable]) throws -> Data {
let hasMessage = params["message"]?.value is String
let reply = hasMessage
? String(localized: "Ill keep this conversation separate from ordinary agent chat.")
: String(localized: "I can check Gateway status, repair configuration, change models, or connect channels.")
var result: [String: Any] = [
"sessionId": "ios-screenshot-openclaw",
"reply": hasMessage
? String(localized: "Ill keep this conversation separate from ordinary agent chat.")
: String(localized: "I can check Gateway status, repair configuration, change models, or connect channels."),
"reply": reply,
"action": "none",
]
if !hasMessage {