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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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(android): stop operator chat subscription · openclaw/...
obviyus · 2026-05-24 · via Recent Commits to openclaw:main

@@ -91,7 +91,6 @@ class TalkModeManager internal constructor(

9191

private val context: Context,

9292

private val scope: CoroutineScope,

9393

private val session: GatewaySession,

94-

private val supportsChatSubscribe: Boolean,

9594

private val isConnected: () -> Boolean,

9695

private val onBeforeSpeak: suspend () -> Unit = {},

9796

private val onAfterSpeak: suspend () -> Unit = {},

@@ -104,8 +103,7 @@ class TalkModeManager internal constructor(

104103

private const val realtimeSampleRateHz = 24_000

105104

private const val realtimeAudioFrameMs = 100

106105

private const val listenWatchdogMs = 12_000L

107-

private const val chatFinalWaitWithSubscribeMs = 45_000L

108-

private const val chatFinalWaitWithoutSubscribeMs = 6_000L

106+

private const val chatFinalWaitMs = 45_000L

109107

private const val maxCachedRunCompletions = 128

110108

private const val maxConversationEntries = 40

111109

private const val realtimePlaybackBufferMs = 240

@@ -158,7 +156,6 @@ class TalkModeManager internal constructor(

158156

private val completedRunsLock = Any()

159157

private val completedRunStates = LinkedHashMap<String, Boolean>()

160158

private val completedRunTexts = LinkedHashMap<String, String>()

161-

private var chatSubscribedSessionKey: String? = null

162159

private var configLoaded = false

163160

private var executionMode = TalkModeExecutionMode.Native

164161

private val startGeneration = AtomicLong(0L)

@@ -216,11 +213,6 @@ class TalkModeManager internal constructor(

216213

}

217214

}

218215219-

suspend fun ensureChatSubscribed() {

220-

reloadConfig()

221-

subscribeChatIfNeeded(session = session, sessionKey = mainSessionKey.ifBlank { "main" })

222-

}

223-224216

fun setMainSessionKey(sessionKey: String?) {

225217

val trimmed = sessionKey?.trim().orEmpty()

226218

if (trimmed.isEmpty()) return

@@ -372,7 +364,6 @@ class TalkModeManager internal constructor(

372364

scope.launch {

373365

try {

374366

reloadConfig()

375-

subscribeChatIfNeeded(session = session, sessionKey = mainSessionKey.ifBlank { "main" })

376367

val startedAt = System.currentTimeMillis().toDouble() / 1000.0

377368

val prompt = buildPrompt(command)

378369

val runId = sendChat(prompt, session)

@@ -590,7 +581,6 @@ class TalkModeManager internal constructor(

590581

_statusText.value = "Off"

591582

stopRealtimeRelay()

592583

stopSpeaking()

593-

chatSubscribedSessionKey = null

594584

pendingRunId = null

595585

pendingFinal?.cancel()

596586

pendingFinal = null

@@ -1590,7 +1580,6 @@ class TalkModeManager internal constructor(

1590158015911581

try {

15921582

val startedAt = System.currentTimeMillis().toDouble() / 1000.0

1593-

subscribeChatIfNeeded(session = session, sessionKey = mainSessionKey)

15941583

Log.d(tag, "chat.send start sessionKey=${mainSessionKey.ifBlank { "main" }} chars=${prompt.length}")

15951584

val runId = sendChat(prompt, session)

15961585

Log.d(tag, "chat.send ok runId=$runId")

@@ -1649,23 +1638,6 @@ class TalkModeManager internal constructor(

16491638

return payload

16501639

}

165116401652-

private suspend fun subscribeChatIfNeeded(

1653-

session: GatewaySession,

1654-

sessionKey: String,

1655-

) {

1656-

if (!supportsChatSubscribe) return

1657-

val key = sessionKey.trim()

1658-

if (key.isEmpty()) return

1659-

if (chatSubscribedSessionKey == key) return

1660-

val sent = session.sendNodeEvent("chat.subscribe", """{"sessionKey":"$key"}""")

1661-

if (sent) {

1662-

chatSubscribedSessionKey = key

1663-

Log.d(tag, "chat.subscribe ok sessionKey=$key")

1664-

} else {

1665-

Log.w(tag, "chat.subscribe failed sessionKey=$key")

1666-

}

1667-

}

1668-16691641

private fun buildPrompt(transcript: String): String {

16701642

val lines =

16711643

mutableListOf(

@@ -1719,10 +1691,9 @@ class TalkModeManager internal constructor(

1719169117201692

consumeRunCompletion(runId)?.let { return it }

172116931722-

val timeoutMs = if (supportsChatSubscribe) chatFinalWaitWithSubscribeMs else chatFinalWaitWithoutSubscribeMs

17231694

val result =

17241695

try {

1725-

withTimeout(timeoutMs) { deferred.await() }

1696+

withTimeout(chatFinalWaitMs) { deferred.await() }

17261697

} catch (_: TimeoutCancellationException) {

17271698

false

17281699

}