UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

10 lines (9 loc) 240 B
export declare const SESSION_LABEL_MAX_LENGTH = 64; export type ParsedSessionLabel = { ok: true; label: string; } | { ok: false; error: string; }; export declare function parseSessionLabel(raw: unknown): ParsedSessionLabel;