import type { Embedding } from "./Embedding"; export type CreateEmbeddingResponse = { /** * The list of embeddings generated by the model. */ data: Array; /** * The name of the model used to generate the embedding. */ model: string; /** * The object type, which is always "embedding". */ object: string; /** * The usage information for the request. */ usage: { /** * The number of tokens used by the prompt. */ prompt_tokens: number; /** * The total number of tokens used by the request. */ total_tokens: number; }; };