/** * Telegram-platform-universal context entries — knowledge the LLM needs * about Telegram itself (tagging procedure, Markdown formatting, conversation * model). Apps spread `defaultTelegramContext` into the `context:` config * they pass to `createChannel`. * * Each entry is exported individually too so apps can cherry-pick. */ import type { ContextEntry } from "@copilotkit/channels-core"; /** Telegram context entry — alias of `@copilotkit/channels-core`'s {@link ContextEntry}. */ export type TelegramContextEntry = ContextEntry; export declare const telegramTaggingContext: TelegramContextEntry; export declare const telegramFormattingContext: TelegramContextEntry; export declare const telegramConversationModelContext: TelegramContextEntry; /** * The default context entries the SDK ships. Spread into your * `createChannel({context: …})`: * * context: [...defaultTelegramContext, ...myAppContext], */ export declare const defaultTelegramContext: ReadonlyArray; //# sourceMappingURL=built-in-context.d.ts.map