@synsci/sdk 1.3.5-test.11.1 → 1.3.5-test.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/gen/types.gen.d.ts +2 -90
- package/package.json +1 -1
|
@@ -1717,7 +1717,7 @@ export type Model = {
|
|
|
1717
1717
|
providerID: string;
|
|
1718
1718
|
api: {
|
|
1719
1719
|
id: string;
|
|
1720
|
-
url
|
|
1720
|
+
url?: string;
|
|
1721
1721
|
npm: string;
|
|
1722
1722
|
};
|
|
1723
1723
|
name: string;
|
|
@@ -4425,95 +4425,7 @@ export type ProviderListResponses = {
|
|
|
4425
4425
|
* List of providers
|
|
4426
4426
|
*/
|
|
4427
4427
|
200: {
|
|
4428
|
-
all: Array<
|
|
4429
|
-
api?: string;
|
|
4430
|
-
name: string;
|
|
4431
|
-
env: Array<string>;
|
|
4432
|
-
id: string;
|
|
4433
|
-
npm?: string;
|
|
4434
|
-
models: {
|
|
4435
|
-
[key: string]: {
|
|
4436
|
-
id: string;
|
|
4437
|
-
name: string;
|
|
4438
|
-
family?: string;
|
|
4439
|
-
release_date: string;
|
|
4440
|
-
attachment: boolean;
|
|
4441
|
-
reasoning: boolean;
|
|
4442
|
-
reasoning_options?: Array<{
|
|
4443
|
-
type: "toggle";
|
|
4444
|
-
} | {
|
|
4445
|
-
type: "effort";
|
|
4446
|
-
values: Array<string | null>;
|
|
4447
|
-
} | {
|
|
4448
|
-
type: "budget_tokens";
|
|
4449
|
-
min?: number;
|
|
4450
|
-
max?: number;
|
|
4451
|
-
}>;
|
|
4452
|
-
temperature: boolean;
|
|
4453
|
-
tool_call: boolean;
|
|
4454
|
-
interleaved?: true | {
|
|
4455
|
-
field: "reasoning_content" | "reasoning_details";
|
|
4456
|
-
};
|
|
4457
|
-
cost?: {
|
|
4458
|
-
input: number;
|
|
4459
|
-
output: number;
|
|
4460
|
-
cache_read?: number;
|
|
4461
|
-
cache_write?: number;
|
|
4462
|
-
context_over_200k?: {
|
|
4463
|
-
input: number;
|
|
4464
|
-
output: number;
|
|
4465
|
-
cache_read?: number;
|
|
4466
|
-
cache_write?: number;
|
|
4467
|
-
};
|
|
4468
|
-
};
|
|
4469
|
-
limit: {
|
|
4470
|
-
context: number;
|
|
4471
|
-
input?: number;
|
|
4472
|
-
output: number;
|
|
4473
|
-
};
|
|
4474
|
-
modalities?: {
|
|
4475
|
-
input: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
4476
|
-
output: Array<"text" | "audio" | "image" | "video" | "pdf">;
|
|
4477
|
-
};
|
|
4478
|
-
experimental?: boolean | {
|
|
4479
|
-
modes?: {
|
|
4480
|
-
[key: string]: {
|
|
4481
|
-
model?: string;
|
|
4482
|
-
cost?: {
|
|
4483
|
-
input: number;
|
|
4484
|
-
output: number;
|
|
4485
|
-
cache_read?: number;
|
|
4486
|
-
cache_write?: number;
|
|
4487
|
-
};
|
|
4488
|
-
provider?: {
|
|
4489
|
-
body?: {
|
|
4490
|
-
[key: string]: unknown;
|
|
4491
|
-
};
|
|
4492
|
-
headers?: {
|
|
4493
|
-
[key: string]: string;
|
|
4494
|
-
};
|
|
4495
|
-
};
|
|
4496
|
-
};
|
|
4497
|
-
};
|
|
4498
|
-
};
|
|
4499
|
-
status?: "alpha" | "beta" | "deprecated";
|
|
4500
|
-
options: {
|
|
4501
|
-
[key: string]: unknown;
|
|
4502
|
-
};
|
|
4503
|
-
headers?: {
|
|
4504
|
-
[key: string]: string;
|
|
4505
|
-
};
|
|
4506
|
-
provider?: {
|
|
4507
|
-
npm: string;
|
|
4508
|
-
};
|
|
4509
|
-
variants?: {
|
|
4510
|
-
[key: string]: {
|
|
4511
|
-
[key: string]: unknown;
|
|
4512
|
-
};
|
|
4513
|
-
};
|
|
4514
|
-
};
|
|
4515
|
-
};
|
|
4516
|
-
}>;
|
|
4428
|
+
all: Array<Provider>;
|
|
4517
4429
|
default: {
|
|
4518
4430
|
[key: string]: string;
|
|
4519
4431
|
};
|