惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
A
About on SuperTechFans
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
月光博客
月光博客
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Jina AI
Jina AI
有赞技术团队
有赞技术团队
博客园_首页

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix: handle terminal chat send acknowledgements (#91049) ...
nxmxbbd · 2026-06-23 · via Recent Commits to openclaw:main
11

package ai.openclaw.app.chat

2233

import ai.openclaw.app.gateway.GatewaySession

4+

import ai.openclaw.app.gateway.parseChatSendAck

45

import kotlinx.coroutines.CoroutineScope

56

import kotlinx.coroutines.Job

67

import kotlinx.coroutines.delay

@@ -19,11 +20,21 @@ import java.util.UUID

1920

import java.util.concurrent.ConcurrentHashMap

2021

import java.util.concurrent.atomic.AtomicLong

212222-

class ChatController(

23+

class ChatController internal constructor(

2324

private val scope: CoroutineScope,

24-

private val session: GatewaySession,

2525

private val json: Json,

26+

private val requestGateway: suspend (method: String, paramsJson: String?) -> String,

2627

) {

28+

constructor(

29+

scope: CoroutineScope,

30+

session: GatewaySession,

31+

json: Json,

32+

) : this(

33+

scope = scope,

34+

json = json,

35+

requestGateway = { method, paramsJson -> session.request(method, paramsJson) },

36+

)

37+2738

private var appliedMainSessionKey = "main"

2839

private val _sessionKey = MutableStateFlow("main")

2940

val sessionKey: StateFlow<String> = _sessionKey.asStateFlow()

@@ -267,8 +278,9 @@ class ChatController(

267278

)

268279

}

269280

}

270-

val res = session.request("chat.send", params.toString())

271-

val actualRunId = parseRunId(res) ?: runId

281+

val res = requestGateway("chat.send", params.toString())

282+

val ack = parseChatSendAck(json, res)

283+

val actualRunId = ack.runId ?: runId

272284

if (actualRunId != runId) {

273285

// Gateway may return a canonical run id; move all pending bookkeeping to that id.

274286

optimisticMessagesByRunId[actualRunId] = optimisticMessagesByRunId.remove(runId) ?: optimisticMessage

@@ -279,7 +291,24 @@ class ChatController(

279291

_pendingRunCount.value = pendingRuns.size

280292

}

281293

}

282-

true

294+

if (ack.isTerminal) {

295+

clearPendingRun(actualRunId)

296+

removeOptimisticMessage(actualRunId)

297+

pendingToolCallsById.clear()

298+

publishPendingToolCalls()

299+

_streamingAssistantText.value = null

300+

if (ack.isTerminalSuccess) {

301+

refreshCurrentHistoryBestEffort()

302+

true

303+

} else {

304+

// Terminal timeout/error means the gateway did not accept a runnable turn.

305+

// Surface failed acceptance instead of letting a cleared composer look successful.

306+

_errorText.value = "Chat failed before the run started; try again."

307+

false

308+

}

309+

} else {

310+

true

311+

}

283312

} catch (err: Throwable) {

284313

clearPendingRun(runId)

285314

removeOptimisticMessage(runId)

@@ -303,7 +332,7 @@ class ChatController(

303332

put("sessionKey", JsonPrimitive(_sessionKey.value))

304333

put("runId", JsonPrimitive(runId))

305334

}

306-

session.request("chat.abort", params.toString())

335+

requestGateway("chat.abort", params.toString())

307336

} catch (_: Throwable) {

308337

// best-effort

309338

}

@@ -356,7 +385,7 @@ class ChatController(

356385

) {

357386

try {

358387

val historyJson =

359-

session.request(

388+

requestGateway(

360389

"chat.history",

361390

buildJsonObject { put("sessionKey", JsonPrimitive(sessionKey)) }.toString(),

362391

)

@@ -391,7 +420,7 @@ class ChatController(

391420

put("includeUnknown", JsonPrimitive(false))

392421

if (limit != null && limit > 0) put("limit", JsonPrimitive(limit))

393422

}

394-

val res = session.request("sessions.list", params.toString())

423+

val res = requestGateway("sessions.list", params.toString())

395424

_sessions.value = parseSessions(res)

396425

} catch (_: Throwable) {

397426

// best-effort

@@ -408,7 +437,7 @@ class ChatController(

408437

if (!force && last != null && now - last < 10_000) return

409438

lastHealthPollAtMs = now

410439

try {

411-

session.request("health", null)

440+

requestGateway("health", null)

412441

_healthOk.value = true

413442

} catch (_: Throwable) {

414443

_healthOk.value = false

@@ -451,7 +480,7 @@ class ChatController(

451480

val currentSessionKey = _sessionKey.value

452481

val currentGeneration = historyLoadGeneration.get()

453482

val historyJson =

454-

session.request(

483+

requestGateway(

455484

"chat.history",

456485

buildJsonObject { put("sessionKey", JsonPrimitive(currentSessionKey)) }.toString(),

457486

)

@@ -632,6 +661,45 @@ class ChatController(

632661

optimisticMessagesByRunId.entries.removeAll { entry -> entry.value !in retained }

633662

}

634663664+

private fun refreshCurrentHistoryBestEffort() {

665+

scope.launch {

666+

try {

667+

val currentSessionKey = _sessionKey.value

668+

val currentGeneration = historyLoadGeneration.get()

669+

val historyJson =

670+

requestGateway(

671+

"chat.history",

672+

buildJsonObject { put("sessionKey", JsonPrimitive(currentSessionKey)) }.toString(),

673+

)

674+

if (

675+

!isCurrentHistoryLoad(

676+

currentSessionKey,

677+

_sessionKey.value,

678+

currentGeneration,

679+

historyLoadGeneration.get(),

680+

)

681+

) {

682+

return@launch

683+

}

684+

val history =

685+

parseHistory(

686+

historyJson,

687+

sessionKey = currentSessionKey,

688+

previousMessages = _messages.value,

689+

)

690+

prunePersistedOptimisticMessages(history.messages)

691+

_messages.value = mergeOptimisticMessages(incoming = history.messages, optimistic = optimisticMessagesByRunId.values)

692+

_sessionId.value = history.sessionId

693+

history.thinkingLevel

694+

?.trim()

695+

?.takeIf { it.isNotEmpty() }

696+

?.let { _thinkingLevel.value = it }

697+

} catch (_: Throwable) {

698+

// best-effort

699+

}

700+

}

701+

}

702+635703

private fun parseHistory(

636704

historyJson: String,

637705

sessionKey: String,

@@ -728,17 +796,6 @@ class ChatController(

728796

_sessions.value = _sessions.value.filterNot { it.key == key }

729797

}

730798731-

private fun parseRunId(resJson: String): String? =

732-

try {

733-

json

734-

.parseToJsonElement(resJson)

735-

.asObjectOrNull()

736-

?.get("runId")

737-

.asStringOrNull()

738-

} catch (_: Throwable) {

739-

null

740-

}

741-742799

private fun normalizeThinking(raw: String): String =

743800

when (raw.trim().lowercase()) {

744801

"low" -> "low"