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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
B
Blog RSS Feed
I
InfoQ
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
H
Help Net Security
L
LangChain Blog
M
MIT News - Artificial intelligence
Y
Y Combinator Blog
aimingoo的专栏
aimingoo的专栏

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(telegram): mirror outbound replies to session transcr...
adagues · 2026-05-09 · via Recent Commits to openclaw:main

@@ -1,4 +1,9 @@

1+

import path from "node:path";

12

import type { Bot } from "grammy";

3+

import {

4+

appendSessionTranscriptMessage,

5+

emitSessionTranscriptUpdate,

6+

} from "openclaw/plugin-sdk/agent-harness-runtime";

27

import {

38

DEFAULT_TIMING,

49

logAckFailure,

@@ -60,6 +65,7 @@ import {

6065

resolveAutoTopicLabelConfig,

6166

resolveChunkMode,

6267

resolveMarkdownTableMode,

68+

resolveAndPersistSessionFile,

6369

resolveSessionStoreEntry,

6470

} from "./bot-message-dispatch.runtime.js";

6571

import type { TelegramBotOptions } from "./bot.types.js";

@@ -133,6 +139,8 @@ type DispatchTelegramMessageParams = {

133139134140

type TelegramReasoningLevel = "off" | "on" | "stream";

135141142+

type TelegramTranscriptMirrorPayload = { text?: string; mediaUrls?: string[] };

143+136144

type TelegramReplyFenceState = {

137145

generation: number;

138146

activeDispatches: number;

@@ -235,6 +243,94 @@ function resolveTelegramReasoningLevel(params: {

235243

return configDefault;

236244

}

237245246+

function resolveTelegramMirroredTranscriptText(

247+

payload: TelegramTranscriptMirrorPayload,

248+

): string | null {

249+

const mediaUrls = payload.mediaUrls?.filter((url) => url.trim()) ?? [];

250+

if (mediaUrls.length > 0) {

251+

return mediaUrls

252+

.map((url) => {

253+

const pathname = url.split("#")[0]?.split("?")[0] ?? url;

254+

const base = path.basename(pathname);

255+

return base && base !== "." && base !== "/" ? base : "media";

256+

})

257+

.join(", ");

258+

}

259+260+

const text = payload.text?.trim();

261+

return text ? text : null;

262+

}

263+264+

async function mirrorTelegramAssistantReplyToTranscript(params: {

265+

cfg: OpenClawConfig;

266+

route: TelegramMessageContext["route"];

267+

sessionKey: string;

268+

telegramDeps: TelegramBotDeps;

269+

payload: TelegramTranscriptMirrorPayload;

270+

}) {

271+

const text = resolveTelegramMirroredTranscriptText(params.payload);

272+

if (!text) {

273+

return;

274+

}

275+

const storePath = params.telegramDeps.resolveStorePath(params.cfg.session?.store, {

276+

agentId: params.route.agentId,

277+

});

278+

const store = (params.telegramDeps.loadSessionStore ?? loadSessionStore)(storePath, {

279+

skipCache: true,

280+

});

281+

const sessionEntry = resolveSessionStoreEntry({

282+

store,

283+

sessionKey: params.sessionKey,

284+

}).existing;

285+

if (!sessionEntry?.sessionId) {

286+

return;

287+

}

288+

const { sessionFile } = await resolveAndPersistSessionFile({

289+

sessionId: sessionEntry.sessionId,

290+

sessionKey: params.sessionKey,

291+

sessionStore: store,

292+

storePath,

293+

sessionEntry,

294+

agentId: params.route.agentId,

295+

sessionsDir: path.dirname(storePath),

296+

});

297+

const message = {

298+

role: "assistant" as const,

299+

content: [{ type: "text" as const, text }],

300+

api: "openai-responses",

301+

provider: "openclaw",

302+

model: "delivery-mirror",

303+

usage: {

304+

input: 0,

305+

output: 0,

306+

total: 0,

307+

prompt_tokens: 0,

308+

completion_tokens: 0,

309+

total_tokens: 0,

310+

cache: {

311+

read: 0,

312+

write: 0,

313+

cacheRead: 0,

314+

cacheWrite: 0,

315+

total: 0,

316+

},

317+

},

318+

stopReason: "stop" as const,

319+

timestamp: Date.now(),

320+

};

321+

const { messageId } = await appendSessionTranscriptMessage({

322+

transcriptPath: sessionFile,

323+

message,

324+

config: params.cfg,

325+

});

326+

emitSessionTranscriptUpdate({

327+

sessionFile,

328+

sessionKey: params.sessionKey,

329+

message,

330+

messageId,

331+

});

332+

}

333+238334

const MAX_PROGRESS_MARKDOWN_TEXT_CHARS = 300;

239335240336

function clipProgressMarkdownText(text: string): string {

@@ -710,6 +806,7 @@ export const dispatchTelegramMessage = async ({

710806

});

711807

}

712808

};

809+

const sessionKey = ctxPayload.SessionKey;

713810

const deliveryBaseOptions = {

714811

chatId: String(chatId),

715812

accountId: route.accountId,

@@ -731,6 +828,17 @@ export const dispatchTelegramMessage = async ({

731828

replyQuotePosition,

732829

replyQuoteEntities,

733830

replyQuoteByMessageId,

831+

transcriptMirror: sessionKey

832+

? async (payload: TelegramTranscriptMirrorPayload) => {

833+

await mirrorTelegramAssistantReplyToTranscript({

834+

cfg,

835+

route,

836+

sessionKey,

837+

telegramDeps,

838+

payload,

839+

});

840+

}

841+

: undefined,

734842

};

735843

const silentErrorReplies = telegramCfg.silentErrorReplies === true;

736844

const isDmTopic = !isGroup && threadSpec.scope === "dm" && threadSpec.id != null;

@@ -902,6 +1010,15 @@ export const dispatchTelegramMessage = async ({

9021010

isGroup: deliveryBaseOptions.mirrorIsGroup,

9031011

groupId: deliveryBaseOptions.mirrorGroupId,

9041012

});

1013+

if (deliveryBaseOptions.transcriptMirror && result.delivery.content) {

1014+

void deliveryBaseOptions

1015+

.transcriptMirror({ text: result.delivery.content })

1016+

.catch((err: unknown) => {

1017+

logVerbose(

1018+

`telegram preview-finalized transcriptMirror failed: ${formatErrorMessage(err)}`,

1019+

);

1020+

});

1021+

}

9051022

};

9061023

const deliverLaneText = createLaneTextDeliverer({

9071024

lanes,