librechat-data-provider 0.8.500 → 0.8.502
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.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react-query/index.es.js +1 -1
- package/dist/react-query/index.es.js.map +1 -1
- package/dist/types/accessPermissions.d.ts +6 -2
- package/dist/types/api-endpoints.d.ts +18 -0
- package/dist/types/balance.d.ts +3 -0
- package/dist/types/balance.spec.d.ts +1 -0
- package/dist/types/bedrock.d.ts +35 -11
- package/dist/types/cloudfront-config.spec.d.ts +1 -0
- package/dist/types/codeEnvRef.d.ts +62 -0
- package/dist/types/codeEnvRef.spec.d.ts +1 -0
- package/dist/types/config.d.ts +1800 -149
- package/dist/types/data-service.d.ts +64 -0
- package/dist/types/file-config.d.ts +16 -0
- package/dist/types/generate.d.ts +2 -0
- package/dist/types/headers-helpers.d.ts +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/keys.d.ts +16 -2
- package/dist/types/models.d.ts +40 -8
- package/dist/types/parsers.d.ts +2 -1
- package/dist/types/permissions.d.ts +50 -1
- package/dist/types/roles.d.ts +52 -0
- package/dist/types/schemas.d.ts +491 -5
- package/dist/types/types/assistants.d.ts +25 -3
- package/dist/types/types/files.d.ts +71 -0
- package/dist/types/types/mutations.d.ts +45 -0
- package/dist/types/types/queries.d.ts +2 -0
- package/dist/types/types/runs.d.ts +20 -1
- package/dist/types/types/skills.d.ts +275 -0
- package/dist/types/types/web.d.ts +14 -1
- package/dist/types/types.d.ts +57 -3
- package/package.json +2 -2
package/dist/types/schemas.d.ts
CHANGED
|
@@ -84,8 +84,29 @@ export declare enum AnthropicEffort {
|
|
|
84
84
|
low = "low",
|
|
85
85
|
medium = "medium",
|
|
86
86
|
high = "high",
|
|
87
|
+
xhigh = "xhigh",
|
|
87
88
|
max = "max"
|
|
88
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* Controls whether the model's reasoning content is returned in responses.
|
|
92
|
+
*
|
|
93
|
+
* - `'auto'` - LibreChat decides: opt in to `'summarized'` for models that
|
|
94
|
+
* omit by default (Opus 4.7+), leave the field off for older models.
|
|
95
|
+
* - `'summarized'` - always request a post-hoc summary of the reasoning.
|
|
96
|
+
* - `'omitted'` - always suppress reasoning content. Slightly lower latency.
|
|
97
|
+
*
|
|
98
|
+
* See https://platform.claude.com/docs/en/about-claude/models/whats-new-claude-4-7#thinking-content-omitted-by-default
|
|
99
|
+
*/
|
|
100
|
+
export declare enum ThinkingDisplay {
|
|
101
|
+
auto = "auto",
|
|
102
|
+
summarized = "summarized",
|
|
103
|
+
omitted = "omitted"
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* Wire-level values accepted by the Anthropic Messages API `thinking.display`
|
|
107
|
+
* field. Excludes the LibreChat-only `'auto'` sentinel.
|
|
108
|
+
*/
|
|
109
|
+
export type ThinkingDisplayWireValue = Exclude<ThinkingDisplay, ThinkingDisplay.auto>;
|
|
89
110
|
export declare enum BedrockReasoningConfig {
|
|
90
111
|
low = "low",
|
|
91
112
|
medium = "medium",
|
|
@@ -123,6 +144,7 @@ export declare const imageDetailValue: {
|
|
|
123
144
|
export declare const eImageDetailSchema: z.ZodNativeEnum<typeof ImageDetail>;
|
|
124
145
|
export declare const eReasoningEffortSchema: z.ZodNativeEnum<typeof ReasoningEffort>;
|
|
125
146
|
export declare const eAnthropicEffortSchema: z.ZodNativeEnum<typeof AnthropicEffort>;
|
|
147
|
+
export declare const eThinkingDisplaySchema: z.ZodNativeEnum<typeof ThinkingDisplay>;
|
|
126
148
|
export declare const eReasoningSummarySchema: z.ZodNativeEnum<typeof ReasoningSummary>;
|
|
127
149
|
export declare const eVerbositySchema: z.ZodNativeEnum<typeof Verbosity>;
|
|
128
150
|
export declare const eThinkingLevelSchema: z.ZodNativeEnum<typeof ThinkingLevel>;
|
|
@@ -162,6 +184,18 @@ export declare const defaultAgentFormValues: {
|
|
|
162
184
|
name: string;
|
|
163
185
|
email: string;
|
|
164
186
|
};
|
|
187
|
+
/** Optional allowlist. Only applies when `skills_enabled === true`.
|
|
188
|
+
* Empty/undefined + enabled = full catalog; non-empty + enabled = narrow to ids. */
|
|
189
|
+
skills: string[] | undefined;
|
|
190
|
+
/** Master toggle for skill use on this agent. `true` activates skills
|
|
191
|
+
* (full catalog unless `skills` narrows it). Anything else = inactive. */
|
|
192
|
+
skills_enabled: boolean | undefined;
|
|
193
|
+
/** `undefined` = feature disabled by default (no subagent tool injected). */
|
|
194
|
+
subagents: {
|
|
195
|
+
enabled?: boolean | undefined;
|
|
196
|
+
allowSelf?: boolean | undefined;
|
|
197
|
+
agent_ids?: string[] | undefined;
|
|
198
|
+
} | undefined;
|
|
165
199
|
};
|
|
166
200
|
export declare const ImageVisionTool: FunctionTool;
|
|
167
201
|
export declare const isImageVisionTool: (tool: FunctionTool | FunctionToolCall) => boolean;
|
|
@@ -313,6 +347,10 @@ export declare const anthropicSettings: {
|
|
|
313
347
|
default: AnthropicEffort;
|
|
314
348
|
options: AnthropicEffort[];
|
|
315
349
|
};
|
|
350
|
+
thinkingDisplay: {
|
|
351
|
+
default: ThinkingDisplay;
|
|
352
|
+
options: ThinkingDisplay[];
|
|
353
|
+
};
|
|
316
354
|
web_search: {
|
|
317
355
|
default: false;
|
|
318
356
|
};
|
|
@@ -507,6 +545,10 @@ export declare const endpointSettings: {
|
|
|
507
545
|
default: AnthropicEffort;
|
|
508
546
|
options: AnthropicEffort[];
|
|
509
547
|
};
|
|
548
|
+
thinkingDisplay: {
|
|
549
|
+
default: ThinkingDisplay;
|
|
550
|
+
options: ThinkingDisplay[];
|
|
551
|
+
};
|
|
510
552
|
web_search: {
|
|
511
553
|
default: false;
|
|
512
554
|
};
|
|
@@ -755,6 +797,23 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
755
797
|
calibrationRatio?: number | undefined;
|
|
756
798
|
encoding?: string | undefined;
|
|
757
799
|
}>>;
|
|
800
|
+
/**
|
|
801
|
+
* Skill names the user invoked manually via the `$` popover on this turn.
|
|
802
|
+
* Purely UI metadata — `SkillPills` renders these above the message
|
|
803
|
+
* bubble so users can see which skills they asked for in history and on
|
|
804
|
+
* reload. Runtime resolution uses the top-level payload field with the
|
|
805
|
+
* same name. Empty / absent for model-invoked skills (shown as tool_call
|
|
806
|
+
* content parts on the assistant message instead).
|
|
807
|
+
*/
|
|
808
|
+
manualSkills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
809
|
+
/**
|
|
810
|
+
* Skill names auto-primed on this turn because their `always-apply`
|
|
811
|
+
* frontmatter flag is set. Persisted at turn time so the pinned-variant
|
|
812
|
+
* pills on the user bubble survive reload and stay stable across later
|
|
813
|
+
* edits to the skill's `alwaysApply` flag (the user bubble reflects
|
|
814
|
+
* what actually ran, not the current catalog).
|
|
815
|
+
*/
|
|
816
|
+
alwaysAppliedSkills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
758
817
|
}, "strip", z.ZodTypeAny, {
|
|
759
818
|
messageId: string;
|
|
760
819
|
conversationId: string | null;
|
|
@@ -790,6 +849,8 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
790
849
|
calibrationRatio?: number | undefined;
|
|
791
850
|
encoding?: string | undefined;
|
|
792
851
|
} | undefined;
|
|
852
|
+
manualSkills?: string[] | undefined;
|
|
853
|
+
alwaysAppliedSkills?: string[] | undefined;
|
|
793
854
|
}, {
|
|
794
855
|
messageId: string;
|
|
795
856
|
conversationId: string | null;
|
|
@@ -825,6 +886,8 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
825
886
|
calibrationRatio?: number | undefined;
|
|
826
887
|
encoding?: string | undefined;
|
|
827
888
|
} | undefined;
|
|
889
|
+
manualSkills?: string[] | undefined;
|
|
890
|
+
alwaysAppliedSkills?: string[] | undefined;
|
|
828
891
|
}>;
|
|
829
892
|
export type MemoryArtifact = {
|
|
830
893
|
key: string;
|
|
@@ -992,6 +1055,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
992
1055
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
993
1056
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
994
1057
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
1058
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
995
1059
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
996
1060
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
997
1061
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1080,6 +1144,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1080
1144
|
verbosity?: Verbosity | null | undefined;
|
|
1081
1145
|
useResponsesApi?: boolean | undefined;
|
|
1082
1146
|
effort?: AnthropicEffort | null | undefined;
|
|
1147
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1083
1148
|
web_search?: boolean | undefined;
|
|
1084
1149
|
disableStreaming?: boolean | undefined;
|
|
1085
1150
|
assistant_id?: string | undefined;
|
|
@@ -1164,6 +1229,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1164
1229
|
verbosity?: Verbosity | null | undefined;
|
|
1165
1230
|
useResponsesApi?: boolean | undefined;
|
|
1166
1231
|
effort?: AnthropicEffort | null | undefined;
|
|
1232
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1167
1233
|
web_search?: boolean | undefined;
|
|
1168
1234
|
disableStreaming?: boolean | undefined;
|
|
1169
1235
|
assistant_id?: string | undefined;
|
|
@@ -1306,6 +1372,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1306
1372
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
1307
1373
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
1308
1374
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
1375
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
1309
1376
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1310
1377
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
1311
1378
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1395,6 +1462,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1395
1462
|
verbosity?: Verbosity | null | undefined;
|
|
1396
1463
|
useResponsesApi?: boolean | undefined;
|
|
1397
1464
|
effort?: AnthropicEffort | null | undefined;
|
|
1465
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1398
1466
|
web_search?: boolean | undefined;
|
|
1399
1467
|
disableStreaming?: boolean | undefined;
|
|
1400
1468
|
assistant_id?: string | undefined;
|
|
@@ -1480,6 +1548,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1480
1548
|
verbosity?: Verbosity | null | undefined;
|
|
1481
1549
|
useResponsesApi?: boolean | undefined;
|
|
1482
1550
|
effort?: AnthropicEffort | null | undefined;
|
|
1551
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1483
1552
|
web_search?: boolean | undefined;
|
|
1484
1553
|
disableStreaming?: boolean | undefined;
|
|
1485
1554
|
assistant_id?: string | undefined;
|
|
@@ -1626,6 +1695,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1626
1695
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
1627
1696
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
1628
1697
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
1698
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
1629
1699
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1630
1700
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
1631
1701
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1715,6 +1785,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1715
1785
|
verbosity?: Verbosity | null | undefined;
|
|
1716
1786
|
useResponsesApi?: boolean | undefined;
|
|
1717
1787
|
effort?: AnthropicEffort | null | undefined;
|
|
1788
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1718
1789
|
web_search?: boolean | undefined;
|
|
1719
1790
|
disableStreaming?: boolean | undefined;
|
|
1720
1791
|
assistant_id?: string | undefined;
|
|
@@ -1799,6 +1870,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1799
1870
|
verbosity?: Verbosity | null | undefined;
|
|
1800
1871
|
useResponsesApi?: boolean | undefined;
|
|
1801
1872
|
effort?: AnthropicEffort | null | undefined;
|
|
1873
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1802
1874
|
web_search?: boolean | undefined;
|
|
1803
1875
|
disableStreaming?: boolean | undefined;
|
|
1804
1876
|
assistant_id?: string | undefined;
|
|
@@ -1945,6 +2017,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
1945
2017
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
1946
2018
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
1947
2019
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2020
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
1948
2021
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1949
2022
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
1950
2023
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1967,7 +2040,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
1967
2040
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
1968
2041
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
1969
2042
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1970
|
-
}, "model" | "promptPrefix" | "temperature" | "topP" | "topK" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxOutputTokens" | "maxContextTokens" | "max_tokens" | "promptCache" | "thinking" | "thinkingBudget" | "thinkingLevel" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "verbosity" | "useResponsesApi" | "effort" | "web_search" | "disableStreaming" | "assistant_id" | "agent_id" | "region" | "maxTokens" | "instructions" | "append_current_datetime" | "stop" | "spec" | "fileTokenLimit"> & {
|
|
2043
|
+
}, "model" | "promptPrefix" | "temperature" | "topP" | "topK" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxOutputTokens" | "maxContextTokens" | "max_tokens" | "promptCache" | "thinking" | "thinkingBudget" | "thinkingLevel" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "verbosity" | "useResponsesApi" | "effort" | "thinkingDisplay" | "web_search" | "disableStreaming" | "assistant_id" | "agent_id" | "region" | "maxTokens" | "instructions" | "append_current_datetime" | "stop" | "spec" | "fileTokenLimit"> & {
|
|
1971
2044
|
/** @endpoints openAI, custom, azureOpenAI, google, anthropic, assistants, azureAssistants, bedrock, agents */
|
|
1972
2045
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
1973
2046
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1994,6 +2067,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
1994
2067
|
verbosity?: Verbosity | null | undefined;
|
|
1995
2068
|
useResponsesApi?: boolean | undefined;
|
|
1996
2069
|
effort?: AnthropicEffort | null | undefined;
|
|
2070
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1997
2071
|
web_search?: boolean | undefined;
|
|
1998
2072
|
disableStreaming?: boolean | undefined;
|
|
1999
2073
|
assistant_id?: string | undefined;
|
|
@@ -2029,6 +2103,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2029
2103
|
verbosity?: Verbosity | null | undefined;
|
|
2030
2104
|
useResponsesApi?: boolean | undefined;
|
|
2031
2105
|
effort?: AnthropicEffort | null | undefined;
|
|
2106
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2032
2107
|
web_search?: boolean | undefined;
|
|
2033
2108
|
disableStreaming?: boolean | undefined;
|
|
2034
2109
|
assistant_id?: string | undefined;
|
|
@@ -2041,7 +2116,13 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2041
2116
|
spec?: string | null | undefined;
|
|
2042
2117
|
fileTokenLimit?: string | number | undefined;
|
|
2043
2118
|
}>;
|
|
2044
|
-
/** Narrowed preset schema for use in model specs — omits system/DB/deprecated fields
|
|
2119
|
+
/** Narrowed preset schema for use in model specs — omits system/DB/deprecated fields.
|
|
2120
|
+
*
|
|
2121
|
+
* `greeting` and `iconURL` are admin-configurable display fields on a model spec's
|
|
2122
|
+
* preset (landing greeting, preset-level icon fallback) and must be preserved.
|
|
2123
|
+
* `spec` is set by the client from `modelSpec.name` via `getModelSpecPreset` and is
|
|
2124
|
+
* omitted to avoid duplicate configuration surface.
|
|
2125
|
+
*/
|
|
2045
2126
|
export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
2046
2127
|
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
2047
2128
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2165,6 +2246,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2165
2246
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2166
2247
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2167
2248
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2249
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2168
2250
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2169
2251
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2170
2252
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2190,9 +2272,10 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2190
2272
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
2191
2273
|
order: z.ZodOptional<z.ZodNumber>;
|
|
2192
2274
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
2193
|
-
}, "conversationId" | "parentMessageId" | "title" | "
|
|
2275
|
+
}, "conversationId" | "parentMessageId" | "title" | "user" | "isArchived" | "messages" | "tags" | "file_ids" | "presetOverride" | "spec" | "expiredAt" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
2194
2276
|
endpoint: string | null;
|
|
2195
2277
|
model?: string | null | undefined;
|
|
2278
|
+
iconURL?: string | null | undefined;
|
|
2196
2279
|
context?: string | null | undefined;
|
|
2197
2280
|
endpointType?: EModelEndpoint | null | undefined;
|
|
2198
2281
|
tools?: string[] | {
|
|
@@ -2245,6 +2328,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2245
2328
|
verbosity?: Verbosity | null | undefined;
|
|
2246
2329
|
useResponsesApi?: boolean | undefined;
|
|
2247
2330
|
effort?: AnthropicEffort | null | undefined;
|
|
2331
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2248
2332
|
web_search?: boolean | undefined;
|
|
2249
2333
|
disableStreaming?: boolean | undefined;
|
|
2250
2334
|
assistant_id?: string | undefined;
|
|
@@ -2256,10 +2340,12 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2256
2340
|
additional_instructions?: string | undefined;
|
|
2257
2341
|
append_current_datetime?: boolean | undefined;
|
|
2258
2342
|
stop?: string[] | undefined;
|
|
2343
|
+
greeting?: string | undefined;
|
|
2259
2344
|
fileTokenLimit?: number | undefined;
|
|
2260
2345
|
}, {
|
|
2261
2346
|
endpoint: string | null;
|
|
2262
2347
|
model?: string | null | undefined;
|
|
2348
|
+
iconURL?: string | null | undefined;
|
|
2263
2349
|
context?: string | null | undefined;
|
|
2264
2350
|
endpointType?: EModelEndpoint | null | undefined;
|
|
2265
2351
|
tools?: string[] | {
|
|
@@ -2312,6 +2398,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2312
2398
|
verbosity?: Verbosity | null | undefined;
|
|
2313
2399
|
useResponsesApi?: boolean | undefined;
|
|
2314
2400
|
effort?: AnthropicEffort | null | undefined;
|
|
2401
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2315
2402
|
web_search?: boolean | undefined;
|
|
2316
2403
|
disableStreaming?: boolean | undefined;
|
|
2317
2404
|
assistant_id?: string | undefined;
|
|
@@ -2323,6 +2410,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2323
2410
|
additional_instructions?: string | undefined;
|
|
2324
2411
|
append_current_datetime?: boolean | undefined;
|
|
2325
2412
|
stop?: string[] | undefined;
|
|
2413
|
+
greeting?: string | undefined;
|
|
2326
2414
|
fileTokenLimit?: string | number | undefined;
|
|
2327
2415
|
}>;
|
|
2328
2416
|
export type TModelSpecPreset = z.infer<typeof tModelSpecPresetSchema>;
|
|
@@ -2514,6 +2602,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2514
2602
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2515
2603
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2516
2604
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2605
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2517
2606
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2518
2607
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2519
2608
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2716,6 +2805,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2716
2805
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2717
2806
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2718
2807
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2808
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2719
2809
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2720
2810
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2721
2811
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3002,6 +3092,7 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3002
3092
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3003
3093
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3004
3094
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3095
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3005
3096
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3006
3097
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3007
3098
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3192,6 +3283,7 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3192
3283
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3193
3284
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3194
3285
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3286
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3195
3287
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3196
3288
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3197
3289
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3378,6 +3470,7 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3378
3470
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3379
3471
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3380
3472
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3473
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3381
3474
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3382
3475
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3383
3476
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3558,6 +3651,7 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3558
3651
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3559
3652
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3560
3653
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3654
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3561
3655
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3562
3656
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3563
3657
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3768,6 +3862,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3768
3862
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3769
3863
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3770
3864
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3865
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3771
3866
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3772
3867
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3773
3868
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3968,6 +4063,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3968
4063
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3969
4064
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3970
4065
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4066
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3971
4067
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3972
4068
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3973
4069
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4066,6 +4162,385 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4066
4162
|
fileTokenLimit?: string | number | undefined;
|
|
4067
4163
|
chatGptLabel?: string | null | undefined;
|
|
4068
4164
|
}>>;
|
|
4165
|
+
export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
4166
|
+
conversationId: z.ZodNullable<z.ZodString>;
|
|
4167
|
+
endpoint: z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>;
|
|
4168
|
+
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
4169
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
4170
|
+
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
4171
|
+
user: z.ZodOptional<z.ZodString>;
|
|
4172
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4173
|
+
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4174
|
+
name: z.ZodString;
|
|
4175
|
+
pluginKey: z.ZodString;
|
|
4176
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4177
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
4178
|
+
authConfig: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4179
|
+
authField: z.ZodString;
|
|
4180
|
+
label: z.ZodString;
|
|
4181
|
+
description: z.ZodString;
|
|
4182
|
+
optional: z.ZodOptional<z.ZodBoolean>;
|
|
4183
|
+
}, "strip", z.ZodTypeAny, {
|
|
4184
|
+
description: string;
|
|
4185
|
+
authField: string;
|
|
4186
|
+
label: string;
|
|
4187
|
+
optional?: boolean | undefined;
|
|
4188
|
+
}, {
|
|
4189
|
+
description: string;
|
|
4190
|
+
authField: string;
|
|
4191
|
+
label: string;
|
|
4192
|
+
optional?: boolean | undefined;
|
|
4193
|
+
}>, "many">>;
|
|
4194
|
+
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4195
|
+
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4196
|
+
isButton: z.ZodOptional<z.ZodBoolean>;
|
|
4197
|
+
toolkit: z.ZodOptional<z.ZodBoolean>;
|
|
4198
|
+
}, "strip", z.ZodTypeAny, {
|
|
4199
|
+
name: string;
|
|
4200
|
+
pluginKey: string;
|
|
4201
|
+
description?: string | undefined;
|
|
4202
|
+
icon?: string | undefined;
|
|
4203
|
+
authConfig?: {
|
|
4204
|
+
description: string;
|
|
4205
|
+
authField: string;
|
|
4206
|
+
label: string;
|
|
4207
|
+
optional?: boolean | undefined;
|
|
4208
|
+
}[] | undefined;
|
|
4209
|
+
authenticated?: boolean | undefined;
|
|
4210
|
+
chatMenu?: boolean | undefined;
|
|
4211
|
+
isButton?: boolean | undefined;
|
|
4212
|
+
toolkit?: boolean | undefined;
|
|
4213
|
+
}, {
|
|
4214
|
+
name: string;
|
|
4215
|
+
pluginKey: string;
|
|
4216
|
+
description?: string | undefined;
|
|
4217
|
+
icon?: string | undefined;
|
|
4218
|
+
authConfig?: {
|
|
4219
|
+
description: string;
|
|
4220
|
+
authField: string;
|
|
4221
|
+
label: string;
|
|
4222
|
+
optional?: boolean | undefined;
|
|
4223
|
+
}[] | undefined;
|
|
4224
|
+
authenticated?: boolean | undefined;
|
|
4225
|
+
chatMenu?: boolean | undefined;
|
|
4226
|
+
isButton?: boolean | undefined;
|
|
4227
|
+
toolkit?: boolean | undefined;
|
|
4228
|
+
}>, "many">, z.ZodArray<z.ZodString, "many">]>>;
|
|
4229
|
+
modelLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4230
|
+
userLabel: z.ZodOptional<z.ZodString>;
|
|
4231
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4232
|
+
promptPrefix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4233
|
+
temperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4234
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
4235
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
4236
|
+
top_p: z.ZodOptional<z.ZodNumber>;
|
|
4237
|
+
frequency_penalty: z.ZodOptional<z.ZodNumber>;
|
|
4238
|
+
presence_penalty: z.ZodOptional<z.ZodNumber>;
|
|
4239
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
4240
|
+
maxOutputTokens: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>>;
|
|
4241
|
+
maxContextTokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4242
|
+
max_tokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4243
|
+
promptCache: z.ZodOptional<z.ZodBoolean>;
|
|
4244
|
+
system: z.ZodOptional<z.ZodString>;
|
|
4245
|
+
thinking: z.ZodOptional<z.ZodBoolean>;
|
|
4246
|
+
thinkingBudget: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4247
|
+
thinkingLevel: z.ZodOptional<z.ZodNativeEnum<typeof ThinkingLevel>>;
|
|
4248
|
+
stream: z.ZodOptional<z.ZodBoolean>;
|
|
4249
|
+
artifacts: z.ZodOptional<z.ZodString>;
|
|
4250
|
+
context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4251
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4252
|
+
input: z.ZodObject<{
|
|
4253
|
+
content: z.ZodString;
|
|
4254
|
+
}, "strip", z.ZodTypeAny, {
|
|
4255
|
+
content: string;
|
|
4256
|
+
}, {
|
|
4257
|
+
content: string;
|
|
4258
|
+
}>;
|
|
4259
|
+
output: z.ZodObject<{
|
|
4260
|
+
content: z.ZodString;
|
|
4261
|
+
}, "strip", z.ZodTypeAny, {
|
|
4262
|
+
content: string;
|
|
4263
|
+
}, {
|
|
4264
|
+
content: string;
|
|
4265
|
+
}>;
|
|
4266
|
+
}, "strip", z.ZodTypeAny, {
|
|
4267
|
+
input: {
|
|
4268
|
+
content: string;
|
|
4269
|
+
};
|
|
4270
|
+
output: {
|
|
4271
|
+
content: string;
|
|
4272
|
+
};
|
|
4273
|
+
}, {
|
|
4274
|
+
input: {
|
|
4275
|
+
content: string;
|
|
4276
|
+
};
|
|
4277
|
+
output: {
|
|
4278
|
+
content: string;
|
|
4279
|
+
};
|
|
4280
|
+
}>, "many">>;
|
|
4281
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4282
|
+
createdAt: z.ZodString;
|
|
4283
|
+
updatedAt: z.ZodString;
|
|
4284
|
+
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
4285
|
+
file_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4286
|
+
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4287
|
+
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4288
|
+
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4289
|
+
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4290
|
+
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4291
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4292
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4293
|
+
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4294
|
+
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4295
|
+
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4296
|
+
agent_id: z.ZodOptional<z.ZodString>;
|
|
4297
|
+
region: z.ZodOptional<z.ZodString>;
|
|
4298
|
+
maxTokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4299
|
+
additionalModelRequestFields: z.ZodOptional<z.ZodType<DocumentTypeValue, z.ZodTypeDef, DocumentTypeValue>>;
|
|
4300
|
+
instructions: z.ZodOptional<z.ZodString>;
|
|
4301
|
+
additional_instructions: z.ZodOptional<z.ZodString>;
|
|
4302
|
+
append_current_datetime: z.ZodOptional<z.ZodBoolean>;
|
|
4303
|
+
/** Used to overwrite active conversation settings when saving a Preset */
|
|
4304
|
+
presetOverride: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4305
|
+
stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4306
|
+
greeting: z.ZodOptional<z.ZodString>;
|
|
4307
|
+
spec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4308
|
+
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4309
|
+
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4310
|
+
fileTokenLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4311
|
+
/** @deprecated */
|
|
4312
|
+
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4313
|
+
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4314
|
+
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4315
|
+
}, "model" | "iconURL" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "fileTokenLimit" | "chatGptLabel"> & Pick<{
|
|
4316
|
+
conversationId: z.ZodNullable<z.ZodString>;
|
|
4317
|
+
endpoint: z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>;
|
|
4318
|
+
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
4319
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
4320
|
+
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
4321
|
+
user: z.ZodOptional<z.ZodString>;
|
|
4322
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4323
|
+
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4324
|
+
name: z.ZodString;
|
|
4325
|
+
pluginKey: z.ZodString;
|
|
4326
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4327
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
4328
|
+
authConfig: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4329
|
+
authField: z.ZodString;
|
|
4330
|
+
label: z.ZodString;
|
|
4331
|
+
description: z.ZodString;
|
|
4332
|
+
optional: z.ZodOptional<z.ZodBoolean>;
|
|
4333
|
+
}, "strip", z.ZodTypeAny, {
|
|
4334
|
+
description: string;
|
|
4335
|
+
authField: string;
|
|
4336
|
+
label: string;
|
|
4337
|
+
optional?: boolean | undefined;
|
|
4338
|
+
}, {
|
|
4339
|
+
description: string;
|
|
4340
|
+
authField: string;
|
|
4341
|
+
label: string;
|
|
4342
|
+
optional?: boolean | undefined;
|
|
4343
|
+
}>, "many">>;
|
|
4344
|
+
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4345
|
+
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4346
|
+
isButton: z.ZodOptional<z.ZodBoolean>;
|
|
4347
|
+
toolkit: z.ZodOptional<z.ZodBoolean>;
|
|
4348
|
+
}, "strip", z.ZodTypeAny, {
|
|
4349
|
+
name: string;
|
|
4350
|
+
pluginKey: string;
|
|
4351
|
+
description?: string | undefined;
|
|
4352
|
+
icon?: string | undefined;
|
|
4353
|
+
authConfig?: {
|
|
4354
|
+
description: string;
|
|
4355
|
+
authField: string;
|
|
4356
|
+
label: string;
|
|
4357
|
+
optional?: boolean | undefined;
|
|
4358
|
+
}[] | undefined;
|
|
4359
|
+
authenticated?: boolean | undefined;
|
|
4360
|
+
chatMenu?: boolean | undefined;
|
|
4361
|
+
isButton?: boolean | undefined;
|
|
4362
|
+
toolkit?: boolean | undefined;
|
|
4363
|
+
}, {
|
|
4364
|
+
name: string;
|
|
4365
|
+
pluginKey: string;
|
|
4366
|
+
description?: string | undefined;
|
|
4367
|
+
icon?: string | undefined;
|
|
4368
|
+
authConfig?: {
|
|
4369
|
+
description: string;
|
|
4370
|
+
authField: string;
|
|
4371
|
+
label: string;
|
|
4372
|
+
optional?: boolean | undefined;
|
|
4373
|
+
}[] | undefined;
|
|
4374
|
+
authenticated?: boolean | undefined;
|
|
4375
|
+
chatMenu?: boolean | undefined;
|
|
4376
|
+
isButton?: boolean | undefined;
|
|
4377
|
+
toolkit?: boolean | undefined;
|
|
4378
|
+
}>, "many">, z.ZodArray<z.ZodString, "many">]>>;
|
|
4379
|
+
modelLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4380
|
+
userLabel: z.ZodOptional<z.ZodString>;
|
|
4381
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4382
|
+
promptPrefix: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4383
|
+
temperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4384
|
+
topP: z.ZodOptional<z.ZodNumber>;
|
|
4385
|
+
topK: z.ZodOptional<z.ZodNumber>;
|
|
4386
|
+
top_p: z.ZodOptional<z.ZodNumber>;
|
|
4387
|
+
frequency_penalty: z.ZodOptional<z.ZodNumber>;
|
|
4388
|
+
presence_penalty: z.ZodOptional<z.ZodNumber>;
|
|
4389
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
4390
|
+
maxOutputTokens: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>>;
|
|
4391
|
+
maxContextTokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4392
|
+
max_tokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4393
|
+
promptCache: z.ZodOptional<z.ZodBoolean>;
|
|
4394
|
+
system: z.ZodOptional<z.ZodString>;
|
|
4395
|
+
thinking: z.ZodOptional<z.ZodBoolean>;
|
|
4396
|
+
thinkingBudget: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4397
|
+
thinkingLevel: z.ZodOptional<z.ZodNativeEnum<typeof ThinkingLevel>>;
|
|
4398
|
+
stream: z.ZodOptional<z.ZodBoolean>;
|
|
4399
|
+
artifacts: z.ZodOptional<z.ZodString>;
|
|
4400
|
+
context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4401
|
+
examples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4402
|
+
input: z.ZodObject<{
|
|
4403
|
+
content: z.ZodString;
|
|
4404
|
+
}, "strip", z.ZodTypeAny, {
|
|
4405
|
+
content: string;
|
|
4406
|
+
}, {
|
|
4407
|
+
content: string;
|
|
4408
|
+
}>;
|
|
4409
|
+
output: z.ZodObject<{
|
|
4410
|
+
content: z.ZodString;
|
|
4411
|
+
}, "strip", z.ZodTypeAny, {
|
|
4412
|
+
content: string;
|
|
4413
|
+
}, {
|
|
4414
|
+
content: string;
|
|
4415
|
+
}>;
|
|
4416
|
+
}, "strip", z.ZodTypeAny, {
|
|
4417
|
+
input: {
|
|
4418
|
+
content: string;
|
|
4419
|
+
};
|
|
4420
|
+
output: {
|
|
4421
|
+
content: string;
|
|
4422
|
+
};
|
|
4423
|
+
}, {
|
|
4424
|
+
input: {
|
|
4425
|
+
content: string;
|
|
4426
|
+
};
|
|
4427
|
+
output: {
|
|
4428
|
+
content: string;
|
|
4429
|
+
};
|
|
4430
|
+
}>, "many">>;
|
|
4431
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4432
|
+
createdAt: z.ZodString;
|
|
4433
|
+
updatedAt: z.ZodString;
|
|
4434
|
+
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
4435
|
+
file_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4436
|
+
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4437
|
+
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4438
|
+
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4439
|
+
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4440
|
+
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4441
|
+
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4442
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4443
|
+
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4444
|
+
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4445
|
+
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4446
|
+
agent_id: z.ZodOptional<z.ZodString>;
|
|
4447
|
+
region: z.ZodOptional<z.ZodString>;
|
|
4448
|
+
maxTokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4449
|
+
additionalModelRequestFields: z.ZodOptional<z.ZodType<DocumentTypeValue, z.ZodTypeDef, DocumentTypeValue>>;
|
|
4450
|
+
instructions: z.ZodOptional<z.ZodString>;
|
|
4451
|
+
additional_instructions: z.ZodOptional<z.ZodString>;
|
|
4452
|
+
append_current_datetime: z.ZodOptional<z.ZodBoolean>;
|
|
4453
|
+
/** Used to overwrite active conversation settings when saving a Preset */
|
|
4454
|
+
presetOverride: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4455
|
+
stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4456
|
+
greeting: z.ZodOptional<z.ZodString>;
|
|
4457
|
+
spec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4458
|
+
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4459
|
+
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4460
|
+
fileTokenLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
4461
|
+
/** @deprecated */
|
|
4462
|
+
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4463
|
+
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4464
|
+
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4465
|
+
}, "promptCache">, "strip", z.ZodTypeAny, {
|
|
4466
|
+
model?: string | null | undefined;
|
|
4467
|
+
iconURL?: string | null | undefined;
|
|
4468
|
+
modelLabel?: string | null | undefined;
|
|
4469
|
+
promptPrefix?: string | null | undefined;
|
|
4470
|
+
temperature?: number | null | undefined;
|
|
4471
|
+
top_p?: number | undefined;
|
|
4472
|
+
frequency_penalty?: number | undefined;
|
|
4473
|
+
presence_penalty?: number | undefined;
|
|
4474
|
+
maxContextTokens?: number | undefined;
|
|
4475
|
+
max_tokens?: number | undefined;
|
|
4476
|
+
promptCache?: boolean | undefined;
|
|
4477
|
+
artifacts?: string | undefined;
|
|
4478
|
+
resendFiles?: boolean | undefined;
|
|
4479
|
+
imageDetail?: ImageDetail | undefined;
|
|
4480
|
+
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4481
|
+
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4482
|
+
verbosity?: Verbosity | null | undefined;
|
|
4483
|
+
useResponsesApi?: boolean | undefined;
|
|
4484
|
+
web_search?: boolean | undefined;
|
|
4485
|
+
disableStreaming?: boolean | undefined;
|
|
4486
|
+
stop?: string[] | undefined;
|
|
4487
|
+
greeting?: string | undefined;
|
|
4488
|
+
spec?: string | null | undefined;
|
|
4489
|
+
fileTokenLimit?: number | undefined;
|
|
4490
|
+
chatGptLabel?: string | null | undefined;
|
|
4491
|
+
}, {
|
|
4492
|
+
model?: string | null | undefined;
|
|
4493
|
+
iconURL?: string | null | undefined;
|
|
4494
|
+
modelLabel?: string | null | undefined;
|
|
4495
|
+
promptPrefix?: string | null | undefined;
|
|
4496
|
+
temperature?: number | null | undefined;
|
|
4497
|
+
top_p?: number | undefined;
|
|
4498
|
+
frequency_penalty?: number | undefined;
|
|
4499
|
+
presence_penalty?: number | undefined;
|
|
4500
|
+
maxContextTokens?: string | number | undefined;
|
|
4501
|
+
max_tokens?: string | number | undefined;
|
|
4502
|
+
promptCache?: boolean | undefined;
|
|
4503
|
+
artifacts?: string | undefined;
|
|
4504
|
+
resendFiles?: boolean | undefined;
|
|
4505
|
+
imageDetail?: ImageDetail | undefined;
|
|
4506
|
+
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4507
|
+
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4508
|
+
verbosity?: Verbosity | null | undefined;
|
|
4509
|
+
useResponsesApi?: boolean | undefined;
|
|
4510
|
+
web_search?: boolean | undefined;
|
|
4511
|
+
disableStreaming?: boolean | undefined;
|
|
4512
|
+
stop?: string[] | undefined;
|
|
4513
|
+
greeting?: string | undefined;
|
|
4514
|
+
spec?: string | null | undefined;
|
|
4515
|
+
fileTokenLimit?: string | number | undefined;
|
|
4516
|
+
chatGptLabel?: string | null | undefined;
|
|
4517
|
+
}>, Partial<Partial<TConversation>>, {
|
|
4518
|
+
model?: string | null | undefined;
|
|
4519
|
+
iconURL?: string | null | undefined;
|
|
4520
|
+
modelLabel?: string | null | undefined;
|
|
4521
|
+
promptPrefix?: string | null | undefined;
|
|
4522
|
+
temperature?: number | null | undefined;
|
|
4523
|
+
top_p?: number | undefined;
|
|
4524
|
+
frequency_penalty?: number | undefined;
|
|
4525
|
+
presence_penalty?: number | undefined;
|
|
4526
|
+
maxContextTokens?: string | number | undefined;
|
|
4527
|
+
max_tokens?: string | number | undefined;
|
|
4528
|
+
promptCache?: boolean | undefined;
|
|
4529
|
+
artifacts?: string | undefined;
|
|
4530
|
+
resendFiles?: boolean | undefined;
|
|
4531
|
+
imageDetail?: ImageDetail | undefined;
|
|
4532
|
+
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4533
|
+
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4534
|
+
verbosity?: Verbosity | null | undefined;
|
|
4535
|
+
useResponsesApi?: boolean | undefined;
|
|
4536
|
+
web_search?: boolean | undefined;
|
|
4537
|
+
disableStreaming?: boolean | undefined;
|
|
4538
|
+
stop?: string[] | undefined;
|
|
4539
|
+
greeting?: string | undefined;
|
|
4540
|
+
spec?: string | null | undefined;
|
|
4541
|
+
fileTokenLimit?: string | number | undefined;
|
|
4542
|
+
chatGptLabel?: string | null | undefined;
|
|
4543
|
+
}>>;
|
|
4069
4544
|
export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
4070
4545
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4071
4546
|
endpoint: z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>;
|
|
@@ -4193,6 +4668,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4193
4668
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4194
4669
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4195
4670
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4671
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4196
4672
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4197
4673
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4198
4674
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4421,6 +4897,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4421
4897
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4422
4898
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4423
4899
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4900
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4424
4901
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4425
4902
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4426
4903
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4443,7 +4920,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4443
4920
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4444
4921
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4445
4922
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4446
|
-
}, "model" | "iconURL" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "promptCache" | "thinking" | "thinkingBudget" | "stream" | "artifacts" | "resendFiles" | "effort" | "web_search" | "stop" | "greeting" | "spec" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
4923
|
+
}, "model" | "iconURL" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "promptCache" | "thinking" | "thinkingBudget" | "stream" | "artifacts" | "resendFiles" | "effort" | "thinkingDisplay" | "web_search" | "stop" | "greeting" | "spec" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
4447
4924
|
model?: string | null | undefined;
|
|
4448
4925
|
iconURL?: string | null | undefined;
|
|
4449
4926
|
modelLabel?: string | null | undefined;
|
|
@@ -4460,6 +4937,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4460
4937
|
artifacts?: string | undefined;
|
|
4461
4938
|
resendFiles?: boolean | undefined;
|
|
4462
4939
|
effort?: AnthropicEffort | null | undefined;
|
|
4940
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
4463
4941
|
web_search?: boolean | undefined;
|
|
4464
4942
|
stop?: string[] | undefined;
|
|
4465
4943
|
greeting?: string | undefined;
|
|
@@ -4482,6 +4960,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4482
4960
|
artifacts?: string | undefined;
|
|
4483
4961
|
resendFiles?: boolean | undefined;
|
|
4484
4962
|
effort?: AnthropicEffort | null | undefined;
|
|
4963
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
4485
4964
|
web_search?: boolean | undefined;
|
|
4486
4965
|
stop?: string[] | undefined;
|
|
4487
4966
|
greeting?: string | undefined;
|
|
@@ -4615,6 +5094,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4615
5094
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4616
5095
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4617
5096
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5097
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4618
5098
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4619
5099
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4620
5100
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4637,7 +5117,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4637
5117
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4638
5118
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4639
5119
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4640
|
-
}, "model" | "iconURL" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "promptCache" | "thinking" | "thinkingBudget" | "stream" | "artifacts" | "resendFiles" | "effort" | "web_search" | "stop" | "greeting" | "spec" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
5120
|
+
}, "model" | "iconURL" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "promptCache" | "thinking" | "thinkingBudget" | "stream" | "artifacts" | "resendFiles" | "effort" | "thinkingDisplay" | "web_search" | "stop" | "greeting" | "spec" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
4641
5121
|
model?: string | null | undefined;
|
|
4642
5122
|
iconURL?: string | null | undefined;
|
|
4643
5123
|
modelLabel?: string | null | undefined;
|
|
@@ -4654,6 +5134,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4654
5134
|
artifacts?: string | undefined;
|
|
4655
5135
|
resendFiles?: boolean | undefined;
|
|
4656
5136
|
effort?: AnthropicEffort | null | undefined;
|
|
5137
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
4657
5138
|
web_search?: boolean | undefined;
|
|
4658
5139
|
stop?: string[] | undefined;
|
|
4659
5140
|
greeting?: string | undefined;
|
|
@@ -4676,6 +5157,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4676
5157
|
artifacts?: string | undefined;
|
|
4677
5158
|
resendFiles?: boolean | undefined;
|
|
4678
5159
|
effort?: AnthropicEffort | null | undefined;
|
|
5160
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
4679
5161
|
web_search?: boolean | undefined;
|
|
4680
5162
|
stop?: string[] | undefined;
|
|
4681
5163
|
greeting?: string | undefined;
|
|
@@ -4698,6 +5180,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4698
5180
|
artifacts?: string | undefined;
|
|
4699
5181
|
resendFiles?: boolean | undefined;
|
|
4700
5182
|
effort?: AnthropicEffort | null | undefined;
|
|
5183
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
4701
5184
|
web_search?: boolean | undefined;
|
|
4702
5185
|
stop?: string[] | undefined;
|
|
4703
5186
|
greeting?: string | undefined;
|
|
@@ -4720,6 +5203,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4720
5203
|
artifacts?: string | undefined;
|
|
4721
5204
|
resendFiles?: boolean | undefined;
|
|
4722
5205
|
effort?: AnthropicEffort | null | undefined;
|
|
5206
|
+
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
4723
5207
|
web_search?: boolean | undefined;
|
|
4724
5208
|
stop?: string[] | undefined;
|
|
4725
5209
|
greeting?: string | undefined;
|
|
@@ -4882,6 +5366,7 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
4882
5366
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4883
5367
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4884
5368
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5369
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4885
5370
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4886
5371
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4887
5372
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5046,6 +5531,7 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5046
5531
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
5047
5532
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
5048
5533
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5534
|
+
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
5049
5535
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
5050
5536
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
5051
5537
|
assistant_id: z.ZodOptional<z.ZodString>;
|