@smart-cloud/ai-kit-core 1.1.8 → 1.1.9
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/index.d.cts +2 -5
- package/dist/index.d.ts +2 -5
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -90,11 +90,6 @@ interface AiKitSettings {
|
|
|
90
90
|
* Keep this lightweight: most users will rely on defaults.
|
|
91
91
|
*/
|
|
92
92
|
defaultOutputLanguage?: AiKitLanguageCode;
|
|
93
|
-
/**
|
|
94
|
-
* On-device timeout overrides (ms).
|
|
95
|
-
*/
|
|
96
|
-
defaultQuickTimeoutMs?: number;
|
|
97
|
-
defaultExtendedTimeoutMs?: number;
|
|
98
93
|
/** Optional URL to custom translations JSON file. */
|
|
99
94
|
customTranslationsUrl?: string;
|
|
100
95
|
/**
|
|
@@ -252,6 +247,8 @@ type AiFeatureProps = AiWorkerProps & {
|
|
|
252
247
|
context?: ContextKind;
|
|
253
248
|
modeOverride?: AiModePreference;
|
|
254
249
|
autoRun?: boolean;
|
|
250
|
+
defaultQuickTimeoutMs?: number;
|
|
251
|
+
defaultExtendedTimeoutMs?: number;
|
|
255
252
|
editable?: boolean;
|
|
256
253
|
acceptButtonTitle?: string;
|
|
257
254
|
showRegenerateOnBackendButton?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -90,11 +90,6 @@ interface AiKitSettings {
|
|
|
90
90
|
* Keep this lightweight: most users will rely on defaults.
|
|
91
91
|
*/
|
|
92
92
|
defaultOutputLanguage?: AiKitLanguageCode;
|
|
93
|
-
/**
|
|
94
|
-
* On-device timeout overrides (ms).
|
|
95
|
-
*/
|
|
96
|
-
defaultQuickTimeoutMs?: number;
|
|
97
|
-
defaultExtendedTimeoutMs?: number;
|
|
98
93
|
/** Optional URL to custom translations JSON file. */
|
|
99
94
|
customTranslationsUrl?: string;
|
|
100
95
|
/**
|
|
@@ -252,6 +247,8 @@ type AiFeatureProps = AiWorkerProps & {
|
|
|
252
247
|
context?: ContextKind;
|
|
253
248
|
modeOverride?: AiModePreference;
|
|
254
249
|
autoRun?: boolean;
|
|
250
|
+
defaultQuickTimeoutMs?: number;
|
|
251
|
+
defaultExtendedTimeoutMs?: number;
|
|
255
252
|
editable?: boolean;
|
|
256
253
|
acceptButtonTitle?: string;
|
|
257
254
|
showRegenerateOnBackendButton?: boolean;
|