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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
小众软件
小众软件
I
InfoQ
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Martin Fowler
Martin Fowler
月光博客
月光博客
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
V
Visual Studio Blog
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Apple Machine Learning Research
Apple Machine Learning Research

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(ios): update group chats in realtime · openclaw/openc...
yetval · 2026-06-01 · via Recent Commits to openclaw:main

@@ -44,6 +44,8 @@ public final class OpenClawChatViewModel {

4444

didSet { self.pendingRunCount = self.pendingRuns.count }

4545

}

464647+

private var pendingLocalUserEchoMessageIDsByRunID: [String: UUID] = [:]

48+4749

@ObservationIgnored

4850

private nonisolated(unsafe) var pendingRunTimeoutTasks: [String: Task<Void, Never>] = [:]

4951

private let pendingRunTimeoutMs: UInt64 = 120_000

@@ -279,6 +281,7 @@ public final class OpenClawChatViewModel {

279281

self.messages = Self.reconcileMessageIDs(

280282

previous: self.messages,

281283

incoming: Self.decodeMessages(payload.messages ?? []))

284+

self.prunePendingLocalUserEchoMessageIDs()

282285

self.sessionId = payload.sessionId

283286

if !self.prefersExplicitThinkingLevel,

284287

let level = Self.normalizedThinkingLevel(payload.thinkingLevel)

@@ -393,6 +396,43 @@ public final class OpenClawChatViewModel {

393396

return [role, toolCallId, toolName, contentFingerprint].joined(separator: "|")

394397

}

395398399+

private func prunePendingLocalUserEchoMessageIDs() {

400+

guard !self.pendingLocalUserEchoMessageIDsByRunID.isEmpty else { return }

401+

let visibleMessageIDs = Set(self.messages.map(\.id))

402+

self.pendingLocalUserEchoMessageIDsByRunID = self.pendingLocalUserEchoMessageIDsByRunID.filter {

403+

self.pendingRuns.contains($0.key) && visibleMessageIDs.contains($0.value)

404+

}

405+

}

406+407+

private func adoptPendingLocalUserEcho(incoming: OpenClawChatMessage) -> Bool {

408+

guard let incomingKey = Self.userRefreshIdentityKey(for: incoming) else { return false }

409+

guard let matchIndex = self.messages.lastIndex(where: { existing in

410+

self.pendingLocalUserEchoMessageIDsByRunID.values.contains(existing.id)

411+

&& Self.userRefreshIdentityKey(for: existing) == incomingKey

412+

}) else {

413+

return false

414+

}

415+416+

let existing = self.messages[matchIndex]

417+

self.pendingLocalUserEchoMessageIDsByRunID = self.pendingLocalUserEchoMessageIDsByRunID.filter {

418+

$0.value != existing.id

419+

}

420+

var updated = self.messages

421+

updated[matchIndex] = OpenClawChatMessage(

422+

id: existing.id,

423+

role: incoming.role,

424+

content: incoming.content,

425+

timestamp: incoming.timestamp ?? existing.timestamp,

426+

toolCallId: incoming.toolCallId,

427+

toolName: incoming.toolName,

428+

usage: incoming.usage,

429+

stopReason: incoming.stopReason,

430+

errorMessage: incoming.errorMessage)

431+

self.messages = Self.dedupeMessages(updated)

432+

self.prunePendingLocalUserEchoMessageIDs()

433+

return true

434+

}

435+396436

private static func reconcileMessageIDs(

397437

previous: [OpenClawChatMessage],

398438

incoming: [OpenClawChatMessage]) -> [OpenClawChatMessage]

@@ -619,12 +659,14 @@ public final class OpenClawChatViewModel {

619659

arguments: nil))

620660

}

621661

let userMessageTimestamp = Date().timeIntervalSince1970 * 1000

662+

let userMessageID = UUID()

622663

self.messages.append(

623664

OpenClawChatMessage(

624-

id: UUID(),

665+

id: userMessageID,

625666

role: "user",

626667

content: userContent,

627668

timestamp: userMessageTimestamp))

669+

self.pendingLocalUserEchoMessageIDsByRunID[runId] = userMessageID

628670629671

// Clear input immediately for responsive UX (before network await)

630672

self.input = ""

