@synsci/sdk 1.1.108 → 1.1.109
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/sdk.gen.d.ts
CHANGED
|
@@ -449,6 +449,7 @@ export declare class Session extends HeyApiClient {
|
|
|
449
449
|
};
|
|
450
450
|
system?: string;
|
|
451
451
|
variant?: string;
|
|
452
|
+
tier?: "fast" | "pro" | "ultra";
|
|
452
453
|
parts?: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>;
|
|
453
454
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SessionPromptResponses, SessionPromptErrors, ThrowOnError, "fields">;
|
|
454
455
|
/**
|
|
@@ -481,6 +482,7 @@ export declare class Session extends HeyApiClient {
|
|
|
481
482
|
};
|
|
482
483
|
system?: string;
|
|
483
484
|
variant?: string;
|
|
485
|
+
tier?: "fast" | "pro" | "ultra";
|
|
484
486
|
parts?: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>;
|
|
485
487
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SessionPromptAsyncResponses, SessionPromptAsyncErrors, ThrowOnError, "fields">;
|
|
486
488
|
/**
|
package/dist/v2/gen/sdk.gen.js
CHANGED
|
@@ -851,6 +851,7 @@ export class Session extends HeyApiClient {
|
|
|
851
851
|
{ in: "body", key: "tools" },
|
|
852
852
|
{ in: "body", key: "system" },
|
|
853
853
|
{ in: "body", key: "variant" },
|
|
854
|
+
{ in: "body", key: "tier" },
|
|
854
855
|
{ in: "body", key: "parts" },
|
|
855
856
|
],
|
|
856
857
|
},
|
|
@@ -905,6 +906,7 @@ export class Session extends HeyApiClient {
|
|
|
905
906
|
{ in: "body", key: "tools" },
|
|
906
907
|
{ in: "body", key: "system" },
|
|
907
908
|
{ in: "body", key: "variant" },
|
|
909
|
+
{ in: "body", key: "tier" },
|
|
908
910
|
{ in: "body", key: "parts" },
|
|
909
911
|
],
|
|
910
912
|
},
|
|
@@ -106,6 +106,7 @@ export type UserMessage = {
|
|
|
106
106
|
[key: string]: boolean;
|
|
107
107
|
};
|
|
108
108
|
variant?: string;
|
|
109
|
+
tier?: "fast" | "pro" | "ultra";
|
|
109
110
|
};
|
|
110
111
|
export type ProviderAuthError = {
|
|
111
112
|
name: "ProviderAuthError";
|
|
@@ -1607,6 +1608,10 @@ export type Config = {
|
|
|
1607
1608
|
* Replace TodoWrite with PlanWrite and show plan panel in sidebar
|
|
1608
1609
|
*/
|
|
1609
1610
|
plan_mode?: boolean;
|
|
1611
|
+
/**
|
|
1612
|
+
* Replace model selection with tier-based selection (Fast/Pro/Ultra)
|
|
1613
|
+
*/
|
|
1614
|
+
tier_mode?: boolean;
|
|
1610
1615
|
/**
|
|
1611
1616
|
* Timeout in milliseconds for model context protocol (MCP) requests
|
|
1612
1617
|
*/
|
|
@@ -2878,6 +2883,7 @@ export type SessionPromptData = {
|
|
|
2878
2883
|
};
|
|
2879
2884
|
system?: string;
|
|
2880
2885
|
variant?: string;
|
|
2886
|
+
tier?: "fast" | "pro" | "ultra";
|
|
2881
2887
|
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>;
|
|
2882
2888
|
};
|
|
2883
2889
|
path: {
|
|
@@ -3045,6 +3051,7 @@ export type SessionPromptAsyncData = {
|
|
|
3045
3051
|
};
|
|
3046
3052
|
system?: string;
|
|
3047
3053
|
variant?: string;
|
|
3054
|
+
tier?: "fast" | "pro" | "ultra";
|
|
3048
3055
|
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>;
|
|
3049
3056
|
};
|
|
3050
3057
|
path: {
|