sambanova
Version:
The official TypeScript library for the Samba Nova API
22 lines • 643 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from "../core/resource.mjs";
export class Embeddings extends APIResource {
/**
* Create embeddings
*
* @example
* ```ts
* const embeddingsResponse = await client.embeddings.create({
* input: [
* 'text to embed number 1',
* 'text to embed number 2',
* ],
* model: 'E5-Mistral-7B-Instruct',
* });
* ```
*/
create(body, options) {
return this._client.post('/embeddings', { body, ...options });
}
}
//# sourceMappingURL=embeddings.mjs.map