mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-16 11:41:08 +00:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import { chunkMarkdownText } from "openclaw/plugin-sdk/reply-runtime";
|
|
|
|
export const telegramOutboundBaseAdapter = {
|
|
deliveryMode: "direct" as const,
|
|
chunker: chunkMarkdownText,
|
|
chunkerMode: "markdown" as const,
|
|
textChunkLimit: 4000,
|
|
pollMaxOptions: 10,
|
|
};
|