-
Notifications
You must be signed in to change notification settings - Fork 5
/
embeddings.ts
48 lines (41 loc) · 1.27 KB
/
embeddings.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../resource';
import * as Core from '../../core';
import * as EmbeddingsAPI from './embeddings';
export class Embeddings extends APIResource {
create(params: EmbeddingCreateParams, options?: Core.RequestOptions): Core.APIPromise<Embeddings> {
const { 'X-LlamaStack-ProviderData': xLlamaStackProviderData, ...body } = params;
return this._client.post('/inference/embeddings', {
body,
...options,
headers: {
...(xLlamaStackProviderData != null ?
{ 'X-LlamaStack-ProviderData': xLlamaStackProviderData }
: undefined),
...options?.headers,
},
});
}
}
export interface Embeddings {
embeddings: Array<Array<number>>;
}
export interface EmbeddingCreateParams {
/**
* Body param:
*/
contents: Array<string | Array<string>>;
/**
* Body param:
*/
model: string;
/**
* Header param: JSON-encoded provider data which will be made available to the
* adapter servicing the API
*/
'X-LlamaStack-ProviderData'?: string;
}
export namespace Embeddings {
export import Embeddings = EmbeddingsAPI.Embeddings;
export import EmbeddingCreateParams = EmbeddingsAPI.EmbeddingCreateParams;
}