UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

24 lines (23 loc) 557 B
export type EmbeddingBatchOutputLine = { custom_id?: string; error?: { message?: string; }; response?: { status_code?: number; body?: { data?: Array<{ embedding?: number[]; }>; error?: { message?: string; }; } | string; }; }; export declare function applyEmbeddingBatchOutputLine(params: { line: EmbeddingBatchOutputLine; remaining: Set<string>; errors: string[]; byCustomId: Map<string, number[]>; }): void;