13 lines
435 B
JavaScript
13 lines
435 B
JavaScript
|
// File generated from our OpenAPI spec by Stainless.
|
||
|
import { APIResource } from 'openai/resource';
|
||
|
export class Embeddings extends APIResource {
|
||
|
/**
|
||
|
* Creates an embedding vector representing the input text.
|
||
|
*/
|
||
|
create(body, options) {
|
||
|
return this._client.post('/embeddings', { body, ...options });
|
||
|
}
|
||
|
}
|
||
|
(function (Embeddings) {
|
||
|
})(Embeddings || (Embeddings = {}));
|
||
|
//# sourceMappingURL=embeddings.mjs.map
|