-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathmodels.ts
More file actions
639 lines (546 loc) · 14.5 KB
/
models.ts
File metadata and controls
639 lines (546 loc) · 14.5 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../core/resource';
import * as AgentsAPI from '../agents/agents';
import * as EmbeddingsAPI from './embeddings';
import { EmbeddingListResponse, Embeddings } from './embeddings';
import { APIPromise } from '../../core/api-promise';
import { RequestOptions } from '../../internal/request-options';
export class Models extends APIResource {
embeddings: EmbeddingsAPI.Embeddings = new EmbeddingsAPI.Embeddings(this._client);
/**
* List available LLM models using the asynchronous implementation for improved
* performance.
*
* Returns Model format which extends LLMConfig with additional metadata fields.
* Legacy LLMConfig fields are marked as deprecated but still available for
* backward compatibility.
*/
list(
query: ModelListParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<ModelListResponse> {
return this._client.get('/v1/models/', { query, ...options });
}
}
/**
* Configuration for embedding model connection and processing parameters.
*/
export interface EmbeddingConfig {
/**
* The dimension of the embedding.
*/
embedding_dim: number;
/**
* The endpoint type for the model.
*/
embedding_endpoint_type:
| 'openai'
| 'anthropic'
| 'bedrock'
| 'google_ai'
| 'google_vertex'
| 'azure'
| 'groq'
| 'ollama'
| 'webui'
| 'webui-legacy'
| 'lmstudio'
| 'lmstudio-legacy'
| 'llamacpp'
| 'koboldcpp'
| 'vllm'
| 'hugging-face'
| 'mistral'
| 'together'
| 'pinecone';
/**
* The model for the embedding.
*/
embedding_model: string;
/**
* The Azure deployment for the model.
*/
azure_deployment?: string | null;
/**
* The Azure endpoint for the model.
*/
azure_endpoint?: string | null;
/**
* The Azure version for the model.
*/
azure_version?: string | null;
/**
* The maximum batch size for processing embeddings.
*/
batch_size?: number;
/**
* The chunk size of the embedding.
*/
embedding_chunk_size?: number | null;
/**
* The endpoint for the model (`None` if local).
*/
embedding_endpoint?: string | null;
/**
* The handle for this config, in the format provider/model-name.
*/
handle?: string | null;
}
export interface EmbeddingModel {
/**
* Display name for the model shown in UI
*/
display_name: string;
/**
* The dimension of the embedding
*/
embedding_dim: number;
/**
* @deprecated Deprecated: Use 'provider_type' field instead. The endpoint type for
* the embedding model.
*/
embedding_endpoint_type:
| 'openai'
| 'anthropic'
| 'bedrock'
| 'google_ai'
| 'google_vertex'
| 'azure'
| 'groq'
| 'ollama'
| 'webui'
| 'webui-legacy'
| 'lmstudio'
| 'lmstudio-legacy'
| 'llamacpp'
| 'koboldcpp'
| 'vllm'
| 'hugging-face'
| 'mistral'
| 'together'
| 'pinecone';
/**
* @deprecated Deprecated: Use 'name' field instead. Embedding model name.
*/
embedding_model: string;
/**
* The actual model name used by the provider
*/
name: string;
/**
* The name of the provider
*/
provider_name: string;
/**
* The type of the provider
*/
provider_type: ProviderType;
/**
* @deprecated Deprecated: The Azure deployment for the model.
*/
azure_deployment?: string | null;
/**
* @deprecated Deprecated: The Azure endpoint for the model.
*/
azure_endpoint?: string | null;
/**
* @deprecated Deprecated: The Azure version for the model.
*/
azure_version?: string | null;
/**
* @deprecated Deprecated: The maximum batch size for processing embeddings.
*/
batch_size?: number;
/**
* @deprecated Deprecated: The chunk size of the embedding.
*/
embedding_chunk_size?: number | null;
/**
* @deprecated Deprecated: The endpoint for the model.
*/
embedding_endpoint?: string | null;
/**
* The handle for this config, in the format provider/model-name.
*/
handle?: string | null;
/**
* Type of model (llm or embedding)
*/
model_type?: 'embedding';
}
/**
* Configuration for Language Model (LLM) connection and generation parameters.
*
* .. deprecated:: LLMConfig is deprecated and should not be used as an input or
* return type in API calls. Use the schemas in letta.schemas.model (ModelSettings,
* OpenAIModelSettings, etc.) instead. For conversion, use the \_to_model() method
* or Model.\_from_llm_config() method.
*/
export interface LlmConfig {
/**
* The context window size for the model.
*/
context_window: number;
/**
* LLM model name.
*/
model: string;
/**
* The endpoint type for the model.
*/
model_endpoint_type:
| 'openai'
| 'anthropic'
| 'google_ai'
| 'google_vertex'
| 'azure'
| 'groq'
| 'ollama'
| 'webui'
| 'webui-legacy'
| 'lmstudio'
| 'lmstudio-legacy'
| 'lmstudio-chatcompletions'
| 'llamacpp'
| 'koboldcpp'
| 'vllm'
| 'hugging-face'
| 'minimax'
| 'mistral'
| 'together'
| 'bedrock'
| 'deepseek'
| 'xai'
| 'zai'
| 'baseten'
| 'fireworks'
| 'openrouter'
| 'chatgpt_oauth';
/**
* The framework compatibility type for the model.
*/
compatibility_type?: 'gguf' | 'mlx' | null;
/**
* A human-friendly display name for the model.
*/
display_name?: string | null;
/**
* The effort level for Anthropic models that support it (Opus 4.5, Opus 4.6).
* Controls token spending and thinking behavior. Not setting this gives similar
* performance to 'high'.
*/
effort?: 'low' | 'medium' | 'high' | 'max' | null;
/**
* Whether or not the model should use extended thinking if it is a 'reasoning'
* style model
*/
enable_reasoner?: boolean;
/**
* Positive values penalize new tokens based on their existing frequency in the
* text so far, decreasing the model's likelihood to repeat the same line verbatim.
* From OpenAI: Number between -2.0 and 2.0.
*/
frequency_penalty?: number | null;
/**
* The handle for this config, in the format provider/model-name.
*/
handle?: string | null;
/**
* Configurable thinking budget for extended thinking. Used for enable_reasoner and
* also for Google Vertex models like Gemini 2.5 Flash. Minimum value is 1024 when
* used with enable_reasoner.
*/
max_reasoning_tokens?: number;
/**
* The maximum number of tokens to generate. If not set, the model will use its
* default value.
*/
max_tokens?: number | null;
/**
* The endpoint for the model.
*/
model_endpoint?: string | null;
/**
* The wrapper for the model.
*/
model_wrapper?: string | null;
/**
* @deprecated Deprecated: Use model_settings to configure parallel tool calls
* instead. If set to True, enables parallel tool calling. Defaults to False.
*/
parallel_tool_calls?: boolean | null;
/**
* The provider category for the model.
*/
provider_category?: ProviderCategory | null;
/**
* The provider name for the model.
*/
provider_name?: string | null;
/**
* Puts 'inner_thoughts' as a kwarg in the function call if this is set to True.
* This helps with function calling performance and also the generation of inner
* thoughts.
*/
put_inner_thoughts_in_kwargs?: boolean | null;
/**
* The reasoning effort to use when generating text reasoning models
*/
reasoning_effort?: 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | null;
/**
* The response format for the model's output. Supports text, json_object, and
* json_schema (structured outputs). Can be set via model_settings.
*/
response_format?:
| AgentsAPI.TextResponseFormat
| AgentsAPI.JsonSchemaResponseFormat
| AgentsAPI.JsonObjectResponseFormat
| null;
/**
* Whether to return log probabilities of the output tokens. Useful for RL
* training.
*/
return_logprobs?: boolean;
/**
* Whether to return token IDs for all LLM generations via SGLang native endpoint.
* Required for multi-turn RL training with loss masking. Only works with SGLang
* provider.
*/
return_token_ids?: boolean;
/**
* Enable strict mode for tool calling. When true, tool schemas include strict:
* true and additionalProperties: false, guaranteeing tool outputs match JSON
* schemas.
*/
strict?: boolean;
/**
* The temperature to use when generating text with the model. A higher temperature
* will result in more random text.
*/
temperature?: number;
/**
* The cost tier for the model (cloud only).
*/
tier?: string | null;
/**
* Number of most likely tokens to return at each position (0-20). Requires
* return_logprobs=True.
*/
top_logprobs?: number | null;
/**
* Soft control for how verbose model output should be, used for GPT-5 models.
*/
verbosity?: 'low' | 'medium' | 'high' | null;
}
export interface Model {
/**
* @deprecated Deprecated: Use 'max_context_window' field instead. The context
* window size for the model.
*/
context_window: number;
/**
* The maximum context window for the model
*/
max_context_window: number;
/**
* @deprecated Deprecated: Use 'name' field instead. LLM model name.
*/
model: string;
/**
* @deprecated Deprecated: Use 'provider_type' field instead. The endpoint type for
* the model.
*/
model_endpoint_type:
| 'openai'
| 'anthropic'
| 'google_ai'
| 'google_vertex'
| 'azure'
| 'groq'
| 'ollama'
| 'webui'
| 'webui-legacy'
| 'lmstudio'
| 'lmstudio-legacy'
| 'lmstudio-chatcompletions'
| 'llamacpp'
| 'koboldcpp'
| 'vllm'
| 'hugging-face'
| 'minimax'
| 'mistral'
| 'together'
| 'bedrock'
| 'deepseek'
| 'xai'
| 'zai'
| 'openrouter'
| 'chatgpt_oauth';
/**
* The actual model name used by the provider
*/
name: string;
/**
* The type of the provider
*/
provider_type: ProviderType;
/**
* @deprecated Deprecated: The framework compatibility type for the model.
*/
compatibility_type?: 'gguf' | 'mlx' | null;
/**
* A human-friendly display name for the model.
*/
display_name?: string | null;
/**
* The effort level for Anthropic models that support it (Opus 4.5, Opus 4.6).
* Controls token spending and thinking behavior. Not setting this gives similar
* performance to 'high'.
*/
effort?: 'low' | 'medium' | 'high' | 'max' | null;
/**
* @deprecated Deprecated: Whether or not the model should use extended thinking if
* it is a 'reasoning' style model.
*/
enable_reasoner?: boolean;
/**
* @deprecated Deprecated: Positive values penalize new tokens based on their
* existing frequency in the text so far.
*/
frequency_penalty?: number | null;
/**
* The handle for this config, in the format provider/model-name.
*/
handle?: string | null;
/**
* @deprecated Deprecated: Configurable thinking budget for extended thinking.
*/
max_reasoning_tokens?: number;
/**
* @deprecated Deprecated: The maximum number of tokens to generate.
*/
max_tokens?: number | null;
/**
* @deprecated Deprecated: The endpoint for the model.
*/
model_endpoint?: string | null;
/**
* Type of model (llm or embedding)
*/
model_type?: 'llm';
/**
* @deprecated Deprecated: The wrapper for the model.
*/
model_wrapper?: string | null;
/**
* @deprecated Deprecated: If set to True, enables parallel tool calling.
*/
parallel_tool_calls?: boolean | null;
/**
* @deprecated Deprecated: The provider category for the model.
*/
provider_category?: ProviderCategory | null;
/**
* The provider name for the model.
*/
provider_name?: string | null;
/**
* @deprecated Deprecated: Puts 'inner_thoughts' as a kwarg in the function call.
*/
put_inner_thoughts_in_kwargs?: boolean | null;
/**
* @deprecated Deprecated: The reasoning effort to use when generating text
* reasoning models.
*/
reasoning_effort?: 'none' | 'minimal' | 'low' | 'medium' | 'high' | 'xhigh' | null;
/**
* The response format for the model's output. Supports text, json_object, and
* json_schema (structured outputs). Can be set via model_settings.
*/
response_format?:
| AgentsAPI.TextResponseFormat
| AgentsAPI.JsonSchemaResponseFormat
| AgentsAPI.JsonObjectResponseFormat
| null;
/**
* Whether to return log probabilities of the output tokens. Useful for RL
* training.
*/
return_logprobs?: boolean;
/**
* Whether to return token IDs for all LLM generations via SGLang native endpoint.
* Required for multi-turn RL training with loss masking. Only works with SGLang
* provider.
*/
return_token_ids?: boolean;
/**
* Enable strict mode for tool calling. When true, tool schemas include strict:
* true and additionalProperties: false, guaranteeing tool outputs match JSON
* schemas.
*/
strict?: boolean;
/**
* @deprecated Deprecated: The temperature to use when generating text with the
* model.
*/
temperature?: number;
/**
* @deprecated Deprecated: The cost tier for the model (cloud only).
*/
tier?: string | null;
/**
* Number of most likely tokens to return at each position (0-20). Requires
* return_logprobs=True.
*/
top_logprobs?: number | null;
/**
* @deprecated Deprecated: Soft control for how verbose model output should be.
*/
verbosity?: 'low' | 'medium' | 'high' | null;
}
export type ProviderCategory = 'base' | 'byok';
export type ProviderType =
| 'anthropic'
| 'azure'
| 'baseten'
| 'bedrock'
| 'cerebras'
| 'chatgpt_oauth'
| 'deepseek'
| 'fireworks'
| 'google_ai'
| 'google_vertex'
| 'groq'
| 'hugging-face'
| 'letta'
| 'lmstudio_openai'
| 'minimax'
| 'mistral'
| 'ollama'
| 'openai'
| 'together'
| 'vllm'
| 'sglang'
| 'openrouter'
| 'xai'
| 'zai';
export type ModelListResponse = Array<Model>;
export interface ModelListParams {
provider_category?: Array<ProviderCategory> | null;
provider_name?: string | null;
provider_type?: ProviderType | null;
}
Models.Embeddings = Embeddings;
export declare namespace Models {
export {
type EmbeddingConfig as EmbeddingConfig,
type EmbeddingModel as EmbeddingModel,
type LlmConfig as LlmConfig,
type Model as Model,
type ProviderCategory as ProviderCategory,
type ProviderType as ProviderType,
type ModelListResponse as ModelListResponse,
type ModelListParams as ModelListParams,
};
export { Embeddings as Embeddings, type EmbeddingListResponse as EmbeddingListResponse };
}