UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

15 lines (14 loc) 399 B
export type ReplyDirectiveParseResult = { text: string; mediaUrls?: string[]; mediaUrl?: string; replyToId?: string; replyToCurrent: boolean; replyToTag: boolean; audioAsVoice?: boolean; isSilent: boolean; }; export declare function parseReplyDirectives(raw: string, options?: { currentMessageId?: string; silentToken?: string; }): ReplyDirectiveParseResult;