import { BaseClient } from '../Base'; import { EmbeddingBody, EmbeddingResp } from '../interface'; declare class Eembedding extends BaseClient { /** * 向量化 * @param body 请求体 * @param model 向量化模型,默认为'Embedding-V1' * @returns Promise> */ embedding(body: EmbeddingBody, model?: string): Promise; } export default Eembedding;