@@ -645,8 +687,10 @@ public final class OpenClawChatViewModel {

645687

"chat.ui transport send accepted sessionKey=\(sessionKey) "

646688

+ "localRunId=\(runId) remoteRunId=\(response.runId)")

647689

if response.runId != runId {

690+

let pendingUserMessageID = self.pendingLocalUserEchoMessageIDsByRunID.removeValue(forKey: runId)

648691

self.clearPendingRun(runId)

649692

self.pendingRuns.insert(response.runId)

693+

self.pendingLocalUserEchoMessageIDsByRunID[response.runId] = pendingUserMessageID

650694

self.armPendingRunTimeout(runId: response.runId)

651695

}

652696

await self.refreshHistoryAfterRun()

@@ -664,6 +708,7 @@ public final class OpenClawChatViewModel {

664708

userMessageTimestamp: userMessageTimestamp)

665709

}

666710

} catch {

711+

self.pendingLocalUserEchoMessageIDsByRunID[runId] = nil

667712

self.clearPendingRun(runId)

668713

self.errorText = error.localizedDescription

669714

self.logDiagnostic(

@@ -747,6 +792,7 @@ public final class OpenClawChatViewModel {

747792

self.onSessionChanged?(next)

748793

self.modelSelectionID = Self.defaultModelSelectionID

749794

self.messages = []

795+

self.pendingLocalUserEchoMessageIDsByRunID.removeAll()

750796

self.sessionId = nil

751797

self.pendingToolCallsById = [:]

752798

self.streamingAssistantText = nil

@@ -1262,14 +1308,19 @@ public final class OpenClawChatViewModel {

12621308

}

1263130912641310

guard let message = payload.message else { return }

1265-

guard message.role.trimmingCharacters(in: .whitespacesAndNewlines).lowercased() == "user" else {

1266-

return

1267-

}

1268-

if self.pendingRunCount > 0 {

1311+1312+

let sanitized = Self.stripInboundMetadata(from: message)

1313+1314+

// The active client also receives the gateway's echo of the user turn it

1315+

// just sent. performSend already appended an optimistic row carrying a

1316+

// local client timestamp, while the echo carries a server timestamp, so

1317+

// the timestamp-keyed identity/dedupe paths below never collapse them.

1318+

// Adopt the server record only onto a still-visible row created by this

1319+

// client's pending send; same-content user turns from other clients must append.

1320+

if self.adoptPendingLocalUserEcho(incoming: sanitized) {

12691321

return

12701322

}

127113231272-

let sanitized = Self.stripInboundMetadata(from: message)

12731324

let reconciled = Self.reconcileMessageIDs(previous: self.messages, incoming: self.messages + [sanitized])

12741325

self.messages = Self.dedupeMessages(reconciled)

12751326

}

@@ -1565,6 +1616,7 @@ public final class OpenClawChatViewModel {

15651616

self.messages = Self.reconcileRunRefreshMessages(

15661617

previous: self.messages,

15671618

incoming: Self.decodeMessages(payload.messages ?? []))

1619+

self.prunePendingLocalUserEchoMessageIDs()

15681620

self.sessionId = payload.sessionId

15691621

if !self.prefersExplicitThinkingLevel,

15701622

let level = Self.normalizedThinkingLevel(payload.thinkingLevel)

@@ -1597,6 +1649,7 @@ public final class OpenClawChatViewModel {

15971649

private func clearPendingRun(_ runId: String) {

15981650

let wasPending = self.pendingRuns.contains(runId)

15991651

self.pendingRuns.remove(runId)

1652+

self.pendingLocalUserEchoMessageIDsByRunID[runId] = nil

16001653

self.pendingRunTimeoutTasks[runId]?.cancel()

16011654

self.pendingRunTimeoutTasks[runId] = nil

16021655

if wasPending {

@@ -1613,6 +1666,7 @@ public final class OpenClawChatViewModel {

16131666

}

16141667

self.pendingRunTimeoutTasks.removeAll()

16151668

self.pendingRuns.removeAll()

1669+

self.pendingLocalUserEchoMessageIDsByRunID.removeAll()

16161670

if let reason, !reason.isEmpty {

16171671

self.errorText = reason

16181672

for runId in runIds {