librechat-data-provider 0.8.508 → 0.8.521
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/{data-service-DN-HeTC-.js → data-service-DOIF4BkW.js} +1211 -92
- package/dist/data-service-DOIF4BkW.js.map +1 -0
- package/dist/{data-service-DgNwjhBS.mjs → data-service-pwrlWjJs.mjs} +1062 -93
- package/dist/data-service-pwrlWjJs.mjs.map +1 -0
- package/dist/index.js +472 -57
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +440 -58
- package/dist/index.mjs.map +1 -1
- package/dist/react-query/index.js +1 -1
- package/dist/react-query/index.js.map +1 -1
- package/dist/react-query/index.mjs +1 -1
- package/dist/react-query/index.mjs.map +1 -1
- package/dist/types/actions.d.ts +1 -1
- package/dist/types/api-endpoints.d.ts +11 -2
- package/dist/types/bedrock.d.ts +57 -0
- package/dist/types/config.d.ts +4230 -183
- package/dist/types/data-service.d.ts +28 -14
- package/dist/types/feedback.d.ts +9 -1
- package/dist/types/file-config.d.ts +41 -5
- package/dist/types/generate.d.ts +8 -0
- package/dist/types/keys.d.ts +7 -2
- package/dist/types/mcp.d.ts +45 -24
- package/dist/types/messages.d.ts +8 -0
- package/dist/types/models.d.ts +120 -0
- package/dist/types/parameterSettings.d.ts +2 -2
- package/dist/types/parsers.d.ts +3 -1
- package/dist/types/react-query/react-query-service.d.ts +2 -7
- package/dist/types/request.d.ts +3 -1
- package/dist/types/schemas.d.ts +211 -11
- package/dist/types/types/agents.d.ts +211 -1
- package/dist/types/types/assistants.d.ts +77 -5
- package/dist/types/types/files.d.ts +18 -7
- package/dist/types/types/mcpServers.d.ts +25 -0
- package/dist/types/types/mutations.d.ts +1 -0
- package/dist/types/types/queries.d.ts +17 -3
- package/dist/types/types/runs.d.ts +114 -25
- package/dist/types/types/skills.d.ts +25 -6
- package/dist/types/types.d.ts +117 -2
- package/dist/types/upload.d.ts +2 -0
- package/package.json +4 -4
- package/dist/data-service-DN-HeTC-.js.map +0 -1
- package/dist/data-service-DgNwjhBS.mjs.map +0 -1
package/dist/types/schemas.d.ts
CHANGED
|
@@ -90,7 +90,8 @@ export declare enum ReasoningEffort {
|
|
|
90
90
|
low = "low",
|
|
91
91
|
medium = "medium",
|
|
92
92
|
high = "high",
|
|
93
|
-
xhigh = "xhigh"
|
|
93
|
+
xhigh = "xhigh",
|
|
94
|
+
max = "max"
|
|
94
95
|
}
|
|
95
96
|
export declare enum ReasoningParameterFormat {
|
|
96
97
|
disabled = "disabled",
|
|
@@ -153,6 +154,19 @@ export declare enum ThinkingLevel {
|
|
|
153
154
|
medium = "medium",
|
|
154
155
|
high = "high"
|
|
155
156
|
}
|
|
157
|
+
/** OpenAI Responses API `reasoning.mode` (GPT-5.6+). */
|
|
158
|
+
export declare enum ReasoningMode {
|
|
159
|
+
unset = "",
|
|
160
|
+
standard = "standard",
|
|
161
|
+
pro = "pro"
|
|
162
|
+
}
|
|
163
|
+
/** OpenAI Responses API `reasoning.context` (GPT-5.6+). */
|
|
164
|
+
export declare enum ReasoningContext {
|
|
165
|
+
unset = "",
|
|
166
|
+
auto = "auto",
|
|
167
|
+
current_turn = "current_turn",
|
|
168
|
+
all_turns = "all_turns"
|
|
169
|
+
}
|
|
156
170
|
export declare const imageDetailNumeric: {
|
|
157
171
|
low: number;
|
|
158
172
|
auto: number;
|
|
@@ -172,6 +186,8 @@ export declare const eThinkingDisplaySchema: z.ZodNativeEnum<typeof ThinkingDisp
|
|
|
172
186
|
export declare const eReasoningSummarySchema: z.ZodNativeEnum<typeof ReasoningSummary>;
|
|
173
187
|
export declare const eVerbositySchema: z.ZodNativeEnum<typeof Verbosity>;
|
|
174
188
|
export declare const eThinkingLevelSchema: z.ZodNativeEnum<typeof ThinkingLevel>;
|
|
189
|
+
export declare const eReasoningModeSchema: z.ZodNativeEnum<typeof ReasoningMode>;
|
|
190
|
+
export declare const eReasoningContextSchema: z.ZodNativeEnum<typeof ReasoningContext>;
|
|
175
191
|
export declare const defaultAssistantFormValues: {
|
|
176
192
|
assistant: string;
|
|
177
193
|
id: string;
|
|
@@ -203,6 +219,7 @@ export declare const defaultAgentFormValues: {
|
|
|
203
219
|
execute_code: boolean;
|
|
204
220
|
file_search: boolean;
|
|
205
221
|
web_search: boolean;
|
|
222
|
+
memory: boolean;
|
|
206
223
|
category: string;
|
|
207
224
|
support_contact: {
|
|
208
225
|
name: string;
|
|
@@ -220,6 +237,8 @@ export declare const defaultAgentFormValues: {
|
|
|
220
237
|
allowSelf?: boolean;
|
|
221
238
|
agent_ids?: string[];
|
|
222
239
|
} | undefined;
|
|
240
|
+
/** Memory partition: 'agent' isolates memories per (user, agent); default shared pool */
|
|
241
|
+
memory_scope: MemoryScope | undefined;
|
|
223
242
|
};
|
|
224
243
|
export declare const ImageVisionTool: FunctionTool;
|
|
225
244
|
export declare const isImageVisionTool: (tool: FunctionTool | FunctionToolCall) => boolean;
|
|
@@ -833,7 +852,7 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
833
852
|
finish_reason: z.ZodOptional<z.ZodString>;
|
|
834
853
|
thread_id: z.ZodOptional<z.ZodString>;
|
|
835
854
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
836
|
-
feedback: z.ZodOptional<z.ZodObject<{
|
|
855
|
+
feedback: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
837
856
|
rating: z.ZodEnum<["thumbsUp", "thumbsDown"]>;
|
|
838
857
|
tag: z.ZodEnum<["not_matched", "inaccurate", "bad_style", "missing_image", "unjustified_refusal", "not_helpful", "other", "accurate_reliable", "creative_solution", "clear_well_written", "attention_to_detail"]>;
|
|
839
858
|
text: z.ZodOptional<z.ZodString>;
|
|
@@ -845,6 +864,14 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
845
864
|
rating: "thumbsUp" | "thumbsDown";
|
|
846
865
|
tag: "not_matched" | "inaccurate" | "bad_style" | "missing_image" | "unjustified_refusal" | "not_helpful" | "other" | "accurate_reliable" | "creative_solution" | "clear_well_written" | "attention_to_detail";
|
|
847
866
|
text?: string | undefined;
|
|
867
|
+
}>, {
|
|
868
|
+
rating: "thumbsUp" | "thumbsDown";
|
|
869
|
+
tag: "not_matched" | "inaccurate" | "bad_style" | "missing_image" | "unjustified_refusal" | "not_helpful" | "other" | "accurate_reliable" | "creative_solution" | "clear_well_written" | "attention_to_detail";
|
|
870
|
+
text?: string | undefined;
|
|
871
|
+
}, {
|
|
872
|
+
rating: "thumbsUp" | "thumbsDown";
|
|
873
|
+
tag: "not_matched" | "inaccurate" | "bad_style" | "missing_image" | "unjustified_refusal" | "not_helpful" | "other" | "accurate_reliable" | "creative_solution" | "clear_well_written" | "attention_to_detail";
|
|
874
|
+
text?: string | undefined;
|
|
848
875
|
}>>;
|
|
849
876
|
/** metadata */
|
|
850
877
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -899,13 +926,13 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
899
926
|
iconURL?: string | null | undefined;
|
|
900
927
|
expiredAt?: string | null | undefined;
|
|
901
928
|
isTemporary?: boolean | undefined;
|
|
902
|
-
error?: boolean | undefined;
|
|
903
929
|
clientId?: string | null | undefined;
|
|
904
930
|
responseMessageId?: string | null | undefined;
|
|
905
931
|
overrideParentMessageId?: string | null | undefined;
|
|
906
932
|
bg?: string | null | undefined;
|
|
907
933
|
sender?: string | undefined;
|
|
908
934
|
generation?: string | null | undefined;
|
|
935
|
+
error?: boolean | undefined;
|
|
909
936
|
clientTimestamp?: string | undefined;
|
|
910
937
|
current?: boolean | undefined;
|
|
911
938
|
unfinished?: boolean | undefined;
|
|
@@ -940,13 +967,13 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
940
967
|
iconURL?: string | null | undefined;
|
|
941
968
|
expiredAt?: string | null | undefined;
|
|
942
969
|
isTemporary?: boolean | undefined;
|
|
943
|
-
error?: boolean | undefined;
|
|
944
970
|
clientId?: string | null | undefined;
|
|
945
971
|
responseMessageId?: string | null | undefined;
|
|
946
972
|
overrideParentMessageId?: string | null | undefined;
|
|
947
973
|
bg?: string | null | undefined;
|
|
948
974
|
sender?: string | undefined;
|
|
949
975
|
generation?: string | null | undefined;
|
|
976
|
+
error?: boolean | undefined;
|
|
950
977
|
clientTimestamp?: string | undefined;
|
|
951
978
|
current?: boolean | undefined;
|
|
952
979
|
unfinished?: boolean | undefined;
|
|
@@ -968,11 +995,22 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
968
995
|
alwaysAppliedSkills?: string[] | undefined;
|
|
969
996
|
quotes?: string[] | undefined;
|
|
970
997
|
}>;
|
|
998
|
+
/**
|
|
999
|
+
* Which memory partition an agent reads/writes.
|
|
1000
|
+
* `user` = the shared personal pool (default); `agent` = a partition
|
|
1001
|
+
* isolated per (user, agent) so the agent only sees its own memories.
|
|
1002
|
+
*/
|
|
1003
|
+
export declare enum MemoryScope {
|
|
1004
|
+
user = "user",
|
|
1005
|
+
agent = "agent"
|
|
1006
|
+
}
|
|
971
1007
|
export type MemoryArtifact = {
|
|
972
1008
|
key: string;
|
|
973
1009
|
value?: string;
|
|
974
1010
|
tokenCount?: number;
|
|
975
1011
|
type: 'update' | 'delete' | 'error';
|
|
1012
|
+
/** Agent partition the write targeted; absent = shared personal pool */
|
|
1013
|
+
agentId?: string;
|
|
976
1014
|
};
|
|
977
1015
|
export type UIResource = {
|
|
978
1016
|
resourceId: string;
|
|
@@ -1013,6 +1051,8 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1013
1051
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
1014
1052
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
1015
1053
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
1054
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
1055
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
1016
1056
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
1017
1057
|
user: z.ZodOptional<z.ZodString>;
|
|
1018
1058
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1140,11 +1180,14 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1140
1180
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
1141
1181
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
1142
1182
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
1183
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
1184
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
1143
1185
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
1144
1186
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
1145
1187
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
1146
1188
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
1147
1189
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1190
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
1148
1191
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
1149
1192
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
1150
1193
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1179,6 +1222,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1179
1222
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1180
1223
|
isArchived?: boolean | undefined;
|
|
1181
1224
|
pinned?: boolean | undefined;
|
|
1225
|
+
isShared?: boolean | undefined;
|
|
1182
1226
|
messages?: string[] | undefined;
|
|
1183
1227
|
tools?: string[] | {
|
|
1184
1228
|
name: string;
|
|
@@ -1233,11 +1277,14 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1233
1277
|
imageDetail?: ImageDetail | undefined;
|
|
1234
1278
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
1235
1279
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
1280
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
1281
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
1236
1282
|
verbosity?: Verbosity | null | undefined;
|
|
1237
1283
|
useResponsesApi?: boolean | undefined;
|
|
1238
1284
|
effort?: AnthropicEffort | null | undefined;
|
|
1239
1285
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1240
1286
|
web_search?: boolean | undefined;
|
|
1287
|
+
url_context?: boolean | undefined;
|
|
1241
1288
|
disableStreaming?: boolean | undefined;
|
|
1242
1289
|
assistant_id?: string | undefined;
|
|
1243
1290
|
agent_id?: string | undefined;
|
|
@@ -1268,6 +1315,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1268
1315
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1269
1316
|
isArchived?: boolean | undefined;
|
|
1270
1317
|
pinned?: boolean | undefined;
|
|
1318
|
+
isShared?: boolean | undefined;
|
|
1271
1319
|
title?: string | null | undefined;
|
|
1272
1320
|
messages?: string[] | undefined;
|
|
1273
1321
|
tools?: string[] | {
|
|
@@ -1323,11 +1371,14 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1323
1371
|
imageDetail?: ImageDetail | undefined;
|
|
1324
1372
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
1325
1373
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
1374
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
1375
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
1326
1376
|
verbosity?: Verbosity | null | undefined;
|
|
1327
1377
|
useResponsesApi?: boolean | undefined;
|
|
1328
1378
|
effort?: AnthropicEffort | null | undefined;
|
|
1329
1379
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1330
1380
|
web_search?: boolean | undefined;
|
|
1381
|
+
url_context?: boolean | undefined;
|
|
1331
1382
|
disableStreaming?: boolean | undefined;
|
|
1332
1383
|
assistant_id?: string | undefined;
|
|
1333
1384
|
agent_id?: string | undefined;
|
|
@@ -1355,6 +1406,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1355
1406
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
1356
1407
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
1357
1408
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
1409
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
1358
1410
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1359
1411
|
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
1360
1412
|
name: z.ZodString;
|
|
@@ -1475,11 +1527,14 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1475
1527
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
1476
1528
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
1477
1529
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
1530
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
1531
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
1478
1532
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
1479
1533
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
1480
1534
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
1481
1535
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
1482
1536
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1537
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
1483
1538
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
1484
1539
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
1485
1540
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1515,6 +1570,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1515
1570
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1516
1571
|
isArchived?: boolean | undefined;
|
|
1517
1572
|
pinned?: boolean | undefined;
|
|
1573
|
+
isShared?: boolean | undefined;
|
|
1518
1574
|
title?: string | null | undefined;
|
|
1519
1575
|
messages?: string[] | undefined;
|
|
1520
1576
|
tools?: string[] | {
|
|
@@ -1569,11 +1625,14 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1569
1625
|
imageDetail?: ImageDetail | undefined;
|
|
1570
1626
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
1571
1627
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
1628
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
1629
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
1572
1630
|
verbosity?: Verbosity | null | undefined;
|
|
1573
1631
|
useResponsesApi?: boolean | undefined;
|
|
1574
1632
|
effort?: AnthropicEffort | null | undefined;
|
|
1575
1633
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1576
1634
|
web_search?: boolean | undefined;
|
|
1635
|
+
url_context?: boolean | undefined;
|
|
1577
1636
|
disableStreaming?: boolean | undefined;
|
|
1578
1637
|
assistant_id?: string | undefined;
|
|
1579
1638
|
agent_id?: string | undefined;
|
|
@@ -1605,6 +1664,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1605
1664
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1606
1665
|
isArchived?: boolean | undefined;
|
|
1607
1666
|
pinned?: boolean | undefined;
|
|
1667
|
+
isShared?: boolean | undefined;
|
|
1608
1668
|
title?: string | null | undefined;
|
|
1609
1669
|
messages?: string[] | undefined;
|
|
1610
1670
|
tools?: string[] | {
|
|
@@ -1659,11 +1719,14 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1659
1719
|
imageDetail?: ImageDetail | undefined;
|
|
1660
1720
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
1661
1721
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
1722
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
1723
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
1662
1724
|
verbosity?: Verbosity | null | undefined;
|
|
1663
1725
|
useResponsesApi?: boolean | undefined;
|
|
1664
1726
|
effort?: AnthropicEffort | null | undefined;
|
|
1665
1727
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1666
1728
|
web_search?: boolean | undefined;
|
|
1729
|
+
url_context?: boolean | undefined;
|
|
1667
1730
|
disableStreaming?: boolean | undefined;
|
|
1668
1731
|
assistant_id?: string | undefined;
|
|
1669
1732
|
agent_id?: string | undefined;
|
|
@@ -1692,6 +1755,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1692
1755
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
1693
1756
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
1694
1757
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
1758
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
1695
1759
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
1696
1760
|
user: z.ZodOptional<z.ZodString>;
|
|
1697
1761
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1817,11 +1881,14 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1817
1881
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
1818
1882
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
1819
1883
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
1884
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
1885
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
1820
1886
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
1821
1887
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
1822
1888
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
1823
1889
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
1824
1890
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
1891
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
1825
1892
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
1826
1893
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
1827
1894
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -1855,6 +1922,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1855
1922
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1856
1923
|
isArchived?: boolean | undefined;
|
|
1857
1924
|
pinned?: boolean | undefined;
|
|
1925
|
+
isShared?: boolean | undefined;
|
|
1858
1926
|
messages?: string[] | undefined;
|
|
1859
1927
|
tools?: string[] | {
|
|
1860
1928
|
name: string;
|
|
@@ -1911,11 +1979,14 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1911
1979
|
imageDetail?: ImageDetail | undefined;
|
|
1912
1980
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
1913
1981
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
1982
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
1983
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
1914
1984
|
verbosity?: Verbosity | null | undefined;
|
|
1915
1985
|
useResponsesApi?: boolean | undefined;
|
|
1916
1986
|
effort?: AnthropicEffort | null | undefined;
|
|
1917
1987
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
1918
1988
|
web_search?: boolean | undefined;
|
|
1989
|
+
url_context?: boolean | undefined;
|
|
1919
1990
|
disableStreaming?: boolean | undefined;
|
|
1920
1991
|
assistant_id?: string | undefined;
|
|
1921
1992
|
agent_id?: string | undefined;
|
|
@@ -1944,6 +2015,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1944
2015
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1945
2016
|
isArchived?: boolean | undefined;
|
|
1946
2017
|
pinned?: boolean | undefined;
|
|
2018
|
+
isShared?: boolean | undefined;
|
|
1947
2019
|
title?: string | null | undefined;
|
|
1948
2020
|
messages?: string[] | undefined;
|
|
1949
2021
|
tools?: string[] | {
|
|
@@ -2001,11 +2073,14 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
2001
2073
|
imageDetail?: ImageDetail | undefined;
|
|
2002
2074
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
2003
2075
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
2076
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
2077
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
2004
2078
|
verbosity?: Verbosity | null | undefined;
|
|
2005
2079
|
useResponsesApi?: boolean | undefined;
|
|
2006
2080
|
effort?: AnthropicEffort | null | undefined;
|
|
2007
2081
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2008
2082
|
web_search?: boolean | undefined;
|
|
2083
|
+
url_context?: boolean | undefined;
|
|
2009
2084
|
disableStreaming?: boolean | undefined;
|
|
2010
2085
|
assistant_id?: string | undefined;
|
|
2011
2086
|
agent_id?: string | undefined;
|
|
@@ -2032,6 +2107,8 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2032
2107
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
2033
2108
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
2034
2109
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
2110
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
2111
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
2035
2112
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
2036
2113
|
user: z.ZodOptional<z.ZodString>;
|
|
2037
2114
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2159,11 +2236,14 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2159
2236
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
2160
2237
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
2161
2238
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
2239
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
2240
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
2162
2241
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2163
2242
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2164
2243
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2165
2244
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2166
2245
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2246
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
2167
2247
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2168
2248
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
2169
2249
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2186,7 +2266,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2186
2266
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
2187
2267
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
2188
2268
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2189
|
-
}, "model" | "promptPrefix" | "temperature" | "topP" | "topK" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxOutputTokens" | "maxContextTokens" | "max_tokens" | "promptCache" | "promptCacheTtl" | "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"> & {
|
|
2269
|
+
}, "model" | "promptPrefix" | "temperature" | "topP" | "topK" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxOutputTokens" | "maxContextTokens" | "max_tokens" | "promptCache" | "promptCacheTtl" | "thinking" | "thinkingBudget" | "thinkingLevel" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "reasoning_mode" | "reasoning_context" | "verbosity" | "useResponsesApi" | "effort" | "thinkingDisplay" | "web_search" | "url_context" | "disableStreaming" | "assistant_id" | "agent_id" | "region" | "maxTokens" | "instructions" | "append_current_datetime" | "stop" | "spec" | "fileTokenLimit"> & {
|
|
2190
2270
|
/** @endpoints openAI, custom, azureOpenAI, google, anthropic, assistants, azureAssistants, bedrock, agents */
|
|
2191
2271
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
2192
2272
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2211,11 +2291,14 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2211
2291
|
imageDetail?: ImageDetail | undefined;
|
|
2212
2292
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
2213
2293
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
2294
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
2295
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
2214
2296
|
verbosity?: Verbosity | null | undefined;
|
|
2215
2297
|
useResponsesApi?: boolean | undefined;
|
|
2216
2298
|
effort?: AnthropicEffort | null | undefined;
|
|
2217
2299
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2218
2300
|
web_search?: boolean | undefined;
|
|
2301
|
+
url_context?: boolean | undefined;
|
|
2219
2302
|
disableStreaming?: boolean | undefined;
|
|
2220
2303
|
assistant_id?: string | undefined;
|
|
2221
2304
|
agent_id?: string | undefined;
|
|
@@ -2248,11 +2331,14 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2248
2331
|
imageDetail?: ImageDetail | undefined;
|
|
2249
2332
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
2250
2333
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
2334
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
2335
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
2251
2336
|
verbosity?: Verbosity | null | undefined;
|
|
2252
2337
|
useResponsesApi?: boolean | undefined;
|
|
2253
2338
|
effort?: AnthropicEffort | null | undefined;
|
|
2254
2339
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2255
2340
|
web_search?: boolean | undefined;
|
|
2341
|
+
url_context?: boolean | undefined;
|
|
2256
2342
|
disableStreaming?: boolean | undefined;
|
|
2257
2343
|
assistant_id?: string | undefined;
|
|
2258
2344
|
agent_id?: string | undefined;
|
|
@@ -2278,6 +2364,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2278
2364
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
2279
2365
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
2280
2366
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
2367
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
2281
2368
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2282
2369
|
tools: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
2283
2370
|
name: z.ZodString;
|
|
@@ -2398,11 +2485,14 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2398
2485
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
2399
2486
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
2400
2487
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
2488
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
2489
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
2401
2490
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2402
2491
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2403
2492
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2404
2493
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2405
2494
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2495
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
2406
2496
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2407
2497
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
2408
2498
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2434,6 +2524,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2434
2524
|
model?: string | null | undefined;
|
|
2435
2525
|
endpointType?: EModelEndpoint | null | undefined;
|
|
2436
2526
|
pinned?: boolean | undefined;
|
|
2527
|
+
isShared?: boolean | undefined;
|
|
2437
2528
|
tools?: string[] | {
|
|
2438
2529
|
name: string;
|
|
2439
2530
|
pluginKey: string;
|
|
@@ -2484,11 +2575,14 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2484
2575
|
imageDetail?: ImageDetail | undefined;
|
|
2485
2576
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
2486
2577
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
2578
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
2579
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
2487
2580
|
verbosity?: Verbosity | null | undefined;
|
|
2488
2581
|
useResponsesApi?: boolean | undefined;
|
|
2489
2582
|
effort?: AnthropicEffort | null | undefined;
|
|
2490
2583
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2491
2584
|
web_search?: boolean | undefined;
|
|
2585
|
+
url_context?: boolean | undefined;
|
|
2492
2586
|
disableStreaming?: boolean | undefined;
|
|
2493
2587
|
assistant_id?: string | undefined;
|
|
2494
2588
|
agent_id?: string | undefined;
|
|
@@ -2508,6 +2602,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2508
2602
|
model?: string | null | undefined;
|
|
2509
2603
|
endpointType?: EModelEndpoint | null | undefined;
|
|
2510
2604
|
pinned?: boolean | undefined;
|
|
2605
|
+
isShared?: boolean | undefined;
|
|
2511
2606
|
tools?: string[] | {
|
|
2512
2607
|
name: string;
|
|
2513
2608
|
pluginKey: string;
|
|
@@ -2558,11 +2653,14 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2558
2653
|
imageDetail?: ImageDetail | undefined;
|
|
2559
2654
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
2560
2655
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
2656
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
2657
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
2561
2658
|
verbosity?: Verbosity | null | undefined;
|
|
2562
2659
|
useResponsesApi?: boolean | undefined;
|
|
2563
2660
|
effort?: AnthropicEffort | null | undefined;
|
|
2564
2661
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
2565
2662
|
web_search?: boolean | undefined;
|
|
2663
|
+
url_context?: boolean | undefined;
|
|
2566
2664
|
disableStreaming?: boolean | undefined;
|
|
2567
2665
|
assistant_id?: string | undefined;
|
|
2568
2666
|
agent_id?: string | undefined;
|
|
@@ -2646,6 +2744,8 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2646
2744
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
2647
2745
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
2648
2746
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
2747
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
2748
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
2649
2749
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
2650
2750
|
user: z.ZodOptional<z.ZodString>;
|
|
2651
2751
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2773,11 +2873,14 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2773
2873
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
2774
2874
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
2775
2875
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
2876
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
2877
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
2776
2878
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2777
2879
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2778
2880
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2779
2881
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2780
2882
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
2883
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
2781
2884
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2782
2885
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
2783
2886
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -2800,7 +2903,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2800
2903
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
2801
2904
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
2802
2905
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2803
|
-
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
2906
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "url_context" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
2804
2907
|
model?: string | null | undefined;
|
|
2805
2908
|
modelLabel?: string | null | undefined;
|
|
2806
2909
|
promptPrefix?: string | null | undefined;
|
|
@@ -2823,6 +2926,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2823
2926
|
}[] | undefined;
|
|
2824
2927
|
chatProjectId?: string | null | undefined;
|
|
2825
2928
|
web_search?: boolean | undefined;
|
|
2929
|
+
url_context?: boolean | undefined;
|
|
2826
2930
|
greeting?: string | undefined;
|
|
2827
2931
|
spec?: string | null | undefined;
|
|
2828
2932
|
iconURL?: string | null | undefined;
|
|
@@ -2850,6 +2954,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2850
2954
|
}[] | undefined;
|
|
2851
2955
|
chatProjectId?: string | null | undefined;
|
|
2852
2956
|
web_search?: boolean | undefined;
|
|
2957
|
+
url_context?: boolean | undefined;
|
|
2853
2958
|
greeting?: string | undefined;
|
|
2854
2959
|
spec?: string | null | undefined;
|
|
2855
2960
|
iconURL?: string | null | undefined;
|
|
@@ -2861,6 +2966,8 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2861
2966
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
2862
2967
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
2863
2968
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
2969
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
2970
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
2864
2971
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
2865
2972
|
user: z.ZodOptional<z.ZodString>;
|
|
2866
2973
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2988,11 +3095,14 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2988
3095
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
2989
3096
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
2990
3097
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
3098
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
3099
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
2991
3100
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
2992
3101
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
2993
3102
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
2994
3103
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
2995
3104
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3105
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
2996
3106
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
2997
3107
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
2998
3108
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3015,7 +3125,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3015
3125
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
3016
3126
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
3017
3127
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3018
|
-
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
3128
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "url_context" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
3019
3129
|
model?: string | null | undefined;
|
|
3020
3130
|
modelLabel?: string | null | undefined;
|
|
3021
3131
|
promptPrefix?: string | null | undefined;
|
|
@@ -3038,6 +3148,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3038
3148
|
}[] | undefined;
|
|
3039
3149
|
chatProjectId?: string | null | undefined;
|
|
3040
3150
|
web_search?: boolean | undefined;
|
|
3151
|
+
url_context?: boolean | undefined;
|
|
3041
3152
|
greeting?: string | undefined;
|
|
3042
3153
|
spec?: string | null | undefined;
|
|
3043
3154
|
iconURL?: string | null | undefined;
|
|
@@ -3065,6 +3176,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3065
3176
|
}[] | undefined;
|
|
3066
3177
|
chatProjectId?: string | null | undefined;
|
|
3067
3178
|
web_search?: boolean | undefined;
|
|
3179
|
+
url_context?: boolean | undefined;
|
|
3068
3180
|
greeting?: string | undefined;
|
|
3069
3181
|
spec?: string | null | undefined;
|
|
3070
3182
|
iconURL?: string | null | undefined;
|
|
@@ -3092,6 +3204,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3092
3204
|
}[] | undefined;
|
|
3093
3205
|
chatProjectId?: string | null | undefined;
|
|
3094
3206
|
web_search?: boolean | undefined;
|
|
3207
|
+
url_context?: boolean | undefined;
|
|
3095
3208
|
greeting?: string | undefined;
|
|
3096
3209
|
spec?: string | null | undefined;
|
|
3097
3210
|
iconURL?: string | null | undefined;
|
|
@@ -3125,12 +3238,14 @@ export declare const googleGenConfigSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3125
3238
|
includeThoughts?: boolean | undefined;
|
|
3126
3239
|
}>>;
|
|
3127
3240
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3241
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
3128
3242
|
}, "strip", z.ZodTypeAny, {
|
|
3129
3243
|
temperature?: number | undefined;
|
|
3130
3244
|
topP?: number | undefined;
|
|
3131
3245
|
topK?: number | undefined;
|
|
3132
3246
|
maxOutputTokens?: number | undefined;
|
|
3133
3247
|
web_search?: boolean | undefined;
|
|
3248
|
+
url_context?: boolean | undefined;
|
|
3134
3249
|
presencePenalty?: number | undefined;
|
|
3135
3250
|
frequencyPenalty?: number | undefined;
|
|
3136
3251
|
stopSequences?: string[] | undefined;
|
|
@@ -3145,6 +3260,7 @@ export declare const googleGenConfigSchema: z.ZodOptional<z.ZodObject<{
|
|
|
3145
3260
|
topK?: string | number | undefined;
|
|
3146
3261
|
maxOutputTokens?: string | number | undefined;
|
|
3147
3262
|
web_search?: boolean | undefined;
|
|
3263
|
+
url_context?: boolean | undefined;
|
|
3148
3264
|
presencePenalty?: string | number | undefined;
|
|
3149
3265
|
frequencyPenalty?: string | number | undefined;
|
|
3150
3266
|
stopSequences?: string[] | undefined;
|
|
@@ -3161,6 +3277,8 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3161
3277
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
3162
3278
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
3163
3279
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
3280
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
3281
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
3164
3282
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
3165
3283
|
user: z.ZodOptional<z.ZodString>;
|
|
3166
3284
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3288,11 +3406,14 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3288
3406
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
3289
3407
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
3290
3408
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
3409
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
3410
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
3291
3411
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3292
3412
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3293
3413
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3294
3414
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3295
3415
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3416
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
3296
3417
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3297
3418
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
3298
3419
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3366,6 +3487,8 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3366
3487
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
3367
3488
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
3368
3489
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
3490
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
3491
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
3369
3492
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
3370
3493
|
user: z.ZodOptional<z.ZodString>;
|
|
3371
3494
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3493,11 +3616,14 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3493
3616
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
3494
3617
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
3495
3618
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
3619
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
3620
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
3496
3621
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3497
3622
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3498
3623
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3499
3624
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3500
3625
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3626
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
3501
3627
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3502
3628
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
3503
3629
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3567,6 +3693,8 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3567
3693
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
3568
3694
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
3569
3695
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
3696
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
3697
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
3570
3698
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
3571
3699
|
user: z.ZodOptional<z.ZodString>;
|
|
3572
3700
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3694,11 +3822,14 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3694
3822
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
3695
3823
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
3696
3824
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
3825
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
3826
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
3697
3827
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3698
3828
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3699
3829
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3700
3830
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3701
3831
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
3832
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
3702
3833
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3703
3834
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
3704
3835
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3760,6 +3891,8 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3760
3891
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
3761
3892
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
3762
3893
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
3894
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
3895
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
3763
3896
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
3764
3897
|
user: z.ZodOptional<z.ZodString>;
|
|
3765
3898
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3887,11 +4020,14 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3887
4020
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
3888
4021
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
3889
4022
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4023
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
4024
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
3890
4025
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
3891
4026
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
3892
4027
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
3893
4028
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
3894
4029
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4030
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
3895
4031
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
3896
4032
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
3897
4033
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -3985,6 +4121,8 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3985
4121
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
3986
4122
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
3987
4123
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
4124
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
4125
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
3988
4126
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
3989
4127
|
user: z.ZodOptional<z.ZodString>;
|
|
3990
4128
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4112,11 +4250,14 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
4112
4250
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4113
4251
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4114
4252
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4253
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
4254
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
4115
4255
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4116
4256
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4117
4257
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4118
4258
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4119
4259
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4260
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
4120
4261
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4121
4262
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4122
4263
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4139,7 +4280,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
4139
4280
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4140
4281
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4141
4282
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4142
|
-
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "chatProjectId" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
4283
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "chatProjectId" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "reasoning_mode" | "reasoning_context" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
4143
4284
|
model?: string | null | undefined;
|
|
4144
4285
|
modelLabel?: string | null | undefined;
|
|
4145
4286
|
promptPrefix?: string | null | undefined;
|
|
@@ -4155,6 +4296,8 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
4155
4296
|
imageDetail?: ImageDetail | undefined;
|
|
4156
4297
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4157
4298
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4299
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4300
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4158
4301
|
verbosity?: Verbosity | null | undefined;
|
|
4159
4302
|
useResponsesApi?: boolean | undefined;
|
|
4160
4303
|
web_search?: boolean | undefined;
|
|
@@ -4181,6 +4324,8 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
4181
4324
|
imageDetail?: ImageDetail | undefined;
|
|
4182
4325
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4183
4326
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4327
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4328
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4184
4329
|
verbosity?: Verbosity | null | undefined;
|
|
4185
4330
|
useResponsesApi?: boolean | undefined;
|
|
4186
4331
|
web_search?: boolean | undefined;
|
|
@@ -4198,6 +4343,8 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4198
4343
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
4199
4344
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
4200
4345
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
4346
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
4347
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
4201
4348
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
4202
4349
|
user: z.ZodOptional<z.ZodString>;
|
|
4203
4350
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4325,11 +4472,14 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4325
4472
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4326
4473
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4327
4474
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4475
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
4476
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
4328
4477
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4329
4478
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4330
4479
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4331
4480
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4332
4481
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4482
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
4333
4483
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4334
4484
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4335
4485
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4352,7 +4502,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4352
4502
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4353
4503
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4354
4504
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4355
|
-
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "chatProjectId" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
4505
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "chatProjectId" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "reasoning_mode" | "reasoning_context" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit" | "chatGptLabel">, "strip", z.ZodTypeAny, {
|
|
4356
4506
|
model?: string | null | undefined;
|
|
4357
4507
|
modelLabel?: string | null | undefined;
|
|
4358
4508
|
promptPrefix?: string | null | undefined;
|
|
@@ -4368,6 +4518,8 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4368
4518
|
imageDetail?: ImageDetail | undefined;
|
|
4369
4519
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4370
4520
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4521
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4522
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4371
4523
|
verbosity?: Verbosity | null | undefined;
|
|
4372
4524
|
useResponsesApi?: boolean | undefined;
|
|
4373
4525
|
web_search?: boolean | undefined;
|
|
@@ -4394,6 +4546,8 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4394
4546
|
imageDetail?: ImageDetail | undefined;
|
|
4395
4547
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4396
4548
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4549
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4550
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4397
4551
|
verbosity?: Verbosity | null | undefined;
|
|
4398
4552
|
useResponsesApi?: boolean | undefined;
|
|
4399
4553
|
web_search?: boolean | undefined;
|
|
@@ -4420,6 +4574,8 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4420
4574
|
imageDetail?: ImageDetail | undefined;
|
|
4421
4575
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4422
4576
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4577
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4578
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4423
4579
|
verbosity?: Verbosity | null | undefined;
|
|
4424
4580
|
useResponsesApi?: boolean | undefined;
|
|
4425
4581
|
web_search?: boolean | undefined;
|
|
@@ -4437,6 +4593,8 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4437
4593
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
4438
4594
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
4439
4595
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
4596
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
4597
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
4440
4598
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
4441
4599
|
user: z.ZodOptional<z.ZodString>;
|
|
4442
4600
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4564,11 +4722,14 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4564
4722
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4565
4723
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4566
4724
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4725
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
4726
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
4567
4727
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4568
4728
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4569
4729
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4570
4730
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4571
4731
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4732
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
4572
4733
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4573
4734
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4574
4735
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4591,12 +4752,14 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4591
4752
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4592
4753
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4593
4754
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4594
|
-
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "chatProjectId" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit" | "chatGptLabel"> & Pick<{
|
|
4755
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "max_tokens" | "artifacts" | "chatProjectId" | "resendFiles" | "imageDetail" | "reasoning_effort" | "reasoning_summary" | "reasoning_mode" | "reasoning_context" | "verbosity" | "useResponsesApi" | "web_search" | "disableStreaming" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit" | "chatGptLabel"> & Pick<{
|
|
4595
4756
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4596
4757
|
endpoint: z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>;
|
|
4597
4758
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
4598
4759
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
4599
4760
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
4761
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
4762
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
4600
4763
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
4601
4764
|
user: z.ZodOptional<z.ZodString>;
|
|
4602
4765
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4724,11 +4887,14 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4724
4887
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4725
4888
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4726
4889
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
4890
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
4891
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
4727
4892
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4728
4893
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4729
4894
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4730
4895
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4731
4896
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
4897
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
4732
4898
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4733
4899
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4734
4900
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4769,6 +4935,8 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4769
4935
|
imageDetail?: ImageDetail | undefined;
|
|
4770
4936
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4771
4937
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4938
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4939
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4772
4940
|
verbosity?: Verbosity | null | undefined;
|
|
4773
4941
|
useResponsesApi?: boolean | undefined;
|
|
4774
4942
|
web_search?: boolean | undefined;
|
|
@@ -4797,6 +4965,8 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4797
4965
|
imageDetail?: ImageDetail | undefined;
|
|
4798
4966
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4799
4967
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4968
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4969
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4800
4970
|
verbosity?: Verbosity | null | undefined;
|
|
4801
4971
|
useResponsesApi?: boolean | undefined;
|
|
4802
4972
|
web_search?: boolean | undefined;
|
|
@@ -4825,6 +4995,8 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4825
4995
|
imageDetail?: ImageDetail | undefined;
|
|
4826
4996
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
4827
4997
|
reasoning_summary?: ReasoningSummary | null | undefined;
|
|
4998
|
+
reasoning_mode?: ReasoningMode | null | undefined;
|
|
4999
|
+
reasoning_context?: ReasoningContext | null | undefined;
|
|
4828
5000
|
verbosity?: Verbosity | null | undefined;
|
|
4829
5001
|
useResponsesApi?: boolean | undefined;
|
|
4830
5002
|
web_search?: boolean | undefined;
|
|
@@ -4842,6 +5014,8 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4842
5014
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
4843
5015
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
4844
5016
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
5017
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
5018
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
4845
5019
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
4846
5020
|
user: z.ZodOptional<z.ZodString>;
|
|
4847
5021
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4969,11 +5143,14 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4969
5143
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
4970
5144
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
4971
5145
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
5146
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
5147
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
4972
5148
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
4973
5149
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
4974
5150
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
4975
5151
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
4976
5152
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
5153
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
4977
5154
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
4978
5155
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
4979
5156
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -4996,7 +5173,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4996
5173
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4997
5174
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4998
5175
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4999
|
-
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
5176
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "url_context" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
5000
5177
|
model?: string | null | undefined;
|
|
5001
5178
|
modelLabel?: string | null | undefined;
|
|
5002
5179
|
promptPrefix?: string | null | undefined;
|
|
@@ -5019,6 +5196,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5019
5196
|
}[] | undefined;
|
|
5020
5197
|
chatProjectId?: string | null | undefined;
|
|
5021
5198
|
web_search?: boolean | undefined;
|
|
5199
|
+
url_context?: boolean | undefined;
|
|
5022
5200
|
greeting?: string | undefined;
|
|
5023
5201
|
spec?: string | null | undefined;
|
|
5024
5202
|
iconURL?: string | null | undefined;
|
|
@@ -5046,6 +5224,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5046
5224
|
}[] | undefined;
|
|
5047
5225
|
chatProjectId?: string | null | undefined;
|
|
5048
5226
|
web_search?: boolean | undefined;
|
|
5227
|
+
url_context?: boolean | undefined;
|
|
5049
5228
|
greeting?: string | undefined;
|
|
5050
5229
|
spec?: string | null | undefined;
|
|
5051
5230
|
iconURL?: string | null | undefined;
|
|
@@ -5073,6 +5252,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5073
5252
|
}[] | undefined;
|
|
5074
5253
|
chatProjectId?: string | null | undefined;
|
|
5075
5254
|
web_search?: boolean | undefined;
|
|
5255
|
+
url_context?: boolean | undefined;
|
|
5076
5256
|
greeting?: string | undefined;
|
|
5077
5257
|
spec?: string | null | undefined;
|
|
5078
5258
|
iconURL?: string | null | undefined;
|
|
@@ -5084,6 +5264,8 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
5084
5264
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
5085
5265
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
5086
5266
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
5267
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
5268
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
5087
5269
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
5088
5270
|
user: z.ZodOptional<z.ZodString>;
|
|
5089
5271
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5211,11 +5393,14 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
5211
5393
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
5212
5394
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
5213
5395
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
5396
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
5397
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
5214
5398
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
5215
5399
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
5216
5400
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5217
5401
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
5218
5402
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
5403
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
5219
5404
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
5220
5405
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
5221
5406
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5295,6 +5480,8 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5295
5480
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
5296
5481
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
5297
5482
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
5483
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
5484
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
5298
5485
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
5299
5486
|
user: z.ZodOptional<z.ZodString>;
|
|
5300
5487
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5422,11 +5609,14 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5422
5609
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
5423
5610
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
5424
5611
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
5612
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
5613
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
5425
5614
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
5426
5615
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
5427
5616
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5428
5617
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
5429
5618
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
5619
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
5430
5620
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
5431
5621
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
5432
5622
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5585,6 +5775,8 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5585
5775
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
5586
5776
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
5587
5777
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
5778
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
5779
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
5588
5780
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
5589
5781
|
user: z.ZodOptional<z.ZodString>;
|
|
5590
5782
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5712,11 +5904,14 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5712
5904
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
5713
5905
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
5714
5906
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
5907
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
5908
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
5715
5909
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
5716
5910
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
5717
5911
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5718
5912
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
5719
5913
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
5914
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
5720
5915
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
5721
5916
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
5722
5917
|
agent_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5762,6 +5957,8 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5762
5957
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
5763
5958
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
5764
5959
|
pinned: z.ZodOptional<z.ZodBoolean>;
|
|
5960
|
+
/** Server-derived: an active shared link exists for this conversation. Not persisted. */
|
|
5961
|
+
isShared: z.ZodOptional<z.ZodBoolean>;
|
|
5765
5962
|
title: z.ZodDefault<z.ZodUnion<[z.ZodNullable<z.ZodString>, z.ZodLiteral<"New Chat">]>>;
|
|
5766
5963
|
user: z.ZodOptional<z.ZodString>;
|
|
5767
5964
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5889,11 +6086,14 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5889
6086
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
5890
6087
|
reasoning_effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningEffort>>>;
|
|
5891
6088
|
reasoning_summary: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningSummary>>>;
|
|
6089
|
+
reasoning_mode: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningMode>>>;
|
|
6090
|
+
reasoning_context: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ReasoningContext>>>;
|
|
5892
6091
|
verbosity: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof Verbosity>>>;
|
|
5893
6092
|
useResponsesApi: z.ZodOptional<z.ZodBoolean>;
|
|
5894
6093
|
effort: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof AnthropicEffort>>>;
|
|
5895
6094
|
thinkingDisplay: z.ZodNullable<z.ZodOptional<z.ZodNativeEnum<typeof ThinkingDisplay>>>;
|
|
5896
6095
|
web_search: z.ZodOptional<z.ZodBoolean>;
|
|
6096
|
+
url_context: z.ZodOptional<z.ZodBoolean>;
|
|
5897
6097
|
disableStreaming: z.ZodOptional<z.ZodBoolean>;
|
|
5898
6098
|
assistant_id: z.ZodOptional<z.ZodString>;
|
|
5899
6099
|
agent_id: z.ZodOptional<z.ZodString>;
|