/** * Representation of the 'EmbeddingConfig' schema. */ export type EmbeddingConfig = { /** * Default: "text-embedding-ada-002". * Max Length: 1024. */ modelName?: string; } & Record; //# sourceMappingURL=embedding-config.d.ts.map