mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 11:20:42 +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,
|
|
};
|