openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
9 lines (8 loc) • 327 B
TypeScript
import { type BatchHttpClientConfig } from "./batch-utils.js";
/** Upload embedding batch requests and return the provider file id. */
export declare function uploadBatchJsonlFile(params: {
client: BatchHttpClientConfig;
requests: unknown[];
errorPrefix: string;
maxResponseBytes?: number;
}): Promise<string>;