@synsci/sdk 2.0.74 → 2.0.75
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.
|
@@ -534,8 +534,6 @@ export declare class Preferences extends HeyApiClient {
|
|
|
534
534
|
} | null;
|
|
535
535
|
delegation_autonomy?: "interactive" | "balanced" | "autonomous";
|
|
536
536
|
delegation_diversity?: "focused" | "balanced" | "exploratory";
|
|
537
|
-
compaction_auto?: boolean;
|
|
538
|
-
compaction_threshold?: number;
|
|
539
537
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsPreferencesUpdateResponses, unknown, ThrowOnError, "fields">;
|
|
540
538
|
/**
|
|
541
539
|
* Clear one completed desktop onboarding draft binding
|
|
@@ -931,8 +931,6 @@ export class Preferences extends HeyApiClient {
|
|
|
931
931
|
{ in: "body", key: "delegation_worker_model" },
|
|
932
932
|
{ in: "body", key: "delegation_autonomy" },
|
|
933
933
|
{ in: "body", key: "delegation_diversity" },
|
|
934
|
-
{ in: "body", key: "compaction_auto" },
|
|
935
|
-
{ in: "body", key: "compaction_threshold" },
|
|
936
934
|
],
|
|
937
935
|
},
|
|
938
936
|
]);
|
|
@@ -1593,11 +1593,11 @@ export type ProviderConfig = {
|
|
|
1593
1593
|
*/
|
|
1594
1594
|
setCacheKey?: boolean;
|
|
1595
1595
|
/**
|
|
1596
|
-
* Optional total wall-clock timeout in milliseconds for a provider request. No total timeout is applied by default.
|
|
1596
|
+
* Optional total wall-clock timeout in milliseconds for a provider request. No total timeout is applied by default. The response stays open until completion, explicit cancellation, or a configured deadline; connectTimeout separately bounds the wait for response headers.
|
|
1597
1597
|
*/
|
|
1598
1598
|
timeout?: number | false;
|
|
1599
1599
|
/**
|
|
1600
|
-
*
|
|
1600
|
+
* Optional maximum provider response-body inactivity in milliseconds. Disabled by default. A configured deadline cancels even a healthy but quiet generation; set false to disable.
|
|
1601
1601
|
*/
|
|
1602
1602
|
idleTimeout?: number | false;
|
|
1603
1603
|
/**
|
|
@@ -1605,7 +1605,7 @@ export type ProviderConfig = {
|
|
|
1605
1605
|
*/
|
|
1606
1606
|
connectTimeout?: number | false;
|
|
1607
1607
|
/**
|
|
1608
|
-
*
|
|
1608
|
+
* Optional maximum wait for new readable model output or tool-call activity in milliseconds. Disabled by default because providers can reason without publishing text. When configured, transport keepalives do not reset it; tool execution and local processing suspend it. Set false to disable.
|
|
1609
1609
|
*/
|
|
1610
1610
|
outputIdleTimeout?: number | false;
|
|
1611
1611
|
[key: string]: unknown;
|
|
@@ -1874,7 +1874,7 @@ export type Config = {
|
|
|
1874
1874
|
*/
|
|
1875
1875
|
prune?: boolean;
|
|
1876
1876
|
/**
|
|
1877
|
-
*
|
|
1877
|
+
* @deprecated Ignored. Automatic compaction uses the model's usable context capacity.
|
|
1878
1878
|
*/
|
|
1879
1879
|
threshold?: number;
|
|
1880
1880
|
/**
|
|
@@ -6848,14 +6848,6 @@ export type SettingsPreferencesGetResponses = {
|
|
|
6848
6848
|
} | null;
|
|
6849
6849
|
delegation_autonomy?: "interactive" | "balanced" | "autonomous";
|
|
6850
6850
|
delegation_diversity?: "focused" | "balanced" | "exploratory";
|
|
6851
|
-
/**
|
|
6852
|
-
* Automatic compaction when context is full (compaction.auto)
|
|
6853
|
-
*/
|
|
6854
|
-
compaction_auto?: boolean;
|
|
6855
|
-
/**
|
|
6856
|
-
* Fraction of the model window that triggers automatic compaction (compaction.threshold)
|
|
6857
|
-
*/
|
|
6858
|
-
compaction_threshold?: number;
|
|
6859
6851
|
};
|
|
6860
6852
|
};
|
|
6861
6853
|
export type SettingsPreferencesGetResponse = SettingsPreferencesGetResponses[keyof SettingsPreferencesGetResponses];
|
|
@@ -6877,8 +6869,6 @@ export type SettingsPreferencesUpdateData = {
|
|
|
6877
6869
|
} | null;
|
|
6878
6870
|
delegation_autonomy?: "interactive" | "balanced" | "autonomous";
|
|
6879
6871
|
delegation_diversity?: "focused" | "balanced" | "exploratory";
|
|
6880
|
-
compaction_auto?: boolean;
|
|
6881
|
-
compaction_threshold?: number;
|
|
6882
6872
|
};
|
|
6883
6873
|
path?: never;
|
|
6884
6874
|
query?: never;
|
|
@@ -6911,14 +6901,6 @@ export type SettingsPreferencesUpdateResponses = {
|
|
|
6911
6901
|
} | null;
|
|
6912
6902
|
delegation_autonomy?: "interactive" | "balanced" | "autonomous";
|
|
6913
6903
|
delegation_diversity?: "focused" | "balanced" | "exploratory";
|
|
6914
|
-
/**
|
|
6915
|
-
* Automatic compaction when context is full (compaction.auto)
|
|
6916
|
-
*/
|
|
6917
|
-
compaction_auto?: boolean;
|
|
6918
|
-
/**
|
|
6919
|
-
* Fraction of the model window that triggers automatic compaction (compaction.threshold)
|
|
6920
|
-
*/
|
|
6921
|
-
compaction_threshold?: number;
|
|
6922
6904
|
};
|
|
6923
6905
|
};
|
|
6924
6906
|
export type SettingsPreferencesUpdateResponse = SettingsPreferencesUpdateResponses[keyof SettingsPreferencesUpdateResponses];
|