sambanova
Version:
The official TypeScript library for the Samba Nova API
26 lines • 784 B
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Embeddings = void 0;
const resource_1 = require("../core/resource.js");
class Embeddings extends resource_1.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 });
}
}
exports.Embeddings = Embeddings;
//# sourceMappingURL=embeddings.js.map