/** * Discord-platform-universal context entries — knowledge the LLM needs * about Discord itself (tagging procedure, formatting, conversation * model). Apps spread `defaultDiscordContext` 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"; export declare const discordTaggingContext: ContextEntry; export declare const discordFormattingContext: ContextEntry; export declare const discordConversationModelContext: ContextEntry; /** * The default context entries the SDK ships. Spread into your * `createChannel({context: …})`: * * context: [...defaultDiscordContext, ...myAppContext], */ export declare const defaultDiscordContext: ContextEntry[]; //# sourceMappingURL=built-in-context.d.ts.map