UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

9 lines (8 loc) 400 B
import type { FinalizedMsgContext } from "../templating.js"; export type FinalizeInboundContextOptions = { forceBodyForAgent?: boolean; forceBodyForCommands?: boolean; forceChatType?: boolean; forceConversationLabel?: boolean; }; export declare function finalizeInboundContext<T extends Record<string, unknown>>(ctx: T, opts?: FinalizeInboundContextOptions): T & FinalizedMsgContext;