librechat-data-provider 0.8.503 → 0.8.504
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-BFGYAHRx.mjs +6519 -0
- package/dist/data-service-BFGYAHRx.mjs.map +1 -0
- package/dist/data-service-Dk-uLruo.js +8518 -0
- package/dist/data-service-Dk-uLruo.js.map +1 -0
- package/dist/index.js +6592 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6161 -0
- package/dist/index.mjs.map +1 -0
- package/dist/react-query/index.js +361 -0
- package/dist/react-query/index.js.map +1 -0
- package/dist/react-query/index.mjs +326 -0
- package/dist/react-query/index.mjs.map +1 -0
- package/dist/types/accessPermissions.d.ts +13 -10
- package/dist/types/actions.d.ts +2 -2
- package/dist/types/api-endpoints.d.ts +17 -9
- package/dist/types/bedrock.d.ts +252 -212
- package/dist/types/config.d.ts +4208 -2629
- package/dist/types/data-service.d.ts +23 -6
- package/dist/types/file-config.d.ts +12 -12
- package/dist/types/generate.d.ts +64 -53
- package/dist/types/keys.d.ts +7 -0
- package/dist/types/limits.d.ts +2 -0
- package/dist/types/mcp.d.ts +489 -210
- package/dist/types/models.d.ts +325 -206
- package/dist/types/parsers.d.ts +8 -8
- package/dist/types/permissions.d.ts +65 -9
- package/dist/types/react-query/react-query-service.d.ts +1 -31
- package/dist/types/request.d.ts +1 -1
- package/dist/types/roles.d.ts +52 -0
- package/dist/types/schemas.d.ts +386 -161
- package/dist/types/types/agents.d.ts +15 -1
- package/dist/types/types/files.d.ts +1 -1
- package/dist/types/types/queries.d.ts +16 -3
- package/dist/types/types/skills.d.ts +72 -9
- package/dist/types/types.d.ts +40 -3
- package/package.json +11 -13
- package/dist/index.es.js +0 -2
- package/dist/index.es.js.map +0 -1
- package/dist/react-query/index.es.js +0 -2
- package/dist/react-query/index.es.js.map +0 -1
- package/dist/types/balance.spec.d.ts +0 -1
- package/dist/types/cloudfront-config.spec.d.ts +0 -1
- package/dist/types/codeEnvRef.spec.d.ts +0 -1
- package/dist/types/config.spec.d.ts +0 -1
- package/dist/types/file-config.spec.d.ts +0 -1
- package/dist/types/parameterSettings.spec.d.ts +0 -1
- package/dist/types/roles.spec.d.ts +0 -1
- package/dist/types/schemas.spec.d.ts +0 -1
package/dist/types/schemas.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { Tools } from './types/assistants';
|
|
3
2
|
import type { TMessageContentParts, FunctionTool, FunctionToolCall } from './types/assistants';
|
|
4
|
-
import { TFeedback } from './feedback';
|
|
5
3
|
import type { SearchResultData } from './types/web';
|
|
6
4
|
import type { TFile } from './types/files';
|
|
5
|
+
import { TFeedback } from './feedback';
|
|
6
|
+
import { Tools } from './types/assistants';
|
|
7
7
|
export declare const isUUID: z.ZodString;
|
|
8
8
|
export declare enum AuthType {
|
|
9
9
|
OVERRIDE_AUTH = "override_auth",
|
|
@@ -79,6 +79,15 @@ export declare enum ReasoningEffort {
|
|
|
79
79
|
high = "high",
|
|
80
80
|
xhigh = "xhigh"
|
|
81
81
|
}
|
|
82
|
+
export declare enum ReasoningParameterFormat {
|
|
83
|
+
disabled = "disabled",
|
|
84
|
+
reasoningEffort = "reasoning_effort",
|
|
85
|
+
reasoningObject = "reasoning_object"
|
|
86
|
+
}
|
|
87
|
+
export declare enum ReasoningResponseKey {
|
|
88
|
+
reasoning = "reasoning",
|
|
89
|
+
reasoningContent = "reasoning_content"
|
|
90
|
+
}
|
|
82
91
|
export declare enum AnthropicEffort {
|
|
83
92
|
unset = "",
|
|
84
93
|
low = "low",
|
|
@@ -143,6 +152,8 @@ export declare const imageDetailValue: {
|
|
|
143
152
|
};
|
|
144
153
|
export declare const eImageDetailSchema: z.ZodNativeEnum<typeof ImageDetail>;
|
|
145
154
|
export declare const eReasoningEffortSchema: z.ZodNativeEnum<typeof ReasoningEffort>;
|
|
155
|
+
export declare const eReasoningParameterFormatSchema: z.ZodNativeEnum<typeof ReasoningParameterFormat>;
|
|
156
|
+
export declare const eReasoningResponseKeySchema: z.ZodNativeEnum<typeof ReasoningResponseKey>;
|
|
146
157
|
export declare const eAnthropicEffortSchema: z.ZodNativeEnum<typeof AnthropicEffort>;
|
|
147
158
|
export declare const eThinkingDisplaySchema: z.ZodNativeEnum<typeof ThinkingDisplay>;
|
|
148
159
|
export declare const eReasoningSummarySchema: z.ZodNativeEnum<typeof ReasoningSummary>;
|
|
@@ -192,9 +203,9 @@ export declare const defaultAgentFormValues: {
|
|
|
192
203
|
skills_enabled: boolean | undefined;
|
|
193
204
|
/** `undefined` = feature disabled by default (no subagent tool injected). */
|
|
194
205
|
subagents: {
|
|
195
|
-
enabled?: boolean
|
|
196
|
-
allowSelf?: boolean
|
|
197
|
-
agent_ids?: string[]
|
|
206
|
+
enabled?: boolean;
|
|
207
|
+
allowSelf?: boolean;
|
|
208
|
+
agent_ids?: string[];
|
|
198
209
|
} | undefined;
|
|
199
210
|
};
|
|
200
211
|
export declare const ImageVisionTool: FunctionTool;
|
|
@@ -289,6 +300,21 @@ export declare const googleSettings: {
|
|
|
289
300
|
default: ThinkingLevel.unset;
|
|
290
301
|
};
|
|
291
302
|
};
|
|
303
|
+
/**
|
|
304
|
+
* Claude "Mythos-class" model families — new top-level classes (peers of
|
|
305
|
+
* `opus`/`sonnet`/`haiku`) that ship with the post-Opus-4.7 modern profile:
|
|
306
|
+
* adaptive thinking always on, raw thinking omitted by default (summarized
|
|
307
|
+
* opt-in), sampling parameters rejected, and a 1M context window. The tier
|
|
308
|
+
* word is the class name itself, so the `opus`/`sonnet` version parsers don't
|
|
309
|
+
* cover them.
|
|
310
|
+
*
|
|
311
|
+
* Single source of truth: add a future sibling class name here and every
|
|
312
|
+
* Mythos-class gate (adaptive thinking, sampling omission, prompt caching, 1M
|
|
313
|
+
* context, 128K output) picks it up.
|
|
314
|
+
*/
|
|
315
|
+
export declare const MYTHOS_CLASS_FAMILIES: readonly ["fable", "mythos"];
|
|
316
|
+
/** Whether the model is a Claude Mythos-class model (e.g. `claude-fable-5`). */
|
|
317
|
+
export declare function isMythosClassModel(model: string): boolean;
|
|
292
318
|
export declare const anthropicSettings: {
|
|
293
319
|
model: {
|
|
294
320
|
default: "claude-3-5-sonnet-latest";
|
|
@@ -647,16 +673,20 @@ export declare const tPluginAuthConfigSchema: z.ZodObject<{
|
|
|
647
673
|
label: z.ZodString;
|
|
648
674
|
description: z.ZodString;
|
|
649
675
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
676
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
677
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
650
678
|
}, "strip", z.ZodTypeAny, {
|
|
651
679
|
description: string;
|
|
652
680
|
authField: string;
|
|
653
681
|
label: string;
|
|
654
682
|
optional?: boolean | undefined;
|
|
683
|
+
sensitive?: boolean | undefined;
|
|
655
684
|
}, {
|
|
656
685
|
description: string;
|
|
657
686
|
authField: string;
|
|
658
687
|
label: string;
|
|
659
688
|
optional?: boolean | undefined;
|
|
689
|
+
sensitive?: boolean | undefined;
|
|
660
690
|
}>;
|
|
661
691
|
export type TPluginAuthConfig = z.infer<typeof tPluginAuthConfigSchema>;
|
|
662
692
|
export declare const tPluginSchema: z.ZodObject<{
|
|
@@ -669,16 +699,20 @@ export declare const tPluginSchema: z.ZodObject<{
|
|
|
669
699
|
label: z.ZodString;
|
|
670
700
|
description: z.ZodString;
|
|
671
701
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
702
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
703
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
672
704
|
}, "strip", z.ZodTypeAny, {
|
|
673
705
|
description: string;
|
|
674
706
|
authField: string;
|
|
675
707
|
label: string;
|
|
676
708
|
optional?: boolean | undefined;
|
|
709
|
+
sensitive?: boolean | undefined;
|
|
677
710
|
}, {
|
|
678
711
|
description: string;
|
|
679
712
|
authField: string;
|
|
680
713
|
label: string;
|
|
681
714
|
optional?: boolean | undefined;
|
|
715
|
+
sensitive?: boolean | undefined;
|
|
682
716
|
}>, "many">>;
|
|
683
717
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
684
718
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -694,6 +728,7 @@ export declare const tPluginSchema: z.ZodObject<{
|
|
|
694
728
|
authField: string;
|
|
695
729
|
label: string;
|
|
696
730
|
optional?: boolean | undefined;
|
|
731
|
+
sensitive?: boolean | undefined;
|
|
697
732
|
}[] | undefined;
|
|
698
733
|
authenticated?: boolean | undefined;
|
|
699
734
|
chatMenu?: boolean | undefined;
|
|
@@ -709,6 +744,7 @@ export declare const tPluginSchema: z.ZodObject<{
|
|
|
709
744
|
authField: string;
|
|
710
745
|
label: string;
|
|
711
746
|
optional?: boolean | undefined;
|
|
747
|
+
sensitive?: boolean | undefined;
|
|
712
748
|
}[] | undefined;
|
|
713
749
|
authenticated?: boolean | undefined;
|
|
714
750
|
chatMenu?: boolean | undefined;
|
|
@@ -821,32 +857,32 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
821
857
|
*/
|
|
822
858
|
alwaysAppliedSkills: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
823
859
|
}, "strip", z.ZodTypeAny, {
|
|
824
|
-
messageId: string;
|
|
825
860
|
conversationId: string | null;
|
|
826
|
-
parentMessageId: string | null;
|
|
827
861
|
title: string | null;
|
|
828
|
-
|
|
829
|
-
isCreatedByUser: boolean;
|
|
862
|
+
parentMessageId: string | null;
|
|
830
863
|
createdAt: string;
|
|
831
864
|
updatedAt: string;
|
|
865
|
+
text: string;
|
|
866
|
+
messageId: string;
|
|
867
|
+
isCreatedByUser: boolean;
|
|
868
|
+
model?: string | null | undefined;
|
|
832
869
|
endpoint?: string | undefined;
|
|
870
|
+
iconURL?: string | null | undefined;
|
|
871
|
+
expiredAt?: string | null | undefined;
|
|
872
|
+
isTemporary?: boolean | undefined;
|
|
873
|
+
error?: boolean | undefined;
|
|
833
874
|
clientId?: string | null | undefined;
|
|
834
875
|
responseMessageId?: string | null | undefined;
|
|
835
876
|
overrideParentMessageId?: string | null | undefined;
|
|
836
877
|
bg?: string | null | undefined;
|
|
837
|
-
model?: string | null | undefined;
|
|
838
878
|
sender?: string | undefined;
|
|
839
879
|
generation?: string | null | undefined;
|
|
840
|
-
isTemporary?: boolean | undefined;
|
|
841
|
-
expiredAt?: string | null | undefined;
|
|
842
|
-
error?: boolean | undefined;
|
|
843
880
|
clientTimestamp?: string | undefined;
|
|
844
881
|
current?: boolean | undefined;
|
|
845
882
|
unfinished?: boolean | undefined;
|
|
846
883
|
searchResult?: boolean | undefined;
|
|
847
884
|
finish_reason?: string | undefined;
|
|
848
885
|
thread_id?: string | undefined;
|
|
849
|
-
iconURL?: string | null | undefined;
|
|
850
886
|
feedback?: {
|
|
851
887
|
rating: "thumbsUp" | "thumbsDown";
|
|
852
888
|
tag: "not_matched" | "inaccurate" | "bad_style" | "missing_image" | "unjustified_refusal" | "not_helpful" | "other" | "accurate_reliable" | "creative_solution" | "clear_well_written" | "attention_to_detail";
|
|
@@ -860,32 +896,32 @@ export declare const tMessageSchema: z.ZodObject<{
|
|
|
860
896
|
manualSkills?: string[] | undefined;
|
|
861
897
|
alwaysAppliedSkills?: string[] | undefined;
|
|
862
898
|
}, {
|
|
863
|
-
messageId: string;
|
|
864
899
|
conversationId: string | null;
|
|
865
900
|
parentMessageId: string | null;
|
|
866
901
|
text: string;
|
|
902
|
+
messageId: string;
|
|
867
903
|
isCreatedByUser: boolean;
|
|
904
|
+
model?: string | null | undefined;
|
|
868
905
|
endpoint?: string | undefined;
|
|
906
|
+
title?: string | null | undefined;
|
|
907
|
+
createdAt?: string | undefined;
|
|
908
|
+
updatedAt?: string | undefined;
|
|
909
|
+
iconURL?: string | null | undefined;
|
|
910
|
+
expiredAt?: string | null | undefined;
|
|
911
|
+
isTemporary?: boolean | undefined;
|
|
912
|
+
error?: boolean | undefined;
|
|
869
913
|
clientId?: string | null | undefined;
|
|
870
914
|
responseMessageId?: string | null | undefined;
|
|
871
915
|
overrideParentMessageId?: string | null | undefined;
|
|
872
916
|
bg?: string | null | undefined;
|
|
873
|
-
model?: string | null | undefined;
|
|
874
|
-
title?: string | null | undefined;
|
|
875
917
|
sender?: string | undefined;
|
|
876
918
|
generation?: string | null | undefined;
|
|
877
|
-
isTemporary?: boolean | undefined;
|
|
878
|
-
expiredAt?: string | null | undefined;
|
|
879
|
-
error?: boolean | undefined;
|
|
880
919
|
clientTimestamp?: string | undefined;
|
|
881
|
-
createdAt?: string | undefined;
|
|
882
|
-
updatedAt?: string | undefined;
|
|
883
920
|
current?: boolean | undefined;
|
|
884
921
|
unfinished?: boolean | undefined;
|
|
885
922
|
searchResult?: boolean | undefined;
|
|
886
923
|
finish_reason?: string | undefined;
|
|
887
924
|
thread_id?: string | undefined;
|
|
888
|
-
iconURL?: string | null | undefined;
|
|
889
925
|
feedback?: {
|
|
890
926
|
rating: "thumbsUp" | "thumbsDown";
|
|
891
927
|
tag: "not_matched" | "inaccurate" | "bad_style" | "missing_image" | "unjustified_refusal" | "not_helpful" | "other" | "accurate_reliable" | "creative_solution" | "clear_well_written" | "attention_to_detail";
|
|
@@ -956,16 +992,20 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
956
992
|
label: z.ZodString;
|
|
957
993
|
description: z.ZodString;
|
|
958
994
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
995
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
996
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
959
997
|
}, "strip", z.ZodTypeAny, {
|
|
960
998
|
description: string;
|
|
961
999
|
authField: string;
|
|
962
1000
|
label: string;
|
|
963
1001
|
optional?: boolean | undefined;
|
|
1002
|
+
sensitive?: boolean | undefined;
|
|
964
1003
|
}, {
|
|
965
1004
|
description: string;
|
|
966
1005
|
authField: string;
|
|
967
1006
|
label: string;
|
|
968
1007
|
optional?: boolean | undefined;
|
|
1008
|
+
sensitive?: boolean | undefined;
|
|
969
1009
|
}>, "many">>;
|
|
970
1010
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
971
1011
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -981,6 +1021,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
981
1021
|
authField: string;
|
|
982
1022
|
label: string;
|
|
983
1023
|
optional?: boolean | undefined;
|
|
1024
|
+
sensitive?: boolean | undefined;
|
|
984
1025
|
}[] | undefined;
|
|
985
1026
|
authenticated?: boolean | undefined;
|
|
986
1027
|
chatMenu?: boolean | undefined;
|
|
@@ -996,6 +1037,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
996
1037
|
authField: string;
|
|
997
1038
|
label: string;
|
|
998
1039
|
optional?: boolean | undefined;
|
|
1040
|
+
sensitive?: boolean | undefined;
|
|
999
1041
|
}[] | undefined;
|
|
1000
1042
|
authenticated?: boolean | undefined;
|
|
1001
1043
|
chatMenu?: boolean | undefined;
|
|
@@ -1055,6 +1097,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1055
1097
|
};
|
|
1056
1098
|
}>, "many">>;
|
|
1057
1099
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1100
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1058
1101
|
createdAt: z.ZodString;
|
|
1059
1102
|
updatedAt: z.ZodString;
|
|
1060
1103
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1090,18 +1133,14 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1090
1133
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
1091
1134
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1092
1135
|
}, "strip", z.ZodTypeAny, {
|
|
1093
|
-
endpoint: EModelEndpoint | null;
|
|
1094
1136
|
conversationId: string | null;
|
|
1137
|
+
endpoint: EModelEndpoint | null;
|
|
1095
1138
|
title: string | null;
|
|
1096
1139
|
createdAt: string;
|
|
1097
1140
|
updatedAt: string;
|
|
1098
|
-
parentMessageId?: string | undefined;
|
|
1099
|
-
model?: string | null | undefined;
|
|
1100
|
-
isTemporary?: boolean | undefined;
|
|
1101
|
-
expiredAt?: string | null | undefined;
|
|
1102
|
-
iconURL?: string | null | undefined;
|
|
1103
1141
|
user?: string | undefined;
|
|
1104
|
-
|
|
1142
|
+
tags?: string[] | undefined;
|
|
1143
|
+
model?: string | null | undefined;
|
|
1105
1144
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1106
1145
|
isArchived?: boolean | undefined;
|
|
1107
1146
|
messages?: string[] | undefined;
|
|
@@ -1115,6 +1154,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1115
1154
|
authField: string;
|
|
1116
1155
|
label: string;
|
|
1117
1156
|
optional?: boolean | undefined;
|
|
1157
|
+
sensitive?: boolean | undefined;
|
|
1118
1158
|
}[] | undefined;
|
|
1119
1159
|
authenticated?: boolean | undefined;
|
|
1120
1160
|
chatMenu?: boolean | undefined;
|
|
@@ -1130,6 +1170,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1130
1170
|
top_p?: number | undefined;
|
|
1131
1171
|
frequency_penalty?: number | undefined;
|
|
1132
1172
|
presence_penalty?: number | undefined;
|
|
1173
|
+
parentMessageId?: string | undefined;
|
|
1133
1174
|
maxOutputTokens?: number | null | undefined;
|
|
1134
1175
|
maxContextTokens?: number | undefined;
|
|
1135
1176
|
max_tokens?: number | undefined;
|
|
@@ -1140,6 +1181,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1140
1181
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
1141
1182
|
stream?: boolean | undefined;
|
|
1142
1183
|
artifacts?: string | undefined;
|
|
1184
|
+
context?: string | null | undefined;
|
|
1143
1185
|
examples?: {
|
|
1144
1186
|
input: {
|
|
1145
1187
|
content: string;
|
|
@@ -1148,7 +1190,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1148
1190
|
content: string;
|
|
1149
1191
|
};
|
|
1150
1192
|
}[] | undefined;
|
|
1151
|
-
|
|
1193
|
+
chatProjectId?: string | null | undefined;
|
|
1152
1194
|
resendFiles?: boolean | undefined;
|
|
1153
1195
|
file_ids?: string[] | undefined;
|
|
1154
1196
|
imageDetail?: ImageDetail | undefined;
|
|
@@ -1172,24 +1214,23 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1172
1214
|
stop?: string[] | undefined;
|
|
1173
1215
|
greeting?: string | undefined;
|
|
1174
1216
|
spec?: string | null | undefined;
|
|
1217
|
+
iconURL?: string | null | undefined;
|
|
1218
|
+
expiredAt?: string | null | undefined;
|
|
1219
|
+
isTemporary?: boolean | undefined;
|
|
1175
1220
|
fileTokenLimit?: number | undefined;
|
|
1176
1221
|
resendImages?: boolean | undefined;
|
|
1177
1222
|
chatGptLabel?: string | null | undefined;
|
|
1178
1223
|
}, {
|
|
1179
|
-
endpoint: EModelEndpoint | null;
|
|
1180
1224
|
conversationId: string | null;
|
|
1225
|
+
endpoint: EModelEndpoint | null;
|
|
1181
1226
|
createdAt: string;
|
|
1182
1227
|
updatedAt: string;
|
|
1183
|
-
parentMessageId?: string | undefined;
|
|
1184
|
-
model?: string | null | undefined;
|
|
1185
|
-
title?: string | null | undefined;
|
|
1186
|
-
isTemporary?: boolean | undefined;
|
|
1187
|
-
expiredAt?: string | null | undefined;
|
|
1188
|
-
iconURL?: string | null | undefined;
|
|
1189
1228
|
user?: string | undefined;
|
|
1190
|
-
|
|
1229
|
+
tags?: string[] | undefined;
|
|
1230
|
+
model?: string | null | undefined;
|
|
1191
1231
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1192
1232
|
isArchived?: boolean | undefined;
|
|
1233
|
+
title?: string | null | undefined;
|
|
1193
1234
|
messages?: string[] | undefined;
|
|
1194
1235
|
tools?: string[] | {
|
|
1195
1236
|
name: string;
|
|
@@ -1201,6 +1242,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1201
1242
|
authField: string;
|
|
1202
1243
|
label: string;
|
|
1203
1244
|
optional?: boolean | undefined;
|
|
1245
|
+
sensitive?: boolean | undefined;
|
|
1204
1246
|
}[] | undefined;
|
|
1205
1247
|
authenticated?: boolean | undefined;
|
|
1206
1248
|
chatMenu?: boolean | undefined;
|
|
@@ -1216,6 +1258,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1216
1258
|
top_p?: number | undefined;
|
|
1217
1259
|
frequency_penalty?: number | undefined;
|
|
1218
1260
|
presence_penalty?: number | undefined;
|
|
1261
|
+
parentMessageId?: string | undefined;
|
|
1219
1262
|
maxOutputTokens?: string | number | null | undefined;
|
|
1220
1263
|
maxContextTokens?: string | number | undefined;
|
|
1221
1264
|
max_tokens?: string | number | undefined;
|
|
@@ -1226,6 +1269,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1226
1269
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
1227
1270
|
stream?: boolean | undefined;
|
|
1228
1271
|
artifacts?: string | undefined;
|
|
1272
|
+
context?: string | null | undefined;
|
|
1229
1273
|
examples?: {
|
|
1230
1274
|
input: {
|
|
1231
1275
|
content: string;
|
|
@@ -1234,7 +1278,7 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1234
1278
|
content: string;
|
|
1235
1279
|
};
|
|
1236
1280
|
}[] | undefined;
|
|
1237
|
-
|
|
1281
|
+
chatProjectId?: string | null | undefined;
|
|
1238
1282
|
resendFiles?: boolean | undefined;
|
|
1239
1283
|
file_ids?: string[] | undefined;
|
|
1240
1284
|
imageDetail?: ImageDetail | undefined;
|
|
@@ -1258,18 +1302,17 @@ export declare const tConversationSchema: z.ZodObject<{
|
|
|
1258
1302
|
stop?: string[] | undefined;
|
|
1259
1303
|
greeting?: string | undefined;
|
|
1260
1304
|
spec?: string | null | undefined;
|
|
1305
|
+
iconURL?: string | null | undefined;
|
|
1306
|
+
expiredAt?: string | null | undefined;
|
|
1307
|
+
isTemporary?: boolean | undefined;
|
|
1261
1308
|
fileTokenLimit?: string | number | undefined;
|
|
1262
1309
|
resendImages?: boolean | undefined;
|
|
1263
1310
|
chatGptLabel?: string | null | undefined;
|
|
1264
1311
|
}>;
|
|
1265
1312
|
export declare const tPresetSchema: z.ZodObject<{
|
|
1266
|
-
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
1267
|
-
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1268
|
-
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
1269
|
-
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1270
|
-
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1271
1313
|
user: z.ZodOptional<z.ZodString>;
|
|
1272
|
-
|
|
1314
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1315
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1273
1316
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
1274
1317
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
1275
1318
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1283,16 +1326,20 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1283
1326
|
label: z.ZodString;
|
|
1284
1327
|
description: z.ZodString;
|
|
1285
1328
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
1329
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
1330
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1286
1331
|
}, "strip", z.ZodTypeAny, {
|
|
1287
1332
|
description: string;
|
|
1288
1333
|
authField: string;
|
|
1289
1334
|
label: string;
|
|
1290
1335
|
optional?: boolean | undefined;
|
|
1336
|
+
sensitive?: boolean | undefined;
|
|
1291
1337
|
}, {
|
|
1292
1338
|
description: string;
|
|
1293
1339
|
authField: string;
|
|
1294
1340
|
label: string;
|
|
1295
1341
|
optional?: boolean | undefined;
|
|
1342
|
+
sensitive?: boolean | undefined;
|
|
1296
1343
|
}>, "many">>;
|
|
1297
1344
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
1298
1345
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1308,6 +1355,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1308
1355
|
authField: string;
|
|
1309
1356
|
label: string;
|
|
1310
1357
|
optional?: boolean | undefined;
|
|
1358
|
+
sensitive?: boolean | undefined;
|
|
1311
1359
|
}[] | undefined;
|
|
1312
1360
|
authenticated?: boolean | undefined;
|
|
1313
1361
|
chatMenu?: boolean | undefined;
|
|
@@ -1323,6 +1371,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1323
1371
|
authField: string;
|
|
1324
1372
|
label: string;
|
|
1325
1373
|
optional?: boolean | undefined;
|
|
1374
|
+
sensitive?: boolean | undefined;
|
|
1326
1375
|
}[] | undefined;
|
|
1327
1376
|
authenticated?: boolean | undefined;
|
|
1328
1377
|
chatMenu?: boolean | undefined;
|
|
@@ -1338,6 +1387,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1338
1387
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
1339
1388
|
frequency_penalty: z.ZodOptional<z.ZodNumber>;
|
|
1340
1389
|
presence_penalty: z.ZodOptional<z.ZodNumber>;
|
|
1390
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
1341
1391
|
maxOutputTokens: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>>;
|
|
1342
1392
|
maxContextTokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
1343
1393
|
max_tokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
@@ -1348,6 +1398,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1348
1398
|
thinkingLevel: z.ZodOptional<z.ZodNativeEnum<typeof ThinkingLevel>>;
|
|
1349
1399
|
stream: z.ZodOptional<z.ZodBoolean>;
|
|
1350
1400
|
artifacts: z.ZodOptional<z.ZodString>;
|
|
1401
|
+
context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1351
1402
|
examples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1352
1403
|
input: z.ZodObject<{
|
|
1353
1404
|
content: z.ZodString;
|
|
@@ -1378,7 +1429,6 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1378
1429
|
content: string;
|
|
1379
1430
|
};
|
|
1380
1431
|
}>, "many">>;
|
|
1381
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1382
1432
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
1383
1433
|
file_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1384
1434
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
@@ -1402,6 +1452,9 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1402
1452
|
stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1403
1453
|
greeting: z.ZodOptional<z.ZodString>;
|
|
1404
1454
|
spec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1455
|
+
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1456
|
+
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1457
|
+
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
1405
1458
|
fileTokenLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
1406
1459
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
1407
1460
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1414,17 +1467,13 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1414
1467
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
1415
1468
|
}, "strip", z.ZodTypeAny, {
|
|
1416
1469
|
endpoint: string | null;
|
|
1417
|
-
conversationId?: string | null | undefined;
|
|
1418
|
-
parentMessageId?: string | undefined;
|
|
1419
|
-
model?: string | null | undefined;
|
|
1420
|
-
title?: string | null | undefined;
|
|
1421
|
-
isTemporary?: boolean | undefined;
|
|
1422
|
-
expiredAt?: string | null | undefined;
|
|
1423
|
-
iconURL?: string | null | undefined;
|
|
1424
1470
|
user?: string | undefined;
|
|
1425
|
-
|
|
1471
|
+
tags?: string[] | undefined;
|
|
1472
|
+
model?: string | null | undefined;
|
|
1473
|
+
conversationId?: string | null | undefined;
|
|
1426
1474
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1427
1475
|
isArchived?: boolean | undefined;
|
|
1476
|
+
title?: string | null | undefined;
|
|
1428
1477
|
messages?: string[] | undefined;
|
|
1429
1478
|
tools?: string[] | {
|
|
1430
1479
|
name: string;
|
|
@@ -1436,6 +1485,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1436
1485
|
authField: string;
|
|
1437
1486
|
label: string;
|
|
1438
1487
|
optional?: boolean | undefined;
|
|
1488
|
+
sensitive?: boolean | undefined;
|
|
1439
1489
|
}[] | undefined;
|
|
1440
1490
|
authenticated?: boolean | undefined;
|
|
1441
1491
|
chatMenu?: boolean | undefined;
|
|
@@ -1451,6 +1501,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1451
1501
|
top_p?: number | undefined;
|
|
1452
1502
|
frequency_penalty?: number | undefined;
|
|
1453
1503
|
presence_penalty?: number | undefined;
|
|
1504
|
+
parentMessageId?: string | undefined;
|
|
1454
1505
|
maxOutputTokens?: number | null | undefined;
|
|
1455
1506
|
maxContextTokens?: number | undefined;
|
|
1456
1507
|
max_tokens?: number | undefined;
|
|
@@ -1461,6 +1512,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1461
1512
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
1462
1513
|
stream?: boolean | undefined;
|
|
1463
1514
|
artifacts?: string | undefined;
|
|
1515
|
+
context?: string | null | undefined;
|
|
1464
1516
|
examples?: {
|
|
1465
1517
|
input: {
|
|
1466
1518
|
content: string;
|
|
@@ -1469,7 +1521,6 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1469
1521
|
content: string;
|
|
1470
1522
|
};
|
|
1471
1523
|
}[] | undefined;
|
|
1472
|
-
tags?: string[] | undefined;
|
|
1473
1524
|
resendFiles?: boolean | undefined;
|
|
1474
1525
|
file_ids?: string[] | undefined;
|
|
1475
1526
|
imageDetail?: ImageDetail | undefined;
|
|
@@ -1493,6 +1544,9 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1493
1544
|
stop?: string[] | undefined;
|
|
1494
1545
|
greeting?: string | undefined;
|
|
1495
1546
|
spec?: string | null | undefined;
|
|
1547
|
+
iconURL?: string | null | undefined;
|
|
1548
|
+
expiredAt?: string | null | undefined;
|
|
1549
|
+
isTemporary?: boolean | undefined;
|
|
1496
1550
|
fileTokenLimit?: number | undefined;
|
|
1497
1551
|
resendImages?: boolean | undefined;
|
|
1498
1552
|
chatGptLabel?: string | null | undefined;
|
|
@@ -1501,17 +1555,13 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1501
1555
|
order?: number | undefined;
|
|
1502
1556
|
}, {
|
|
1503
1557
|
endpoint: string | null;
|
|
1504
|
-
conversationId?: string | null | undefined;
|
|
1505
|
-
parentMessageId?: string | undefined;
|
|
1506
|
-
model?: string | null | undefined;
|
|
1507
|
-
title?: string | null | undefined;
|
|
1508
|
-
isTemporary?: boolean | undefined;
|
|
1509
|
-
expiredAt?: string | null | undefined;
|
|
1510
|
-
iconURL?: string | null | undefined;
|
|
1511
1558
|
user?: string | undefined;
|
|
1512
|
-
|
|
1559
|
+
tags?: string[] | undefined;
|
|
1560
|
+
model?: string | null | undefined;
|
|
1561
|
+
conversationId?: string | null | undefined;
|
|
1513
1562
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1514
1563
|
isArchived?: boolean | undefined;
|
|
1564
|
+
title?: string | null | undefined;
|
|
1515
1565
|
messages?: string[] | undefined;
|
|
1516
1566
|
tools?: string[] | {
|
|
1517
1567
|
name: string;
|
|
@@ -1523,6 +1573,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1523
1573
|
authField: string;
|
|
1524
1574
|
label: string;
|
|
1525
1575
|
optional?: boolean | undefined;
|
|
1576
|
+
sensitive?: boolean | undefined;
|
|
1526
1577
|
}[] | undefined;
|
|
1527
1578
|
authenticated?: boolean | undefined;
|
|
1528
1579
|
chatMenu?: boolean | undefined;
|
|
@@ -1538,6 +1589,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1538
1589
|
top_p?: number | undefined;
|
|
1539
1590
|
frequency_penalty?: number | undefined;
|
|
1540
1591
|
presence_penalty?: number | undefined;
|
|
1592
|
+
parentMessageId?: string | undefined;
|
|
1541
1593
|
maxOutputTokens?: string | number | null | undefined;
|
|
1542
1594
|
maxContextTokens?: string | number | undefined;
|
|
1543
1595
|
max_tokens?: string | number | undefined;
|
|
@@ -1548,6 +1600,7 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1548
1600
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
1549
1601
|
stream?: boolean | undefined;
|
|
1550
1602
|
artifacts?: string | undefined;
|
|
1603
|
+
context?: string | null | undefined;
|
|
1551
1604
|
examples?: {
|
|
1552
1605
|
input: {
|
|
1553
1606
|
content: string;
|
|
@@ -1556,7 +1609,6 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1556
1609
|
content: string;
|
|
1557
1610
|
};
|
|
1558
1611
|
}[] | undefined;
|
|
1559
|
-
tags?: string[] | undefined;
|
|
1560
1612
|
resendFiles?: boolean | undefined;
|
|
1561
1613
|
file_ids?: string[] | undefined;
|
|
1562
1614
|
imageDetail?: ImageDetail | undefined;
|
|
@@ -1580,6 +1632,9 @@ export declare const tPresetSchema: z.ZodObject<{
|
|
|
1580
1632
|
stop?: string[] | undefined;
|
|
1581
1633
|
greeting?: string | undefined;
|
|
1582
1634
|
spec?: string | null | undefined;
|
|
1635
|
+
iconURL?: string | null | undefined;
|
|
1636
|
+
expiredAt?: string | null | undefined;
|
|
1637
|
+
isTemporary?: boolean | undefined;
|
|
1583
1638
|
fileTokenLimit?: string | number | undefined;
|
|
1584
1639
|
resendImages?: boolean | undefined;
|
|
1585
1640
|
chatGptLabel?: string | null | undefined;
|
|
@@ -1604,16 +1659,20 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1604
1659
|
label: z.ZodString;
|
|
1605
1660
|
description: z.ZodString;
|
|
1606
1661
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
1662
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
1663
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1607
1664
|
}, "strip", z.ZodTypeAny, {
|
|
1608
1665
|
description: string;
|
|
1609
1666
|
authField: string;
|
|
1610
1667
|
label: string;
|
|
1611
1668
|
optional?: boolean | undefined;
|
|
1669
|
+
sensitive?: boolean | undefined;
|
|
1612
1670
|
}, {
|
|
1613
1671
|
description: string;
|
|
1614
1672
|
authField: string;
|
|
1615
1673
|
label: string;
|
|
1616
1674
|
optional?: boolean | undefined;
|
|
1675
|
+
sensitive?: boolean | undefined;
|
|
1617
1676
|
}>, "many">>;
|
|
1618
1677
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
1619
1678
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1629,6 +1688,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1629
1688
|
authField: string;
|
|
1630
1689
|
label: string;
|
|
1631
1690
|
optional?: boolean | undefined;
|
|
1691
|
+
sensitive?: boolean | undefined;
|
|
1632
1692
|
}[] | undefined;
|
|
1633
1693
|
authenticated?: boolean | undefined;
|
|
1634
1694
|
chatMenu?: boolean | undefined;
|
|
@@ -1644,6 +1704,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1644
1704
|
authField: string;
|
|
1645
1705
|
label: string;
|
|
1646
1706
|
optional?: boolean | undefined;
|
|
1707
|
+
sensitive?: boolean | undefined;
|
|
1647
1708
|
}[] | undefined;
|
|
1648
1709
|
authenticated?: boolean | undefined;
|
|
1649
1710
|
chatMenu?: boolean | undefined;
|
|
@@ -1703,6 +1764,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1703
1764
|
};
|
|
1704
1765
|
}>, "many">>;
|
|
1705
1766
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1767
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1706
1768
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
1707
1769
|
file_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1708
1770
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
@@ -1737,18 +1799,12 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1737
1799
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
1738
1800
|
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1739
1801
|
}, "strip", z.ZodTypeAny, {
|
|
1740
|
-
endpoint: string | null;
|
|
1741
1802
|
conversationId: string | null;
|
|
1803
|
+
endpoint: string | null;
|
|
1742
1804
|
title: string | null;
|
|
1743
|
-
parentMessageId?: string | undefined;
|
|
1744
|
-
model?: string | null | undefined;
|
|
1745
|
-
isTemporary?: boolean | undefined;
|
|
1746
|
-
expiredAt?: string | null | undefined;
|
|
1747
|
-
createdAt?: string | undefined;
|
|
1748
|
-
updatedAt?: string | undefined;
|
|
1749
|
-
iconURL?: string | null | undefined;
|
|
1750
1805
|
user?: string | undefined;
|
|
1751
|
-
|
|
1806
|
+
tags?: string[] | undefined;
|
|
1807
|
+
model?: string | null | undefined;
|
|
1752
1808
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1753
1809
|
isArchived?: boolean | undefined;
|
|
1754
1810
|
messages?: string[] | undefined;
|
|
@@ -1762,6 +1818,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1762
1818
|
authField: string;
|
|
1763
1819
|
label: string;
|
|
1764
1820
|
optional?: boolean | undefined;
|
|
1821
|
+
sensitive?: boolean | undefined;
|
|
1765
1822
|
}[] | undefined;
|
|
1766
1823
|
authenticated?: boolean | undefined;
|
|
1767
1824
|
chatMenu?: boolean | undefined;
|
|
@@ -1777,6 +1834,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1777
1834
|
top_p?: number | undefined;
|
|
1778
1835
|
frequency_penalty?: number | undefined;
|
|
1779
1836
|
presence_penalty?: number | undefined;
|
|
1837
|
+
parentMessageId?: string | undefined;
|
|
1780
1838
|
maxOutputTokens?: number | null | undefined;
|
|
1781
1839
|
maxContextTokens?: number | undefined;
|
|
1782
1840
|
max_tokens?: number | undefined;
|
|
@@ -1787,6 +1845,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1787
1845
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
1788
1846
|
stream?: boolean | undefined;
|
|
1789
1847
|
artifacts?: string | undefined;
|
|
1848
|
+
context?: string | null | undefined;
|
|
1790
1849
|
examples?: {
|
|
1791
1850
|
input: {
|
|
1792
1851
|
content: string;
|
|
@@ -1795,7 +1854,9 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1795
1854
|
content: string;
|
|
1796
1855
|
};
|
|
1797
1856
|
}[] | undefined;
|
|
1798
|
-
|
|
1857
|
+
chatProjectId?: string | null | undefined;
|
|
1858
|
+
createdAt?: string | undefined;
|
|
1859
|
+
updatedAt?: string | undefined;
|
|
1799
1860
|
resendFiles?: boolean | undefined;
|
|
1800
1861
|
file_ids?: string[] | undefined;
|
|
1801
1862
|
imageDetail?: ImageDetail | undefined;
|
|
@@ -1819,24 +1880,21 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1819
1880
|
stop?: string[] | undefined;
|
|
1820
1881
|
greeting?: string | undefined;
|
|
1821
1882
|
spec?: string | null | undefined;
|
|
1883
|
+
iconURL?: string | null | undefined;
|
|
1884
|
+
expiredAt?: string | null | undefined;
|
|
1885
|
+
isTemporary?: boolean | undefined;
|
|
1822
1886
|
fileTokenLimit?: number | undefined;
|
|
1823
1887
|
resendImages?: boolean | undefined;
|
|
1824
1888
|
chatGptLabel?: string | null | undefined;
|
|
1825
1889
|
}, {
|
|
1826
|
-
endpoint: string | null;
|
|
1827
1890
|
conversationId: string | null;
|
|
1828
|
-
|
|
1829
|
-
model?: string | null | undefined;
|
|
1830
|
-
title?: string | null | undefined;
|
|
1831
|
-
isTemporary?: boolean | undefined;
|
|
1832
|
-
expiredAt?: string | null | undefined;
|
|
1833
|
-
createdAt?: string | undefined;
|
|
1834
|
-
updatedAt?: string | undefined;
|
|
1835
|
-
iconURL?: string | null | undefined;
|
|
1891
|
+
endpoint: string | null;
|
|
1836
1892
|
user?: string | undefined;
|
|
1837
|
-
|
|
1893
|
+
tags?: string[] | undefined;
|
|
1894
|
+
model?: string | null | undefined;
|
|
1838
1895
|
endpointType?: EModelEndpoint | null | undefined;
|
|
1839
1896
|
isArchived?: boolean | undefined;
|
|
1897
|
+
title?: string | null | undefined;
|
|
1840
1898
|
messages?: string[] | undefined;
|
|
1841
1899
|
tools?: string[] | {
|
|
1842
1900
|
name: string;
|
|
@@ -1848,6 +1906,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1848
1906
|
authField: string;
|
|
1849
1907
|
label: string;
|
|
1850
1908
|
optional?: boolean | undefined;
|
|
1909
|
+
sensitive?: boolean | undefined;
|
|
1851
1910
|
}[] | undefined;
|
|
1852
1911
|
authenticated?: boolean | undefined;
|
|
1853
1912
|
chatMenu?: boolean | undefined;
|
|
@@ -1863,6 +1922,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1863
1922
|
top_p?: number | undefined;
|
|
1864
1923
|
frequency_penalty?: number | undefined;
|
|
1865
1924
|
presence_penalty?: number | undefined;
|
|
1925
|
+
parentMessageId?: string | undefined;
|
|
1866
1926
|
maxOutputTokens?: string | number | null | undefined;
|
|
1867
1927
|
maxContextTokens?: string | number | undefined;
|
|
1868
1928
|
max_tokens?: string | number | undefined;
|
|
@@ -1873,6 +1933,7 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1873
1933
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
1874
1934
|
stream?: boolean | undefined;
|
|
1875
1935
|
artifacts?: string | undefined;
|
|
1936
|
+
context?: string | null | undefined;
|
|
1876
1937
|
examples?: {
|
|
1877
1938
|
input: {
|
|
1878
1939
|
content: string;
|
|
@@ -1881,7 +1942,9 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1881
1942
|
content: string;
|
|
1882
1943
|
};
|
|
1883
1944
|
}[] | undefined;
|
|
1884
|
-
|
|
1945
|
+
chatProjectId?: string | null | undefined;
|
|
1946
|
+
createdAt?: string | undefined;
|
|
1947
|
+
updatedAt?: string | undefined;
|
|
1885
1948
|
resendFiles?: boolean | undefined;
|
|
1886
1949
|
file_ids?: string[] | undefined;
|
|
1887
1950
|
imageDetail?: ImageDetail | undefined;
|
|
@@ -1905,6 +1968,9 @@ export declare const tConvoUpdateSchema: z.ZodObject<{
|
|
|
1905
1968
|
stop?: string[] | undefined;
|
|
1906
1969
|
greeting?: string | undefined;
|
|
1907
1970
|
spec?: string | null | undefined;
|
|
1971
|
+
iconURL?: string | null | undefined;
|
|
1972
|
+
expiredAt?: string | null | undefined;
|
|
1973
|
+
isTemporary?: boolean | undefined;
|
|
1908
1974
|
fileTokenLimit?: string | number | undefined;
|
|
1909
1975
|
resendImages?: boolean | undefined;
|
|
1910
1976
|
chatGptLabel?: string | null | undefined;
|
|
@@ -1927,16 +1993,20 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
1927
1993
|
label: z.ZodString;
|
|
1928
1994
|
description: z.ZodString;
|
|
1929
1995
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
1996
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
1997
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1930
1998
|
}, "strip", z.ZodTypeAny, {
|
|
1931
1999
|
description: string;
|
|
1932
2000
|
authField: string;
|
|
1933
2001
|
label: string;
|
|
1934
2002
|
optional?: boolean | undefined;
|
|
2003
|
+
sensitive?: boolean | undefined;
|
|
1935
2004
|
}, {
|
|
1936
2005
|
description: string;
|
|
1937
2006
|
authField: string;
|
|
1938
2007
|
label: string;
|
|
1939
2008
|
optional?: boolean | undefined;
|
|
2009
|
+
sensitive?: boolean | undefined;
|
|
1940
2010
|
}>, "many">>;
|
|
1941
2011
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
1942
2012
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1952,6 +2022,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
1952
2022
|
authField: string;
|
|
1953
2023
|
label: string;
|
|
1954
2024
|
optional?: boolean | undefined;
|
|
2025
|
+
sensitive?: boolean | undefined;
|
|
1955
2026
|
}[] | undefined;
|
|
1956
2027
|
authenticated?: boolean | undefined;
|
|
1957
2028
|
chatMenu?: boolean | undefined;
|
|
@@ -1967,6 +2038,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
1967
2038
|
authField: string;
|
|
1968
2039
|
label: string;
|
|
1969
2040
|
optional?: boolean | undefined;
|
|
2041
|
+
sensitive?: boolean | undefined;
|
|
1970
2042
|
}[] | undefined;
|
|
1971
2043
|
authenticated?: boolean | undefined;
|
|
1972
2044
|
chatMenu?: boolean | undefined;
|
|
@@ -2026,6 +2098,7 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2026
2098
|
};
|
|
2027
2099
|
}>, "many">>;
|
|
2028
2100
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2101
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2029
2102
|
createdAt: z.ZodString;
|
|
2030
2103
|
updatedAt: z.ZodString;
|
|
2031
2104
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2144,13 +2217,9 @@ export declare const tQueryParamsSchema: z.ZodObject<Pick<{
|
|
|
2144
2217
|
* omitted to avoid duplicate configuration surface.
|
|
2145
2218
|
*/
|
|
2146
2219
|
export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
2147
|
-
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
2148
|
-
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2149
|
-
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
2150
|
-
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2151
|
-
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2152
2220
|
user: z.ZodOptional<z.ZodString>;
|
|
2153
|
-
|
|
2221
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2222
|
+
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2154
2223
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
2155
2224
|
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
2156
2225
|
messages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2164,16 +2233,20 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2164
2233
|
label: z.ZodString;
|
|
2165
2234
|
description: z.ZodString;
|
|
2166
2235
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
2236
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
2237
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2167
2238
|
}, "strip", z.ZodTypeAny, {
|
|
2168
2239
|
description: string;
|
|
2169
2240
|
authField: string;
|
|
2170
2241
|
label: string;
|
|
2171
2242
|
optional?: boolean | undefined;
|
|
2243
|
+
sensitive?: boolean | undefined;
|
|
2172
2244
|
}, {
|
|
2173
2245
|
description: string;
|
|
2174
2246
|
authField: string;
|
|
2175
2247
|
label: string;
|
|
2176
2248
|
optional?: boolean | undefined;
|
|
2249
|
+
sensitive?: boolean | undefined;
|
|
2177
2250
|
}>, "many">>;
|
|
2178
2251
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
2179
2252
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2189,6 +2262,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2189
2262
|
authField: string;
|
|
2190
2263
|
label: string;
|
|
2191
2264
|
optional?: boolean | undefined;
|
|
2265
|
+
sensitive?: boolean | undefined;
|
|
2192
2266
|
}[] | undefined;
|
|
2193
2267
|
authenticated?: boolean | undefined;
|
|
2194
2268
|
chatMenu?: boolean | undefined;
|
|
@@ -2204,6 +2278,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2204
2278
|
authField: string;
|
|
2205
2279
|
label: string;
|
|
2206
2280
|
optional?: boolean | undefined;
|
|
2281
|
+
sensitive?: boolean | undefined;
|
|
2207
2282
|
}[] | undefined;
|
|
2208
2283
|
authenticated?: boolean | undefined;
|
|
2209
2284
|
chatMenu?: boolean | undefined;
|
|
@@ -2219,6 +2294,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2219
2294
|
top_p: z.ZodOptional<z.ZodNumber>;
|
|
2220
2295
|
frequency_penalty: z.ZodOptional<z.ZodNumber>;
|
|
2221
2296
|
presence_penalty: z.ZodOptional<z.ZodNumber>;
|
|
2297
|
+
parentMessageId: z.ZodOptional<z.ZodString>;
|
|
2222
2298
|
maxOutputTokens: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>>;
|
|
2223
2299
|
maxContextTokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
2224
2300
|
max_tokens: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
@@ -2229,6 +2305,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2229
2305
|
thinkingLevel: z.ZodOptional<z.ZodNativeEnum<typeof ThinkingLevel>>;
|
|
2230
2306
|
stream: z.ZodOptional<z.ZodBoolean>;
|
|
2231
2307
|
artifacts: z.ZodOptional<z.ZodString>;
|
|
2308
|
+
context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2232
2309
|
examples: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2233
2310
|
input: z.ZodObject<{
|
|
2234
2311
|
content: z.ZodString;
|
|
@@ -2259,7 +2336,6 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2259
2336
|
content: string;
|
|
2260
2337
|
};
|
|
2261
2338
|
}>, "many">>;
|
|
2262
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2263
2339
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
2264
2340
|
file_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2265
2341
|
imageDetail: z.ZodOptional<z.ZodNativeEnum<typeof ImageDetail>>;
|
|
@@ -2283,6 +2359,9 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2283
2359
|
stop: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2284
2360
|
greeting: z.ZodOptional<z.ZodString>;
|
|
2285
2361
|
spec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2362
|
+
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2363
|
+
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2364
|
+
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
2286
2365
|
fileTokenLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
2287
2366
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
2288
2367
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2293,12 +2372,9 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2293
2372
|
defaultPreset: z.ZodOptional<z.ZodBoolean>;
|
|
2294
2373
|
order: z.ZodOptional<z.ZodNumber>;
|
|
2295
2374
|
endpoint: z.ZodNullable<z.ZodUnion<[z.ZodNativeEnum<typeof EModelEndpoint>, z.ZodString]>>;
|
|
2296
|
-
}, "
|
|
2375
|
+
}, "user" | "tags" | "conversationId" | "isArchived" | "title" | "messages" | "parentMessageId" | "file_ids" | "presetOverride" | "spec" | "expiredAt" | "resendImages" | "chatGptLabel" | "presetId" | "defaultPreset" | "order">, "strip", z.ZodTypeAny, {
|
|
2297
2376
|
endpoint: string | null;
|
|
2298
2377
|
model?: string | null | undefined;
|
|
2299
|
-
isTemporary?: boolean | undefined;
|
|
2300
|
-
iconURL?: string | null | undefined;
|
|
2301
|
-
context?: string | null | undefined;
|
|
2302
2378
|
endpointType?: EModelEndpoint | null | undefined;
|
|
2303
2379
|
tools?: string[] | {
|
|
2304
2380
|
name: string;
|
|
@@ -2310,6 +2386,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2310
2386
|
authField: string;
|
|
2311
2387
|
label: string;
|
|
2312
2388
|
optional?: boolean | undefined;
|
|
2389
|
+
sensitive?: boolean | undefined;
|
|
2313
2390
|
}[] | undefined;
|
|
2314
2391
|
authenticated?: boolean | undefined;
|
|
2315
2392
|
chatMenu?: boolean | undefined;
|
|
@@ -2335,6 +2412,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2335
2412
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
2336
2413
|
stream?: boolean | undefined;
|
|
2337
2414
|
artifacts?: string | undefined;
|
|
2415
|
+
context?: string | null | undefined;
|
|
2338
2416
|
examples?: {
|
|
2339
2417
|
input: {
|
|
2340
2418
|
content: string;
|
|
@@ -2363,13 +2441,12 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2363
2441
|
append_current_datetime?: boolean | undefined;
|
|
2364
2442
|
stop?: string[] | undefined;
|
|
2365
2443
|
greeting?: string | undefined;
|
|
2444
|
+
iconURL?: string | null | undefined;
|
|
2445
|
+
isTemporary?: boolean | undefined;
|
|
2366
2446
|
fileTokenLimit?: number | undefined;
|
|
2367
2447
|
}, {
|
|
2368
2448
|
endpoint: string | null;
|
|
2369
2449
|
model?: string | null | undefined;
|
|
2370
|
-
isTemporary?: boolean | undefined;
|
|
2371
|
-
iconURL?: string | null | undefined;
|
|
2372
|
-
context?: string | null | undefined;
|
|
2373
2450
|
endpointType?: EModelEndpoint | null | undefined;
|
|
2374
2451
|
tools?: string[] | {
|
|
2375
2452
|
name: string;
|
|
@@ -2381,6 +2458,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2381
2458
|
authField: string;
|
|
2382
2459
|
label: string;
|
|
2383
2460
|
optional?: boolean | undefined;
|
|
2461
|
+
sensitive?: boolean | undefined;
|
|
2384
2462
|
}[] | undefined;
|
|
2385
2463
|
authenticated?: boolean | undefined;
|
|
2386
2464
|
chatMenu?: boolean | undefined;
|
|
@@ -2406,6 +2484,7 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2406
2484
|
thinkingLevel?: ThinkingLevel | undefined;
|
|
2407
2485
|
stream?: boolean | undefined;
|
|
2408
2486
|
artifacts?: string | undefined;
|
|
2487
|
+
context?: string | null | undefined;
|
|
2409
2488
|
examples?: {
|
|
2410
2489
|
input: {
|
|
2411
2490
|
content: string;
|
|
@@ -2434,6 +2513,8 @@ export declare const tModelSpecPresetSchema: z.ZodObject<Omit<{
|
|
|
2434
2513
|
append_current_datetime?: boolean | undefined;
|
|
2435
2514
|
stop?: string[] | undefined;
|
|
2436
2515
|
greeting?: string | undefined;
|
|
2516
|
+
iconURL?: string | null | undefined;
|
|
2517
|
+
isTemporary?: boolean | undefined;
|
|
2437
2518
|
fileTokenLimit?: string | number | undefined;
|
|
2438
2519
|
}>;
|
|
2439
2520
|
export type TModelSpecPreset = z.infer<typeof tModelSpecPresetSchema>;
|
|
@@ -2448,27 +2529,24 @@ export declare const tSharedLinkSchema: z.ZodObject<{
|
|
|
2448
2529
|
shareId: z.ZodString;
|
|
2449
2530
|
targetMessageId: z.ZodOptional<z.ZodString>;
|
|
2450
2531
|
messages: z.ZodArray<z.ZodString, "many">;
|
|
2451
|
-
isPublic: z.ZodBoolean;
|
|
2452
2532
|
title: z.ZodString;
|
|
2453
2533
|
createdAt: z.ZodString;
|
|
2454
2534
|
updatedAt: z.ZodString;
|
|
2455
2535
|
}, "strip", z.ZodTypeAny, {
|
|
2456
2536
|
conversationId: string;
|
|
2457
2537
|
title: string;
|
|
2538
|
+
messages: string[];
|
|
2458
2539
|
createdAt: string;
|
|
2459
2540
|
updatedAt: string;
|
|
2460
|
-
messages: string[];
|
|
2461
2541
|
shareId: string;
|
|
2462
|
-
isPublic: boolean;
|
|
2463
2542
|
targetMessageId?: string | undefined;
|
|
2464
2543
|
}, {
|
|
2465
2544
|
conversationId: string;
|
|
2466
2545
|
title: string;
|
|
2546
|
+
messages: string[];
|
|
2467
2547
|
createdAt: string;
|
|
2468
2548
|
updatedAt: string;
|
|
2469
|
-
messages: string[];
|
|
2470
2549
|
shareId: string;
|
|
2471
|
-
isPublic: boolean;
|
|
2472
2550
|
targetMessageId?: string | undefined;
|
|
2473
2551
|
}>;
|
|
2474
2552
|
export type TSharedLink = z.infer<typeof tSharedLinkSchema>;
|
|
@@ -2482,20 +2560,20 @@ export declare const tConversationTagSchema: z.ZodObject<{
|
|
|
2482
2560
|
count: z.ZodNumber;
|
|
2483
2561
|
position: z.ZodNumber;
|
|
2484
2562
|
}, "strip", z.ZodTypeAny, {
|
|
2563
|
+
user: string;
|
|
2485
2564
|
createdAt: string;
|
|
2486
2565
|
updatedAt: string;
|
|
2487
2566
|
tag: string;
|
|
2488
2567
|
_id: string;
|
|
2489
|
-
user: string;
|
|
2490
2568
|
count: number;
|
|
2491
2569
|
position: number;
|
|
2492
2570
|
description?: string | undefined;
|
|
2493
2571
|
}, {
|
|
2572
|
+
user: string;
|
|
2494
2573
|
createdAt: string;
|
|
2495
2574
|
updatedAt: string;
|
|
2496
2575
|
tag: string;
|
|
2497
2576
|
_id: string;
|
|
2498
|
-
user: string;
|
|
2499
2577
|
count: number;
|
|
2500
2578
|
position: number;
|
|
2501
2579
|
description?: string | undefined;
|
|
@@ -2519,16 +2597,20 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2519
2597
|
label: z.ZodString;
|
|
2520
2598
|
description: z.ZodString;
|
|
2521
2599
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
2600
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
2601
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2522
2602
|
}, "strip", z.ZodTypeAny, {
|
|
2523
2603
|
description: string;
|
|
2524
2604
|
authField: string;
|
|
2525
2605
|
label: string;
|
|
2526
2606
|
optional?: boolean | undefined;
|
|
2607
|
+
sensitive?: boolean | undefined;
|
|
2527
2608
|
}, {
|
|
2528
2609
|
description: string;
|
|
2529
2610
|
authField: string;
|
|
2530
2611
|
label: string;
|
|
2531
2612
|
optional?: boolean | undefined;
|
|
2613
|
+
sensitive?: boolean | undefined;
|
|
2532
2614
|
}>, "many">>;
|
|
2533
2615
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
2534
2616
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2544,6 +2626,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2544
2626
|
authField: string;
|
|
2545
2627
|
label: string;
|
|
2546
2628
|
optional?: boolean | undefined;
|
|
2629
|
+
sensitive?: boolean | undefined;
|
|
2547
2630
|
}[] | undefined;
|
|
2548
2631
|
authenticated?: boolean | undefined;
|
|
2549
2632
|
chatMenu?: boolean | undefined;
|
|
@@ -2559,6 +2642,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2559
2642
|
authField: string;
|
|
2560
2643
|
label: string;
|
|
2561
2644
|
optional?: boolean | undefined;
|
|
2645
|
+
sensitive?: boolean | undefined;
|
|
2562
2646
|
}[] | undefined;
|
|
2563
2647
|
authenticated?: boolean | undefined;
|
|
2564
2648
|
chatMenu?: boolean | undefined;
|
|
@@ -2618,6 +2702,7 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2618
2702
|
};
|
|
2619
2703
|
}>, "many">>;
|
|
2620
2704
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2705
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2621
2706
|
createdAt: z.ZodString;
|
|
2622
2707
|
updatedAt: z.ZodString;
|
|
2623
2708
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2652,9 +2737,8 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2652
2737
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
2653
2738
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
2654
2739
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2655
|
-
}, "model" | "
|
|
2740
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
2656
2741
|
model?: string | null | undefined;
|
|
2657
|
-
iconURL?: string | null | undefined;
|
|
2658
2742
|
modelLabel?: string | null | undefined;
|
|
2659
2743
|
promptPrefix?: string | null | undefined;
|
|
2660
2744
|
temperature?: number | null | undefined;
|
|
@@ -2674,13 +2758,14 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2674
2758
|
content: string;
|
|
2675
2759
|
};
|
|
2676
2760
|
}[] | undefined;
|
|
2761
|
+
chatProjectId?: string | null | undefined;
|
|
2677
2762
|
web_search?: boolean | undefined;
|
|
2678
2763
|
greeting?: string | undefined;
|
|
2679
2764
|
spec?: string | null | undefined;
|
|
2765
|
+
iconURL?: string | null | undefined;
|
|
2680
2766
|
fileTokenLimit?: number | undefined;
|
|
2681
2767
|
}, {
|
|
2682
2768
|
model?: string | null | undefined;
|
|
2683
|
-
iconURL?: string | null | undefined;
|
|
2684
2769
|
modelLabel?: string | null | undefined;
|
|
2685
2770
|
promptPrefix?: string | null | undefined;
|
|
2686
2771
|
temperature?: number | null | undefined;
|
|
@@ -2700,9 +2785,11 @@ export declare const googleBaseSchema: z.ZodObject<Pick<{
|
|
|
2700
2785
|
content: string;
|
|
2701
2786
|
};
|
|
2702
2787
|
}[] | undefined;
|
|
2788
|
+
chatProjectId?: string | null | undefined;
|
|
2703
2789
|
web_search?: boolean | undefined;
|
|
2704
2790
|
greeting?: string | undefined;
|
|
2705
2791
|
spec?: string | null | undefined;
|
|
2792
|
+
iconURL?: string | null | undefined;
|
|
2706
2793
|
fileTokenLimit?: string | number | undefined;
|
|
2707
2794
|
}>;
|
|
2708
2795
|
export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
@@ -2723,16 +2810,20 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2723
2810
|
label: z.ZodString;
|
|
2724
2811
|
description: z.ZodString;
|
|
2725
2812
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
2813
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
2814
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2726
2815
|
}, "strip", z.ZodTypeAny, {
|
|
2727
2816
|
description: string;
|
|
2728
2817
|
authField: string;
|
|
2729
2818
|
label: string;
|
|
2730
2819
|
optional?: boolean | undefined;
|
|
2820
|
+
sensitive?: boolean | undefined;
|
|
2731
2821
|
}, {
|
|
2732
2822
|
description: string;
|
|
2733
2823
|
authField: string;
|
|
2734
2824
|
label: string;
|
|
2735
2825
|
optional?: boolean | undefined;
|
|
2826
|
+
sensitive?: boolean | undefined;
|
|
2736
2827
|
}>, "many">>;
|
|
2737
2828
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
2738
2829
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2748,6 +2839,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2748
2839
|
authField: string;
|
|
2749
2840
|
label: string;
|
|
2750
2841
|
optional?: boolean | undefined;
|
|
2842
|
+
sensitive?: boolean | undefined;
|
|
2751
2843
|
}[] | undefined;
|
|
2752
2844
|
authenticated?: boolean | undefined;
|
|
2753
2845
|
chatMenu?: boolean | undefined;
|
|
@@ -2763,6 +2855,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2763
2855
|
authField: string;
|
|
2764
2856
|
label: string;
|
|
2765
2857
|
optional?: boolean | undefined;
|
|
2858
|
+
sensitive?: boolean | undefined;
|
|
2766
2859
|
}[] | undefined;
|
|
2767
2860
|
authenticated?: boolean | undefined;
|
|
2768
2861
|
chatMenu?: boolean | undefined;
|
|
@@ -2822,6 +2915,7 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2822
2915
|
};
|
|
2823
2916
|
}>, "many">>;
|
|
2824
2917
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2918
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2825
2919
|
createdAt: z.ZodString;
|
|
2826
2920
|
updatedAt: z.ZodString;
|
|
2827
2921
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2856,9 +2950,8 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2856
2950
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
2857
2951
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
2858
2952
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2859
|
-
}, "model" | "
|
|
2953
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
2860
2954
|
model?: string | null | undefined;
|
|
2861
|
-
iconURL?: string | null | undefined;
|
|
2862
2955
|
modelLabel?: string | null | undefined;
|
|
2863
2956
|
promptPrefix?: string | null | undefined;
|
|
2864
2957
|
temperature?: number | null | undefined;
|
|
@@ -2878,13 +2971,14 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2878
2971
|
content: string;
|
|
2879
2972
|
};
|
|
2880
2973
|
}[] | undefined;
|
|
2974
|
+
chatProjectId?: string | null | undefined;
|
|
2881
2975
|
web_search?: boolean | undefined;
|
|
2882
2976
|
greeting?: string | undefined;
|
|
2883
2977
|
spec?: string | null | undefined;
|
|
2978
|
+
iconURL?: string | null | undefined;
|
|
2884
2979
|
fileTokenLimit?: number | undefined;
|
|
2885
2980
|
}, {
|
|
2886
2981
|
model?: string | null | undefined;
|
|
2887
|
-
iconURL?: string | null | undefined;
|
|
2888
2982
|
modelLabel?: string | null | undefined;
|
|
2889
2983
|
promptPrefix?: string | null | undefined;
|
|
2890
2984
|
temperature?: number | null | undefined;
|
|
@@ -2904,13 +2998,14 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2904
2998
|
content: string;
|
|
2905
2999
|
};
|
|
2906
3000
|
}[] | undefined;
|
|
3001
|
+
chatProjectId?: string | null | undefined;
|
|
2907
3002
|
web_search?: boolean | undefined;
|
|
2908
3003
|
greeting?: string | undefined;
|
|
2909
3004
|
spec?: string | null | undefined;
|
|
3005
|
+
iconURL?: string | null | undefined;
|
|
2910
3006
|
fileTokenLimit?: string | number | undefined;
|
|
2911
3007
|
}>, Partial<Partial<TConversation>>, {
|
|
2912
3008
|
model?: string | null | undefined;
|
|
2913
|
-
iconURL?: string | null | undefined;
|
|
2914
3009
|
modelLabel?: string | null | undefined;
|
|
2915
3010
|
promptPrefix?: string | null | undefined;
|
|
2916
3011
|
temperature?: number | null | undefined;
|
|
@@ -2930,9 +3025,11 @@ export declare const googleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
2930
3025
|
content: string;
|
|
2931
3026
|
};
|
|
2932
3027
|
}[] | undefined;
|
|
3028
|
+
chatProjectId?: string | null | undefined;
|
|
2933
3029
|
web_search?: boolean | undefined;
|
|
2934
3030
|
greeting?: string | undefined;
|
|
2935
3031
|
spec?: string | null | undefined;
|
|
3032
|
+
iconURL?: string | null | undefined;
|
|
2936
3033
|
fileTokenLimit?: string | number | undefined;
|
|
2937
3034
|
}>>;
|
|
2938
3035
|
/**
|
|
@@ -3011,16 +3108,20 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3011
3108
|
label: z.ZodString;
|
|
3012
3109
|
description: z.ZodString;
|
|
3013
3110
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
3111
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
3112
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3014
3113
|
}, "strip", z.ZodTypeAny, {
|
|
3015
3114
|
description: string;
|
|
3016
3115
|
authField: string;
|
|
3017
3116
|
label: string;
|
|
3018
3117
|
optional?: boolean | undefined;
|
|
3118
|
+
sensitive?: boolean | undefined;
|
|
3019
3119
|
}, {
|
|
3020
3120
|
description: string;
|
|
3021
3121
|
authField: string;
|
|
3022
3122
|
label: string;
|
|
3023
3123
|
optional?: boolean | undefined;
|
|
3124
|
+
sensitive?: boolean | undefined;
|
|
3024
3125
|
}>, "many">>;
|
|
3025
3126
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
3026
3127
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3036,6 +3137,7 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3036
3137
|
authField: string;
|
|
3037
3138
|
label: string;
|
|
3038
3139
|
optional?: boolean | undefined;
|
|
3140
|
+
sensitive?: boolean | undefined;
|
|
3039
3141
|
}[] | undefined;
|
|
3040
3142
|
authenticated?: boolean | undefined;
|
|
3041
3143
|
chatMenu?: boolean | undefined;
|
|
@@ -3051,6 +3153,7 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3051
3153
|
authField: string;
|
|
3052
3154
|
label: string;
|
|
3053
3155
|
optional?: boolean | undefined;
|
|
3156
|
+
sensitive?: boolean | undefined;
|
|
3054
3157
|
}[] | undefined;
|
|
3055
3158
|
authenticated?: boolean | undefined;
|
|
3056
3159
|
chatMenu?: boolean | undefined;
|
|
@@ -3110,6 +3213,7 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3110
3213
|
};
|
|
3111
3214
|
}>, "many">>;
|
|
3112
3215
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3216
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3113
3217
|
createdAt: z.ZodString;
|
|
3114
3218
|
updatedAt: z.ZodString;
|
|
3115
3219
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3144,26 +3248,28 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3144
3248
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
3145
3249
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
3146
3250
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3147
|
-
}, "model" | "
|
|
3251
|
+
}, "model" | "promptPrefix" | "artifacts" | "chatProjectId" | "assistant_id" | "instructions" | "append_current_datetime" | "greeting" | "spec" | "iconURL">, "strip", z.ZodTypeAny, {
|
|
3148
3252
|
model?: string | null | undefined;
|
|
3149
|
-
iconURL?: string | null | undefined;
|
|
3150
3253
|
promptPrefix?: string | null | undefined;
|
|
3151
3254
|
artifacts?: string | undefined;
|
|
3255
|
+
chatProjectId?: string | null | undefined;
|
|
3152
3256
|
assistant_id?: string | undefined;
|
|
3153
3257
|
instructions?: string | undefined;
|
|
3154
3258
|
append_current_datetime?: boolean | undefined;
|
|
3155
3259
|
greeting?: string | undefined;
|
|
3156
3260
|
spec?: string | null | undefined;
|
|
3261
|
+
iconURL?: string | null | undefined;
|
|
3157
3262
|
}, {
|
|
3158
3263
|
model?: string | null | undefined;
|
|
3159
|
-
iconURL?: string | null | undefined;
|
|
3160
3264
|
promptPrefix?: string | null | undefined;
|
|
3161
3265
|
artifacts?: string | undefined;
|
|
3266
|
+
chatProjectId?: string | null | undefined;
|
|
3162
3267
|
assistant_id?: string | undefined;
|
|
3163
3268
|
instructions?: string | undefined;
|
|
3164
3269
|
append_current_datetime?: boolean | undefined;
|
|
3165
3270
|
greeting?: string | undefined;
|
|
3166
3271
|
spec?: string | null | undefined;
|
|
3272
|
+
iconURL?: string | null | undefined;
|
|
3167
3273
|
}>, {
|
|
3168
3274
|
model: string;
|
|
3169
3275
|
assistant_id: string | undefined;
|
|
@@ -3174,16 +3280,18 @@ export declare const assistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3174
3280
|
spec: string | undefined;
|
|
3175
3281
|
append_current_datetime: boolean;
|
|
3176
3282
|
artifacts?: string | undefined;
|
|
3283
|
+
chatProjectId?: string | null | undefined;
|
|
3177
3284
|
}, {
|
|
3178
3285
|
model?: string | null | undefined;
|
|
3179
|
-
iconURL?: string | null | undefined;
|
|
3180
3286
|
promptPrefix?: string | null | undefined;
|
|
3181
3287
|
artifacts?: string | undefined;
|
|
3288
|
+
chatProjectId?: string | null | undefined;
|
|
3182
3289
|
assistant_id?: string | undefined;
|
|
3183
3290
|
instructions?: string | undefined;
|
|
3184
3291
|
append_current_datetime?: boolean | undefined;
|
|
3185
3292
|
greeting?: string | undefined;
|
|
3186
3293
|
spec?: string | null | undefined;
|
|
3294
|
+
iconURL?: string | null | undefined;
|
|
3187
3295
|
}>>;
|
|
3188
3296
|
export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
3189
3297
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -3203,16 +3311,20 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3203
3311
|
label: z.ZodString;
|
|
3204
3312
|
description: z.ZodString;
|
|
3205
3313
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
3314
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
3315
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3206
3316
|
}, "strip", z.ZodTypeAny, {
|
|
3207
3317
|
description: string;
|
|
3208
3318
|
authField: string;
|
|
3209
3319
|
label: string;
|
|
3210
3320
|
optional?: boolean | undefined;
|
|
3321
|
+
sensitive?: boolean | undefined;
|
|
3211
3322
|
}, {
|
|
3212
3323
|
description: string;
|
|
3213
3324
|
authField: string;
|
|
3214
3325
|
label: string;
|
|
3215
3326
|
optional?: boolean | undefined;
|
|
3327
|
+
sensitive?: boolean | undefined;
|
|
3216
3328
|
}>, "many">>;
|
|
3217
3329
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
3218
3330
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3228,6 +3340,7 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3228
3340
|
authField: string;
|
|
3229
3341
|
label: string;
|
|
3230
3342
|
optional?: boolean | undefined;
|
|
3343
|
+
sensitive?: boolean | undefined;
|
|
3231
3344
|
}[] | undefined;
|
|
3232
3345
|
authenticated?: boolean | undefined;
|
|
3233
3346
|
chatMenu?: boolean | undefined;
|
|
@@ -3243,6 +3356,7 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3243
3356
|
authField: string;
|
|
3244
3357
|
label: string;
|
|
3245
3358
|
optional?: boolean | undefined;
|
|
3359
|
+
sensitive?: boolean | undefined;
|
|
3246
3360
|
}[] | undefined;
|
|
3247
3361
|
authenticated?: boolean | undefined;
|
|
3248
3362
|
chatMenu?: boolean | undefined;
|
|
@@ -3302,6 +3416,7 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3302
3416
|
};
|
|
3303
3417
|
}>, "many">>;
|
|
3304
3418
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3419
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3305
3420
|
createdAt: z.ZodString;
|
|
3306
3421
|
updatedAt: z.ZodString;
|
|
3307
3422
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3336,42 +3451,46 @@ export declare const compactAssistantSchema: z.ZodCatch<z.ZodEffects<z.ZodObject
|
|
|
3336
3451
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
3337
3452
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
3338
3453
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3339
|
-
}, "model" | "
|
|
3454
|
+
}, "model" | "promptPrefix" | "artifacts" | "chatProjectId" | "assistant_id" | "instructions" | "greeting" | "spec" | "iconURL">, "strip", z.ZodTypeAny, {
|
|
3340
3455
|
model?: string | null | undefined;
|
|
3341
|
-
iconURL?: string | null | undefined;
|
|
3342
3456
|
promptPrefix?: string | null | undefined;
|
|
3343
3457
|
artifacts?: string | undefined;
|
|
3458
|
+
chatProjectId?: string | null | undefined;
|
|
3344
3459
|
assistant_id?: string | undefined;
|
|
3345
3460
|
instructions?: string | undefined;
|
|
3346
3461
|
greeting?: string | undefined;
|
|
3347
3462
|
spec?: string | null | undefined;
|
|
3463
|
+
iconURL?: string | null | undefined;
|
|
3348
3464
|
}, {
|
|
3349
3465
|
model?: string | null | undefined;
|
|
3350
|
-
iconURL?: string | null | undefined;
|
|
3351
3466
|
promptPrefix?: string | null | undefined;
|
|
3352
3467
|
artifacts?: string | undefined;
|
|
3468
|
+
chatProjectId?: string | null | undefined;
|
|
3353
3469
|
assistant_id?: string | undefined;
|
|
3354
3470
|
instructions?: string | undefined;
|
|
3355
3471
|
greeting?: string | undefined;
|
|
3356
3472
|
spec?: string | null | undefined;
|
|
3473
|
+
iconURL?: string | null | undefined;
|
|
3357
3474
|
}>, Partial<{
|
|
3358
3475
|
model?: string | null | undefined;
|
|
3359
|
-
iconURL?: string | null | undefined;
|
|
3360
3476
|
promptPrefix?: string | null | undefined;
|
|
3361
3477
|
artifacts?: string | undefined;
|
|
3478
|
+
chatProjectId?: string | null | undefined;
|
|
3362
3479
|
assistant_id?: string | undefined;
|
|
3363
3480
|
instructions?: string | undefined;
|
|
3364
3481
|
greeting?: string | undefined;
|
|
3365
3482
|
spec?: string | null | undefined;
|
|
3483
|
+
iconURL?: string | null | undefined;
|
|
3366
3484
|
}>, {
|
|
3367
3485
|
model?: string | null | undefined;
|
|
3368
|
-
iconURL?: string | null | undefined;
|
|
3369
3486
|
promptPrefix?: string | null | undefined;
|
|
3370
3487
|
artifacts?: string | undefined;
|
|
3488
|
+
chatProjectId?: string | null | undefined;
|
|
3371
3489
|
assistant_id?: string | undefined;
|
|
3372
3490
|
instructions?: string | undefined;
|
|
3373
3491
|
greeting?: string | undefined;
|
|
3374
3492
|
spec?: string | null | undefined;
|
|
3493
|
+
iconURL?: string | null | undefined;
|
|
3375
3494
|
}>>;
|
|
3376
3495
|
export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
3377
3496
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -3391,16 +3510,20 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3391
3510
|
label: z.ZodString;
|
|
3392
3511
|
description: z.ZodString;
|
|
3393
3512
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
3513
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
3514
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3394
3515
|
}, "strip", z.ZodTypeAny, {
|
|
3395
3516
|
description: string;
|
|
3396
3517
|
authField: string;
|
|
3397
3518
|
label: string;
|
|
3398
3519
|
optional?: boolean | undefined;
|
|
3520
|
+
sensitive?: boolean | undefined;
|
|
3399
3521
|
}, {
|
|
3400
3522
|
description: string;
|
|
3401
3523
|
authField: string;
|
|
3402
3524
|
label: string;
|
|
3403
3525
|
optional?: boolean | undefined;
|
|
3526
|
+
sensitive?: boolean | undefined;
|
|
3404
3527
|
}>, "many">>;
|
|
3405
3528
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
3406
3529
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3416,6 +3539,7 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3416
3539
|
authField: string;
|
|
3417
3540
|
label: string;
|
|
3418
3541
|
optional?: boolean | undefined;
|
|
3542
|
+
sensitive?: boolean | undefined;
|
|
3419
3543
|
}[] | undefined;
|
|
3420
3544
|
authenticated?: boolean | undefined;
|
|
3421
3545
|
chatMenu?: boolean | undefined;
|
|
@@ -3431,6 +3555,7 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3431
3555
|
authField: string;
|
|
3432
3556
|
label: string;
|
|
3433
3557
|
optional?: boolean | undefined;
|
|
3558
|
+
sensitive?: boolean | undefined;
|
|
3434
3559
|
}[] | undefined;
|
|
3435
3560
|
authenticated?: boolean | undefined;
|
|
3436
3561
|
chatMenu?: boolean | undefined;
|
|
@@ -3490,6 +3615,7 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3490
3615
|
};
|
|
3491
3616
|
}>, "many">>;
|
|
3492
3617
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3618
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3493
3619
|
createdAt: z.ZodString;
|
|
3494
3620
|
updatedAt: z.ZodString;
|
|
3495
3621
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3524,9 +3650,8 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3524
3650
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
3525
3651
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
3526
3652
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3527
|
-
}, "model" | "
|
|
3653
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "chatProjectId" | "resendFiles" | "imageDetail" | "agent_id" | "instructions" | "greeting" | "iconURL">, "strip", z.ZodTypeAny, {
|
|
3528
3654
|
model?: string | null | undefined;
|
|
3529
|
-
iconURL?: string | null | undefined;
|
|
3530
3655
|
modelLabel?: string | null | undefined;
|
|
3531
3656
|
promptPrefix?: string | null | undefined;
|
|
3532
3657
|
temperature?: number | null | undefined;
|
|
@@ -3534,14 +3659,15 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3534
3659
|
frequency_penalty?: number | undefined;
|
|
3535
3660
|
presence_penalty?: number | undefined;
|
|
3536
3661
|
maxContextTokens?: number | undefined;
|
|
3662
|
+
chatProjectId?: string | null | undefined;
|
|
3537
3663
|
resendFiles?: boolean | undefined;
|
|
3538
3664
|
imageDetail?: ImageDetail | undefined;
|
|
3539
3665
|
agent_id?: string | undefined;
|
|
3540
3666
|
instructions?: string | undefined;
|
|
3541
3667
|
greeting?: string | undefined;
|
|
3668
|
+
iconURL?: string | null | undefined;
|
|
3542
3669
|
}, {
|
|
3543
3670
|
model?: string | null | undefined;
|
|
3544
|
-
iconURL?: string | null | undefined;
|
|
3545
3671
|
modelLabel?: string | null | undefined;
|
|
3546
3672
|
promptPrefix?: string | null | undefined;
|
|
3547
3673
|
temperature?: number | null | undefined;
|
|
@@ -3549,11 +3675,13 @@ export declare const agentsBaseSchema: z.ZodObject<Pick<{
|
|
|
3549
3675
|
frequency_penalty?: number | undefined;
|
|
3550
3676
|
presence_penalty?: number | undefined;
|
|
3551
3677
|
maxContextTokens?: string | number | undefined;
|
|
3678
|
+
chatProjectId?: string | null | undefined;
|
|
3552
3679
|
resendFiles?: boolean | undefined;
|
|
3553
3680
|
imageDetail?: ImageDetail | undefined;
|
|
3554
3681
|
agent_id?: string | undefined;
|
|
3555
3682
|
instructions?: string | undefined;
|
|
3556
3683
|
greeting?: string | undefined;
|
|
3684
|
+
iconURL?: string | null | undefined;
|
|
3557
3685
|
}>;
|
|
3558
3686
|
export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
3559
3687
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -3573,16 +3701,20 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3573
3701
|
label: z.ZodString;
|
|
3574
3702
|
description: z.ZodString;
|
|
3575
3703
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
3704
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
3705
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3576
3706
|
}, "strip", z.ZodTypeAny, {
|
|
3577
3707
|
description: string;
|
|
3578
3708
|
authField: string;
|
|
3579
3709
|
label: string;
|
|
3580
3710
|
optional?: boolean | undefined;
|
|
3711
|
+
sensitive?: boolean | undefined;
|
|
3581
3712
|
}, {
|
|
3582
3713
|
description: string;
|
|
3583
3714
|
authField: string;
|
|
3584
3715
|
label: string;
|
|
3585
3716
|
optional?: boolean | undefined;
|
|
3717
|
+
sensitive?: boolean | undefined;
|
|
3586
3718
|
}>, "many">>;
|
|
3587
3719
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
3588
3720
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3598,6 +3730,7 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3598
3730
|
authField: string;
|
|
3599
3731
|
label: string;
|
|
3600
3732
|
optional?: boolean | undefined;
|
|
3733
|
+
sensitive?: boolean | undefined;
|
|
3601
3734
|
}[] | undefined;
|
|
3602
3735
|
authenticated?: boolean | undefined;
|
|
3603
3736
|
chatMenu?: boolean | undefined;
|
|
@@ -3613,6 +3746,7 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3613
3746
|
authField: string;
|
|
3614
3747
|
label: string;
|
|
3615
3748
|
optional?: boolean | undefined;
|
|
3749
|
+
sensitive?: boolean | undefined;
|
|
3616
3750
|
}[] | undefined;
|
|
3617
3751
|
authenticated?: boolean | undefined;
|
|
3618
3752
|
chatMenu?: boolean | undefined;
|
|
@@ -3672,6 +3806,7 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3672
3806
|
};
|
|
3673
3807
|
}>, "many">>;
|
|
3674
3808
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3809
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3675
3810
|
createdAt: z.ZodString;
|
|
3676
3811
|
updatedAt: z.ZodString;
|
|
3677
3812
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3706,9 +3841,8 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3706
3841
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
3707
3842
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
3708
3843
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3709
|
-
}, "model" | "
|
|
3844
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "top_p" | "frequency_penalty" | "presence_penalty" | "maxContextTokens" | "chatProjectId" | "resendFiles" | "imageDetail" | "agent_id" | "instructions" | "greeting" | "iconURL">, "strip", z.ZodTypeAny, {
|
|
3710
3845
|
model?: string | null | undefined;
|
|
3711
|
-
iconURL?: string | null | undefined;
|
|
3712
3846
|
modelLabel?: string | null | undefined;
|
|
3713
3847
|
promptPrefix?: string | null | undefined;
|
|
3714
3848
|
temperature?: number | null | undefined;
|
|
@@ -3716,14 +3850,15 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3716
3850
|
frequency_penalty?: number | undefined;
|
|
3717
3851
|
presence_penalty?: number | undefined;
|
|
3718
3852
|
maxContextTokens?: number | undefined;
|
|
3853
|
+
chatProjectId?: string | null | undefined;
|
|
3719
3854
|
resendFiles?: boolean | undefined;
|
|
3720
3855
|
imageDetail?: ImageDetail | undefined;
|
|
3721
3856
|
agent_id?: string | undefined;
|
|
3722
3857
|
instructions?: string | undefined;
|
|
3723
3858
|
greeting?: string | undefined;
|
|
3859
|
+
iconURL?: string | null | undefined;
|
|
3724
3860
|
}, {
|
|
3725
3861
|
model?: string | null | undefined;
|
|
3726
|
-
iconURL?: string | null | undefined;
|
|
3727
3862
|
modelLabel?: string | null | undefined;
|
|
3728
3863
|
promptPrefix?: string | null | undefined;
|
|
3729
3864
|
temperature?: number | null | undefined;
|
|
@@ -3731,11 +3866,13 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3731
3866
|
frequency_penalty?: number | undefined;
|
|
3732
3867
|
presence_penalty?: number | undefined;
|
|
3733
3868
|
maxContextTokens?: string | number | undefined;
|
|
3869
|
+
chatProjectId?: string | null | undefined;
|
|
3734
3870
|
resendFiles?: boolean | undefined;
|
|
3735
3871
|
imageDetail?: ImageDetail | undefined;
|
|
3736
3872
|
agent_id?: string | undefined;
|
|
3737
3873
|
instructions?: string | undefined;
|
|
3738
3874
|
greeting?: string | undefined;
|
|
3875
|
+
iconURL?: string | null | undefined;
|
|
3739
3876
|
}>, {
|
|
3740
3877
|
model: string;
|
|
3741
3878
|
modelLabel: string | null;
|
|
@@ -3751,9 +3888,9 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3751
3888
|
iconURL: string | undefined;
|
|
3752
3889
|
greeting: string | undefined;
|
|
3753
3890
|
maxContextTokens: number | undefined;
|
|
3891
|
+
chatProjectId?: string | null | undefined;
|
|
3754
3892
|
}, {
|
|
3755
3893
|
model?: string | null | undefined;
|
|
3756
|
-
iconURL?: string | null | undefined;
|
|
3757
3894
|
modelLabel?: string | null | undefined;
|
|
3758
3895
|
promptPrefix?: string | null | undefined;
|
|
3759
3896
|
temperature?: number | null | undefined;
|
|
@@ -3761,11 +3898,13 @@ export declare const agentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3761
3898
|
frequency_penalty?: number | undefined;
|
|
3762
3899
|
presence_penalty?: number | undefined;
|
|
3763
3900
|
maxContextTokens?: string | number | undefined;
|
|
3901
|
+
chatProjectId?: string | null | undefined;
|
|
3764
3902
|
resendFiles?: boolean | undefined;
|
|
3765
3903
|
imageDetail?: ImageDetail | undefined;
|
|
3766
3904
|
agent_id?: string | undefined;
|
|
3767
3905
|
instructions?: string | undefined;
|
|
3768
3906
|
greeting?: string | undefined;
|
|
3907
|
+
iconURL?: string | null | undefined;
|
|
3769
3908
|
}>>;
|
|
3770
3909
|
export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
3771
3910
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -3785,16 +3924,20 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3785
3924
|
label: z.ZodString;
|
|
3786
3925
|
description: z.ZodString;
|
|
3787
3926
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
3927
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
3928
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3788
3929
|
}, "strip", z.ZodTypeAny, {
|
|
3789
3930
|
description: string;
|
|
3790
3931
|
authField: string;
|
|
3791
3932
|
label: string;
|
|
3792
3933
|
optional?: boolean | undefined;
|
|
3934
|
+
sensitive?: boolean | undefined;
|
|
3793
3935
|
}, {
|
|
3794
3936
|
description: string;
|
|
3795
3937
|
authField: string;
|
|
3796
3938
|
label: string;
|
|
3797
3939
|
optional?: boolean | undefined;
|
|
3940
|
+
sensitive?: boolean | undefined;
|
|
3798
3941
|
}>, "many">>;
|
|
3799
3942
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
3800
3943
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3810,6 +3953,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3810
3953
|
authField: string;
|
|
3811
3954
|
label: string;
|
|
3812
3955
|
optional?: boolean | undefined;
|
|
3956
|
+
sensitive?: boolean | undefined;
|
|
3813
3957
|
}[] | undefined;
|
|
3814
3958
|
authenticated?: boolean | undefined;
|
|
3815
3959
|
chatMenu?: boolean | undefined;
|
|
@@ -3825,6 +3969,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3825
3969
|
authField: string;
|
|
3826
3970
|
label: string;
|
|
3827
3971
|
optional?: boolean | undefined;
|
|
3972
|
+
sensitive?: boolean | undefined;
|
|
3828
3973
|
}[] | undefined;
|
|
3829
3974
|
authenticated?: boolean | undefined;
|
|
3830
3975
|
chatMenu?: boolean | undefined;
|
|
@@ -3884,6 +4029,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3884
4029
|
};
|
|
3885
4030
|
}>, "many">>;
|
|
3886
4031
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4032
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3887
4033
|
createdAt: z.ZodString;
|
|
3888
4034
|
updatedAt: z.ZodString;
|
|
3889
4035
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3918,9 +4064,8 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3918
4064
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
3919
4065
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
3920
4066
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3921
|
-
}, "model" | "
|
|
4067
|
+
}, "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, {
|
|
3922
4068
|
model?: string | null | undefined;
|
|
3923
|
-
iconURL?: string | null | undefined;
|
|
3924
4069
|
modelLabel?: string | null | undefined;
|
|
3925
4070
|
promptPrefix?: string | null | undefined;
|
|
3926
4071
|
temperature?: number | null | undefined;
|
|
@@ -3930,6 +4075,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3930
4075
|
maxContextTokens?: number | undefined;
|
|
3931
4076
|
max_tokens?: number | undefined;
|
|
3932
4077
|
artifacts?: string | undefined;
|
|
4078
|
+
chatProjectId?: string | null | undefined;
|
|
3933
4079
|
resendFiles?: boolean | undefined;
|
|
3934
4080
|
imageDetail?: ImageDetail | undefined;
|
|
3935
4081
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -3941,11 +4087,11 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3941
4087
|
stop?: string[] | undefined;
|
|
3942
4088
|
greeting?: string | undefined;
|
|
3943
4089
|
spec?: string | null | undefined;
|
|
4090
|
+
iconURL?: string | null | undefined;
|
|
3944
4091
|
fileTokenLimit?: number | undefined;
|
|
3945
4092
|
chatGptLabel?: string | null | undefined;
|
|
3946
4093
|
}, {
|
|
3947
4094
|
model?: string | null | undefined;
|
|
3948
|
-
iconURL?: string | null | undefined;
|
|
3949
4095
|
modelLabel?: string | null | undefined;
|
|
3950
4096
|
promptPrefix?: string | null | undefined;
|
|
3951
4097
|
temperature?: number | null | undefined;
|
|
@@ -3955,6 +4101,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3955
4101
|
maxContextTokens?: string | number | undefined;
|
|
3956
4102
|
max_tokens?: string | number | undefined;
|
|
3957
4103
|
artifacts?: string | undefined;
|
|
4104
|
+
chatProjectId?: string | null | undefined;
|
|
3958
4105
|
resendFiles?: boolean | undefined;
|
|
3959
4106
|
imageDetail?: ImageDetail | undefined;
|
|
3960
4107
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -3966,6 +4113,7 @@ export declare const openAIBaseSchema: z.ZodObject<Pick<{
|
|
|
3966
4113
|
stop?: string[] | undefined;
|
|
3967
4114
|
greeting?: string | undefined;
|
|
3968
4115
|
spec?: string | null | undefined;
|
|
4116
|
+
iconURL?: string | null | undefined;
|
|
3969
4117
|
fileTokenLimit?: string | number | undefined;
|
|
3970
4118
|
chatGptLabel?: string | null | undefined;
|
|
3971
4119
|
}>;
|
|
@@ -3987,16 +4135,20 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
3987
4135
|
label: z.ZodString;
|
|
3988
4136
|
description: z.ZodString;
|
|
3989
4137
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
4138
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
4139
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3990
4140
|
}, "strip", z.ZodTypeAny, {
|
|
3991
4141
|
description: string;
|
|
3992
4142
|
authField: string;
|
|
3993
4143
|
label: string;
|
|
3994
4144
|
optional?: boolean | undefined;
|
|
4145
|
+
sensitive?: boolean | undefined;
|
|
3995
4146
|
}, {
|
|
3996
4147
|
description: string;
|
|
3997
4148
|
authField: string;
|
|
3998
4149
|
label: string;
|
|
3999
4150
|
optional?: boolean | undefined;
|
|
4151
|
+
sensitive?: boolean | undefined;
|
|
4000
4152
|
}>, "many">>;
|
|
4001
4153
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4002
4154
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4012,6 +4164,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4012
4164
|
authField: string;
|
|
4013
4165
|
label: string;
|
|
4014
4166
|
optional?: boolean | undefined;
|
|
4167
|
+
sensitive?: boolean | undefined;
|
|
4015
4168
|
}[] | undefined;
|
|
4016
4169
|
authenticated?: boolean | undefined;
|
|
4017
4170
|
chatMenu?: boolean | undefined;
|
|
@@ -4027,6 +4180,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4027
4180
|
authField: string;
|
|
4028
4181
|
label: string;
|
|
4029
4182
|
optional?: boolean | undefined;
|
|
4183
|
+
sensitive?: boolean | undefined;
|
|
4030
4184
|
}[] | undefined;
|
|
4031
4185
|
authenticated?: boolean | undefined;
|
|
4032
4186
|
chatMenu?: boolean | undefined;
|
|
@@ -4086,6 +4240,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4086
4240
|
};
|
|
4087
4241
|
}>, "many">>;
|
|
4088
4242
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4243
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4089
4244
|
createdAt: z.ZodString;
|
|
4090
4245
|
updatedAt: z.ZodString;
|
|
4091
4246
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4120,9 +4275,8 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4120
4275
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4121
4276
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4122
4277
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4123
|
-
}, "model" | "
|
|
4278
|
+
}, "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, {
|
|
4124
4279
|
model?: string | null | undefined;
|
|
4125
|
-
iconURL?: string | null | undefined;
|
|
4126
4280
|
modelLabel?: string | null | undefined;
|
|
4127
4281
|
promptPrefix?: string | null | undefined;
|
|
4128
4282
|
temperature?: number | null | undefined;
|
|
@@ -4132,6 +4286,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4132
4286
|
maxContextTokens?: number | undefined;
|
|
4133
4287
|
max_tokens?: number | undefined;
|
|
4134
4288
|
artifacts?: string | undefined;
|
|
4289
|
+
chatProjectId?: string | null | undefined;
|
|
4135
4290
|
resendFiles?: boolean | undefined;
|
|
4136
4291
|
imageDetail?: ImageDetail | undefined;
|
|
4137
4292
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -4143,11 +4298,11 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4143
4298
|
stop?: string[] | undefined;
|
|
4144
4299
|
greeting?: string | undefined;
|
|
4145
4300
|
spec?: string | null | undefined;
|
|
4301
|
+
iconURL?: string | null | undefined;
|
|
4146
4302
|
fileTokenLimit?: number | undefined;
|
|
4147
4303
|
chatGptLabel?: string | null | undefined;
|
|
4148
4304
|
}, {
|
|
4149
4305
|
model?: string | null | undefined;
|
|
4150
|
-
iconURL?: string | null | undefined;
|
|
4151
4306
|
modelLabel?: string | null | undefined;
|
|
4152
4307
|
promptPrefix?: string | null | undefined;
|
|
4153
4308
|
temperature?: number | null | undefined;
|
|
@@ -4157,6 +4312,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4157
4312
|
maxContextTokens?: string | number | undefined;
|
|
4158
4313
|
max_tokens?: string | number | undefined;
|
|
4159
4314
|
artifacts?: string | undefined;
|
|
4315
|
+
chatProjectId?: string | null | undefined;
|
|
4160
4316
|
resendFiles?: boolean | undefined;
|
|
4161
4317
|
imageDetail?: ImageDetail | undefined;
|
|
4162
4318
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -4168,11 +4324,11 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4168
4324
|
stop?: string[] | undefined;
|
|
4169
4325
|
greeting?: string | undefined;
|
|
4170
4326
|
spec?: string | null | undefined;
|
|
4327
|
+
iconURL?: string | null | undefined;
|
|
4171
4328
|
fileTokenLimit?: string | number | undefined;
|
|
4172
4329
|
chatGptLabel?: string | null | undefined;
|
|
4173
4330
|
}>, Partial<Partial<TConversation>>, {
|
|
4174
4331
|
model?: string | null | undefined;
|
|
4175
|
-
iconURL?: string | null | undefined;
|
|
4176
4332
|
modelLabel?: string | null | undefined;
|
|
4177
4333
|
promptPrefix?: string | null | undefined;
|
|
4178
4334
|
temperature?: number | null | undefined;
|
|
@@ -4182,6 +4338,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4182
4338
|
maxContextTokens?: string | number | undefined;
|
|
4183
4339
|
max_tokens?: string | number | undefined;
|
|
4184
4340
|
artifacts?: string | undefined;
|
|
4341
|
+
chatProjectId?: string | null | undefined;
|
|
4185
4342
|
resendFiles?: boolean | undefined;
|
|
4186
4343
|
imageDetail?: ImageDetail | undefined;
|
|
4187
4344
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -4193,6 +4350,7 @@ export declare const openAISchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
4193
4350
|
stop?: string[] | undefined;
|
|
4194
4351
|
greeting?: string | undefined;
|
|
4195
4352
|
spec?: string | null | undefined;
|
|
4353
|
+
iconURL?: string | null | undefined;
|
|
4196
4354
|
fileTokenLimit?: string | number | undefined;
|
|
4197
4355
|
chatGptLabel?: string | null | undefined;
|
|
4198
4356
|
}>>;
|
|
@@ -4214,16 +4372,20 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4214
4372
|
label: z.ZodString;
|
|
4215
4373
|
description: z.ZodString;
|
|
4216
4374
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
4375
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
4376
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4217
4377
|
}, "strip", z.ZodTypeAny, {
|
|
4218
4378
|
description: string;
|
|
4219
4379
|
authField: string;
|
|
4220
4380
|
label: string;
|
|
4221
4381
|
optional?: boolean | undefined;
|
|
4382
|
+
sensitive?: boolean | undefined;
|
|
4222
4383
|
}, {
|
|
4223
4384
|
description: string;
|
|
4224
4385
|
authField: string;
|
|
4225
4386
|
label: string;
|
|
4226
4387
|
optional?: boolean | undefined;
|
|
4388
|
+
sensitive?: boolean | undefined;
|
|
4227
4389
|
}>, "many">>;
|
|
4228
4390
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4229
4391
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4239,6 +4401,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4239
4401
|
authField: string;
|
|
4240
4402
|
label: string;
|
|
4241
4403
|
optional?: boolean | undefined;
|
|
4404
|
+
sensitive?: boolean | undefined;
|
|
4242
4405
|
}[] | undefined;
|
|
4243
4406
|
authenticated?: boolean | undefined;
|
|
4244
4407
|
chatMenu?: boolean | undefined;
|
|
@@ -4254,6 +4417,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4254
4417
|
authField: string;
|
|
4255
4418
|
label: string;
|
|
4256
4419
|
optional?: boolean | undefined;
|
|
4420
|
+
sensitive?: boolean | undefined;
|
|
4257
4421
|
}[] | undefined;
|
|
4258
4422
|
authenticated?: boolean | undefined;
|
|
4259
4423
|
chatMenu?: boolean | undefined;
|
|
@@ -4313,6 +4477,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4313
4477
|
};
|
|
4314
4478
|
}>, "many">>;
|
|
4315
4479
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4480
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4316
4481
|
createdAt: z.ZodString;
|
|
4317
4482
|
updatedAt: z.ZodString;
|
|
4318
4483
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4347,7 +4512,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4347
4512
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4348
4513
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4349
4514
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4350
|
-
}, "model" | "
|
|
4515
|
+
}, "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<{
|
|
4351
4516
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
4352
4517
|
endpoint: z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>;
|
|
4353
4518
|
endpointType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof EModelEndpoint>>>;
|
|
@@ -4365,16 +4530,20 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4365
4530
|
label: z.ZodString;
|
|
4366
4531
|
description: z.ZodString;
|
|
4367
4532
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
4533
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
4534
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4368
4535
|
}, "strip", z.ZodTypeAny, {
|
|
4369
4536
|
description: string;
|
|
4370
4537
|
authField: string;
|
|
4371
4538
|
label: string;
|
|
4372
4539
|
optional?: boolean | undefined;
|
|
4540
|
+
sensitive?: boolean | undefined;
|
|
4373
4541
|
}, {
|
|
4374
4542
|
description: string;
|
|
4375
4543
|
authField: string;
|
|
4376
4544
|
label: string;
|
|
4377
4545
|
optional?: boolean | undefined;
|
|
4546
|
+
sensitive?: boolean | undefined;
|
|
4378
4547
|
}>, "many">>;
|
|
4379
4548
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4380
4549
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4390,6 +4559,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4390
4559
|
authField: string;
|
|
4391
4560
|
label: string;
|
|
4392
4561
|
optional?: boolean | undefined;
|
|
4562
|
+
sensitive?: boolean | undefined;
|
|
4393
4563
|
}[] | undefined;
|
|
4394
4564
|
authenticated?: boolean | undefined;
|
|
4395
4565
|
chatMenu?: boolean | undefined;
|
|
@@ -4405,6 +4575,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4405
4575
|
authField: string;
|
|
4406
4576
|
label: string;
|
|
4407
4577
|
optional?: boolean | undefined;
|
|
4578
|
+
sensitive?: boolean | undefined;
|
|
4408
4579
|
}[] | undefined;
|
|
4409
4580
|
authenticated?: boolean | undefined;
|
|
4410
4581
|
chatMenu?: boolean | undefined;
|
|
@@ -4464,6 +4635,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4464
4635
|
};
|
|
4465
4636
|
}>, "many">>;
|
|
4466
4637
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4638
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4467
4639
|
createdAt: z.ZodString;
|
|
4468
4640
|
updatedAt: z.ZodString;
|
|
4469
4641
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4500,7 +4672,6 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4500
4672
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4501
4673
|
}, "promptCache">, "strip", z.ZodTypeAny, {
|
|
4502
4674
|
model?: string | null | undefined;
|
|
4503
|
-
iconURL?: string | null | undefined;
|
|
4504
4675
|
modelLabel?: string | null | undefined;
|
|
4505
4676
|
promptPrefix?: string | null | undefined;
|
|
4506
4677
|
temperature?: number | null | undefined;
|
|
@@ -4511,6 +4682,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4511
4682
|
max_tokens?: number | undefined;
|
|
4512
4683
|
promptCache?: boolean | undefined;
|
|
4513
4684
|
artifacts?: string | undefined;
|
|
4685
|
+
chatProjectId?: string | null | undefined;
|
|
4514
4686
|
resendFiles?: boolean | undefined;
|
|
4515
4687
|
imageDetail?: ImageDetail | undefined;
|
|
4516
4688
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -4522,11 +4694,11 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4522
4694
|
stop?: string[] | undefined;
|
|
4523
4695
|
greeting?: string | undefined;
|
|
4524
4696
|
spec?: string | null | undefined;
|
|
4697
|
+
iconURL?: string | null | undefined;
|
|
4525
4698
|
fileTokenLimit?: number | undefined;
|
|
4526
4699
|
chatGptLabel?: string | null | undefined;
|
|
4527
4700
|
}, {
|
|
4528
4701
|
model?: string | null | undefined;
|
|
4529
|
-
iconURL?: string | null | undefined;
|
|
4530
4702
|
modelLabel?: string | null | undefined;
|
|
4531
4703
|
promptPrefix?: string | null | undefined;
|
|
4532
4704
|
temperature?: number | null | undefined;
|
|
@@ -4537,6 +4709,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4537
4709
|
max_tokens?: string | number | undefined;
|
|
4538
4710
|
promptCache?: boolean | undefined;
|
|
4539
4711
|
artifacts?: string | undefined;
|
|
4712
|
+
chatProjectId?: string | null | undefined;
|
|
4540
4713
|
resendFiles?: boolean | undefined;
|
|
4541
4714
|
imageDetail?: ImageDetail | undefined;
|
|
4542
4715
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -4548,11 +4721,11 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4548
4721
|
stop?: string[] | undefined;
|
|
4549
4722
|
greeting?: string | undefined;
|
|
4550
4723
|
spec?: string | null | undefined;
|
|
4724
|
+
iconURL?: string | null | undefined;
|
|
4551
4725
|
fileTokenLimit?: string | number | undefined;
|
|
4552
4726
|
chatGptLabel?: string | null | undefined;
|
|
4553
4727
|
}>, Partial<Partial<TConversation>>, {
|
|
4554
4728
|
model?: string | null | undefined;
|
|
4555
|
-
iconURL?: string | null | undefined;
|
|
4556
4729
|
modelLabel?: string | null | undefined;
|
|
4557
4730
|
promptPrefix?: string | null | undefined;
|
|
4558
4731
|
temperature?: number | null | undefined;
|
|
@@ -4563,6 +4736,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4563
4736
|
max_tokens?: string | number | undefined;
|
|
4564
4737
|
promptCache?: boolean | undefined;
|
|
4565
4738
|
artifacts?: string | undefined;
|
|
4739
|
+
chatProjectId?: string | null | undefined;
|
|
4566
4740
|
resendFiles?: boolean | undefined;
|
|
4567
4741
|
imageDetail?: ImageDetail | undefined;
|
|
4568
4742
|
reasoning_effort?: ReasoningEffort | null | undefined;
|
|
@@ -4574,6 +4748,7 @@ export declare const openRouterSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<
|
|
|
4574
4748
|
stop?: string[] | undefined;
|
|
4575
4749
|
greeting?: string | undefined;
|
|
4576
4750
|
spec?: string | null | undefined;
|
|
4751
|
+
iconURL?: string | null | undefined;
|
|
4577
4752
|
fileTokenLimit?: string | number | undefined;
|
|
4578
4753
|
chatGptLabel?: string | null | undefined;
|
|
4579
4754
|
}>>;
|
|
@@ -4595,16 +4770,20 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4595
4770
|
label: z.ZodString;
|
|
4596
4771
|
description: z.ZodString;
|
|
4597
4772
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
4773
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
4774
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4598
4775
|
}, "strip", z.ZodTypeAny, {
|
|
4599
4776
|
description: string;
|
|
4600
4777
|
authField: string;
|
|
4601
4778
|
label: string;
|
|
4602
4779
|
optional?: boolean | undefined;
|
|
4780
|
+
sensitive?: boolean | undefined;
|
|
4603
4781
|
}, {
|
|
4604
4782
|
description: string;
|
|
4605
4783
|
authField: string;
|
|
4606
4784
|
label: string;
|
|
4607
4785
|
optional?: boolean | undefined;
|
|
4786
|
+
sensitive?: boolean | undefined;
|
|
4608
4787
|
}>, "many">>;
|
|
4609
4788
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4610
4789
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4620,6 +4799,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4620
4799
|
authField: string;
|
|
4621
4800
|
label: string;
|
|
4622
4801
|
optional?: boolean | undefined;
|
|
4802
|
+
sensitive?: boolean | undefined;
|
|
4623
4803
|
}[] | undefined;
|
|
4624
4804
|
authenticated?: boolean | undefined;
|
|
4625
4805
|
chatMenu?: boolean | undefined;
|
|
@@ -4635,6 +4815,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4635
4815
|
authField: string;
|
|
4636
4816
|
label: string;
|
|
4637
4817
|
optional?: boolean | undefined;
|
|
4818
|
+
sensitive?: boolean | undefined;
|
|
4638
4819
|
}[] | undefined;
|
|
4639
4820
|
authenticated?: boolean | undefined;
|
|
4640
4821
|
chatMenu?: boolean | undefined;
|
|
@@ -4694,6 +4875,7 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4694
4875
|
};
|
|
4695
4876
|
}>, "many">>;
|
|
4696
4877
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4878
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4697
4879
|
createdAt: z.ZodString;
|
|
4698
4880
|
updatedAt: z.ZodString;
|
|
4699
4881
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4728,9 +4910,8 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4728
4910
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4729
4911
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4730
4912
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4731
|
-
}, "model" | "
|
|
4913
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "thinking" | "thinkingBudget" | "thinkingLevel" | "artifacts" | "examples" | "chatProjectId" | "web_search" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
4732
4914
|
model?: string | null | undefined;
|
|
4733
|
-
iconURL?: string | null | undefined;
|
|
4734
4915
|
modelLabel?: string | null | undefined;
|
|
4735
4916
|
promptPrefix?: string | null | undefined;
|
|
4736
4917
|
temperature?: number | null | undefined;
|
|
@@ -4750,13 +4931,14 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4750
4931
|
content: string;
|
|
4751
4932
|
};
|
|
4752
4933
|
}[] | undefined;
|
|
4934
|
+
chatProjectId?: string | null | undefined;
|
|
4753
4935
|
web_search?: boolean | undefined;
|
|
4754
4936
|
greeting?: string | undefined;
|
|
4755
4937
|
spec?: string | null | undefined;
|
|
4938
|
+
iconURL?: string | null | undefined;
|
|
4756
4939
|
fileTokenLimit?: number | undefined;
|
|
4757
4940
|
}, {
|
|
4758
4941
|
model?: string | null | undefined;
|
|
4759
|
-
iconURL?: string | null | undefined;
|
|
4760
4942
|
modelLabel?: string | null | undefined;
|
|
4761
4943
|
promptPrefix?: string | null | undefined;
|
|
4762
4944
|
temperature?: number | null | undefined;
|
|
@@ -4776,13 +4958,14 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4776
4958
|
content: string;
|
|
4777
4959
|
};
|
|
4778
4960
|
}[] | undefined;
|
|
4961
|
+
chatProjectId?: string | null | undefined;
|
|
4779
4962
|
web_search?: boolean | undefined;
|
|
4780
4963
|
greeting?: string | undefined;
|
|
4781
4964
|
spec?: string | null | undefined;
|
|
4965
|
+
iconURL?: string | null | undefined;
|
|
4782
4966
|
fileTokenLimit?: string | number | undefined;
|
|
4783
4967
|
}>, Partial<Partial<TConversation>>, {
|
|
4784
4968
|
model?: string | null | undefined;
|
|
4785
|
-
iconURL?: string | null | undefined;
|
|
4786
4969
|
modelLabel?: string | null | undefined;
|
|
4787
4970
|
promptPrefix?: string | null | undefined;
|
|
4788
4971
|
temperature?: number | null | undefined;
|
|
@@ -4802,9 +4985,11 @@ export declare const compactGoogleSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
4802
4985
|
content: string;
|
|
4803
4986
|
};
|
|
4804
4987
|
}[] | undefined;
|
|
4988
|
+
chatProjectId?: string | null | undefined;
|
|
4805
4989
|
web_search?: boolean | undefined;
|
|
4806
4990
|
greeting?: string | undefined;
|
|
4807
4991
|
spec?: string | null | undefined;
|
|
4992
|
+
iconURL?: string | null | undefined;
|
|
4808
4993
|
fileTokenLimit?: string | number | undefined;
|
|
4809
4994
|
}>>;
|
|
4810
4995
|
export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
@@ -4825,16 +5010,20 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4825
5010
|
label: z.ZodString;
|
|
4826
5011
|
description: z.ZodString;
|
|
4827
5012
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
5013
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
5014
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4828
5015
|
}, "strip", z.ZodTypeAny, {
|
|
4829
5016
|
description: string;
|
|
4830
5017
|
authField: string;
|
|
4831
5018
|
label: string;
|
|
4832
5019
|
optional?: boolean | undefined;
|
|
5020
|
+
sensitive?: boolean | undefined;
|
|
4833
5021
|
}, {
|
|
4834
5022
|
description: string;
|
|
4835
5023
|
authField: string;
|
|
4836
5024
|
label: string;
|
|
4837
5025
|
optional?: boolean | undefined;
|
|
5026
|
+
sensitive?: boolean | undefined;
|
|
4838
5027
|
}>, "many">>;
|
|
4839
5028
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
4840
5029
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4850,6 +5039,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4850
5039
|
authField: string;
|
|
4851
5040
|
label: string;
|
|
4852
5041
|
optional?: boolean | undefined;
|
|
5042
|
+
sensitive?: boolean | undefined;
|
|
4853
5043
|
}[] | undefined;
|
|
4854
5044
|
authenticated?: boolean | undefined;
|
|
4855
5045
|
chatMenu?: boolean | undefined;
|
|
@@ -4865,6 +5055,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4865
5055
|
authField: string;
|
|
4866
5056
|
label: string;
|
|
4867
5057
|
optional?: boolean | undefined;
|
|
5058
|
+
sensitive?: boolean | undefined;
|
|
4868
5059
|
}[] | undefined;
|
|
4869
5060
|
authenticated?: boolean | undefined;
|
|
4870
5061
|
chatMenu?: boolean | undefined;
|
|
@@ -4924,6 +5115,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4924
5115
|
};
|
|
4925
5116
|
}>, "many">>;
|
|
4926
5117
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5118
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4927
5119
|
createdAt: z.ZodString;
|
|
4928
5120
|
updatedAt: z.ZodString;
|
|
4929
5121
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4958,9 +5150,8 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4958
5150
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
4959
5151
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
4960
5152
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4961
|
-
}, "model" | "
|
|
5153
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "promptCache" | "thinking" | "thinkingBudget" | "stream" | "artifacts" | "chatProjectId" | "resendFiles" | "effort" | "thinkingDisplay" | "web_search" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
4962
5154
|
model?: string | null | undefined;
|
|
4963
|
-
iconURL?: string | null | undefined;
|
|
4964
5155
|
modelLabel?: string | null | undefined;
|
|
4965
5156
|
promptPrefix?: string | null | undefined;
|
|
4966
5157
|
temperature?: number | null | undefined;
|
|
@@ -4973,6 +5164,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4973
5164
|
thinkingBudget?: number | undefined;
|
|
4974
5165
|
stream?: boolean | undefined;
|
|
4975
5166
|
artifacts?: string | undefined;
|
|
5167
|
+
chatProjectId?: string | null | undefined;
|
|
4976
5168
|
resendFiles?: boolean | undefined;
|
|
4977
5169
|
effort?: AnthropicEffort | null | undefined;
|
|
4978
5170
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
@@ -4980,10 +5172,10 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4980
5172
|
stop?: string[] | undefined;
|
|
4981
5173
|
greeting?: string | undefined;
|
|
4982
5174
|
spec?: string | null | undefined;
|
|
5175
|
+
iconURL?: string | null | undefined;
|
|
4983
5176
|
fileTokenLimit?: number | undefined;
|
|
4984
5177
|
}, {
|
|
4985
5178
|
model?: string | null | undefined;
|
|
4986
|
-
iconURL?: string | null | undefined;
|
|
4987
5179
|
modelLabel?: string | null | undefined;
|
|
4988
5180
|
promptPrefix?: string | null | undefined;
|
|
4989
5181
|
temperature?: number | null | undefined;
|
|
@@ -4996,6 +5188,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
4996
5188
|
thinkingBudget?: string | number | undefined;
|
|
4997
5189
|
stream?: boolean | undefined;
|
|
4998
5190
|
artifacts?: string | undefined;
|
|
5191
|
+
chatProjectId?: string | null | undefined;
|
|
4999
5192
|
resendFiles?: boolean | undefined;
|
|
5000
5193
|
effort?: AnthropicEffort | null | undefined;
|
|
5001
5194
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
@@ -5003,6 +5196,7 @@ export declare const anthropicBaseSchema: z.ZodObject<Pick<{
|
|
|
5003
5196
|
stop?: string[] | undefined;
|
|
5004
5197
|
greeting?: string | undefined;
|
|
5005
5198
|
spec?: string | null | undefined;
|
|
5199
|
+
iconURL?: string | null | undefined;
|
|
5006
5200
|
fileTokenLimit?: string | number | undefined;
|
|
5007
5201
|
}>;
|
|
5008
5202
|
export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
@@ -5023,16 +5217,20 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5023
5217
|
label: z.ZodString;
|
|
5024
5218
|
description: z.ZodString;
|
|
5025
5219
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
5220
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
5221
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
5026
5222
|
}, "strip", z.ZodTypeAny, {
|
|
5027
5223
|
description: string;
|
|
5028
5224
|
authField: string;
|
|
5029
5225
|
label: string;
|
|
5030
5226
|
optional?: boolean | undefined;
|
|
5227
|
+
sensitive?: boolean | undefined;
|
|
5031
5228
|
}, {
|
|
5032
5229
|
description: string;
|
|
5033
5230
|
authField: string;
|
|
5034
5231
|
label: string;
|
|
5035
5232
|
optional?: boolean | undefined;
|
|
5233
|
+
sensitive?: boolean | undefined;
|
|
5036
5234
|
}>, "many">>;
|
|
5037
5235
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
5038
5236
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5048,6 +5246,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5048
5246
|
authField: string;
|
|
5049
5247
|
label: string;
|
|
5050
5248
|
optional?: boolean | undefined;
|
|
5249
|
+
sensitive?: boolean | undefined;
|
|
5051
5250
|
}[] | undefined;
|
|
5052
5251
|
authenticated?: boolean | undefined;
|
|
5053
5252
|
chatMenu?: boolean | undefined;
|
|
@@ -5063,6 +5262,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5063
5262
|
authField: string;
|
|
5064
5263
|
label: string;
|
|
5065
5264
|
optional?: boolean | undefined;
|
|
5265
|
+
sensitive?: boolean | undefined;
|
|
5066
5266
|
}[] | undefined;
|
|
5067
5267
|
authenticated?: boolean | undefined;
|
|
5068
5268
|
chatMenu?: boolean | undefined;
|
|
@@ -5122,6 +5322,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5122
5322
|
};
|
|
5123
5323
|
}>, "many">>;
|
|
5124
5324
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5325
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5125
5326
|
createdAt: z.ZodString;
|
|
5126
5327
|
updatedAt: z.ZodString;
|
|
5127
5328
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5156,9 +5357,8 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5156
5357
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
5157
5358
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
5158
5359
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5159
|
-
}, "model" | "
|
|
5360
|
+
}, "model" | "modelLabel" | "promptPrefix" | "temperature" | "topP" | "topK" | "maxOutputTokens" | "maxContextTokens" | "promptCache" | "thinking" | "thinkingBudget" | "stream" | "artifacts" | "chatProjectId" | "resendFiles" | "effort" | "thinkingDisplay" | "web_search" | "stop" | "greeting" | "spec" | "iconURL" | "fileTokenLimit">, "strip", z.ZodTypeAny, {
|
|
5160
5361
|
model?: string | null | undefined;
|
|
5161
|
-
iconURL?: string | null | undefined;
|
|
5162
5362
|
modelLabel?: string | null | undefined;
|
|
5163
5363
|
promptPrefix?: string | null | undefined;
|
|
5164
5364
|
temperature?: number | null | undefined;
|
|
@@ -5171,6 +5371,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5171
5371
|
thinkingBudget?: number | undefined;
|
|
5172
5372
|
stream?: boolean | undefined;
|
|
5173
5373
|
artifacts?: string | undefined;
|
|
5374
|
+
chatProjectId?: string | null | undefined;
|
|
5174
5375
|
resendFiles?: boolean | undefined;
|
|
5175
5376
|
effort?: AnthropicEffort | null | undefined;
|
|
5176
5377
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
@@ -5178,10 +5379,10 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5178
5379
|
stop?: string[] | undefined;
|
|
5179
5380
|
greeting?: string | undefined;
|
|
5180
5381
|
spec?: string | null | undefined;
|
|
5382
|
+
iconURL?: string | null | undefined;
|
|
5181
5383
|
fileTokenLimit?: number | undefined;
|
|
5182
5384
|
}, {
|
|
5183
5385
|
model?: string | null | undefined;
|
|
5184
|
-
iconURL?: string | null | undefined;
|
|
5185
5386
|
modelLabel?: string | null | undefined;
|
|
5186
5387
|
promptPrefix?: string | null | undefined;
|
|
5187
5388
|
temperature?: number | null | undefined;
|
|
@@ -5194,6 +5395,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5194
5395
|
thinkingBudget?: string | number | undefined;
|
|
5195
5396
|
stream?: boolean | undefined;
|
|
5196
5397
|
artifacts?: string | undefined;
|
|
5398
|
+
chatProjectId?: string | null | undefined;
|
|
5197
5399
|
resendFiles?: boolean | undefined;
|
|
5198
5400
|
effort?: AnthropicEffort | null | undefined;
|
|
5199
5401
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
@@ -5201,10 +5403,10 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5201
5403
|
stop?: string[] | undefined;
|
|
5202
5404
|
greeting?: string | undefined;
|
|
5203
5405
|
spec?: string | null | undefined;
|
|
5406
|
+
iconURL?: string | null | undefined;
|
|
5204
5407
|
fileTokenLimit?: string | number | undefined;
|
|
5205
5408
|
}>, Partial<{
|
|
5206
5409
|
model?: string | null | undefined;
|
|
5207
|
-
iconURL?: string | null | undefined;
|
|
5208
5410
|
modelLabel?: string | null | undefined;
|
|
5209
5411
|
promptPrefix?: string | null | undefined;
|
|
5210
5412
|
temperature?: number | null | undefined;
|
|
@@ -5217,6 +5419,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5217
5419
|
thinkingBudget?: number | undefined;
|
|
5218
5420
|
stream?: boolean | undefined;
|
|
5219
5421
|
artifacts?: string | undefined;
|
|
5422
|
+
chatProjectId?: string | null | undefined;
|
|
5220
5423
|
resendFiles?: boolean | undefined;
|
|
5221
5424
|
effort?: AnthropicEffort | null | undefined;
|
|
5222
5425
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
@@ -5224,10 +5427,10 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5224
5427
|
stop?: string[] | undefined;
|
|
5225
5428
|
greeting?: string | undefined;
|
|
5226
5429
|
spec?: string | null | undefined;
|
|
5430
|
+
iconURL?: string | null | undefined;
|
|
5227
5431
|
fileTokenLimit?: number | undefined;
|
|
5228
5432
|
}>, {
|
|
5229
5433
|
model?: string | null | undefined;
|
|
5230
|
-
iconURL?: string | null | undefined;
|
|
5231
5434
|
modelLabel?: string | null | undefined;
|
|
5232
5435
|
promptPrefix?: string | null | undefined;
|
|
5233
5436
|
temperature?: number | null | undefined;
|
|
@@ -5240,6 +5443,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5240
5443
|
thinkingBudget?: string | number | undefined;
|
|
5241
5444
|
stream?: boolean | undefined;
|
|
5242
5445
|
artifacts?: string | undefined;
|
|
5446
|
+
chatProjectId?: string | null | undefined;
|
|
5243
5447
|
resendFiles?: boolean | undefined;
|
|
5244
5448
|
effort?: AnthropicEffort | null | undefined;
|
|
5245
5449
|
thinkingDisplay?: ThinkingDisplay | null | undefined;
|
|
@@ -5247,6 +5451,7 @@ export declare const anthropicSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
|
5247
5451
|
stop?: string[] | undefined;
|
|
5248
5452
|
greeting?: string | undefined;
|
|
5249
5453
|
spec?: string | null | undefined;
|
|
5454
|
+
iconURL?: string | null | undefined;
|
|
5250
5455
|
fileTokenLimit?: string | number | undefined;
|
|
5251
5456
|
}>>;
|
|
5252
5457
|
export declare const tBannerSchema: z.ZodObject<{
|
|
@@ -5296,16 +5501,20 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5296
5501
|
label: z.ZodString;
|
|
5297
5502
|
description: z.ZodString;
|
|
5298
5503
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
5504
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
5505
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
5299
5506
|
}, "strip", z.ZodTypeAny, {
|
|
5300
5507
|
description: string;
|
|
5301
5508
|
authField: string;
|
|
5302
5509
|
label: string;
|
|
5303
5510
|
optional?: boolean | undefined;
|
|
5511
|
+
sensitive?: boolean | undefined;
|
|
5304
5512
|
}, {
|
|
5305
5513
|
description: string;
|
|
5306
5514
|
authField: string;
|
|
5307
5515
|
label: string;
|
|
5308
5516
|
optional?: boolean | undefined;
|
|
5517
|
+
sensitive?: boolean | undefined;
|
|
5309
5518
|
}>, "many">>;
|
|
5310
5519
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
5311
5520
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5321,6 +5530,7 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5321
5530
|
authField: string;
|
|
5322
5531
|
label: string;
|
|
5323
5532
|
optional?: boolean | undefined;
|
|
5533
|
+
sensitive?: boolean | undefined;
|
|
5324
5534
|
}[] | undefined;
|
|
5325
5535
|
authenticated?: boolean | undefined;
|
|
5326
5536
|
chatMenu?: boolean | undefined;
|
|
@@ -5336,6 +5546,7 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5336
5546
|
authField: string;
|
|
5337
5547
|
label: string;
|
|
5338
5548
|
optional?: boolean | undefined;
|
|
5549
|
+
sensitive?: boolean | undefined;
|
|
5339
5550
|
}[] | undefined;
|
|
5340
5551
|
authenticated?: boolean | undefined;
|
|
5341
5552
|
chatMenu?: boolean | undefined;
|
|
@@ -5395,6 +5606,7 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5395
5606
|
};
|
|
5396
5607
|
}>, "many">>;
|
|
5397
5608
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5609
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5398
5610
|
createdAt: z.ZodString;
|
|
5399
5611
|
updatedAt: z.ZodString;
|
|
5400
5612
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5429,20 +5641,22 @@ export declare const compactAgentsBaseSchema: z.ZodObject<Pick<{
|
|
|
5429
5641
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
5430
5642
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
5431
5643
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5432
|
-
}, "
|
|
5433
|
-
|
|
5644
|
+
}, "chatProjectId" | "agent_id" | "instructions" | "additional_instructions" | "greeting" | "spec" | "iconURL">, "strip", z.ZodTypeAny, {
|
|
5645
|
+
chatProjectId?: string | null | undefined;
|
|
5434
5646
|
agent_id?: string | undefined;
|
|
5435
5647
|
instructions?: string | undefined;
|
|
5436
5648
|
additional_instructions?: string | undefined;
|
|
5437
5649
|
greeting?: string | undefined;
|
|
5438
5650
|
spec?: string | null | undefined;
|
|
5439
|
-
}, {
|
|
5440
5651
|
iconURL?: string | null | undefined;
|
|
5652
|
+
}, {
|
|
5653
|
+
chatProjectId?: string | null | undefined;
|
|
5441
5654
|
agent_id?: string | undefined;
|
|
5442
5655
|
instructions?: string | undefined;
|
|
5443
5656
|
additional_instructions?: string | undefined;
|
|
5444
5657
|
greeting?: string | undefined;
|
|
5445
5658
|
spec?: string | null | undefined;
|
|
5659
|
+
iconURL?: string | null | undefined;
|
|
5446
5660
|
}>;
|
|
5447
5661
|
export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pick<{
|
|
5448
5662
|
conversationId: z.ZodNullable<z.ZodString>;
|
|
@@ -5462,16 +5676,20 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5462
5676
|
label: z.ZodString;
|
|
5463
5677
|
description: z.ZodString;
|
|
5464
5678
|
optional: z.ZodOptional<z.ZodBoolean>;
|
|
5679
|
+
/** Whether the field holds a secret and should be masked in the UI (defaults to masked when omitted). */
|
|
5680
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
5465
5681
|
}, "strip", z.ZodTypeAny, {
|
|
5466
5682
|
description: string;
|
|
5467
5683
|
authField: string;
|
|
5468
5684
|
label: string;
|
|
5469
5685
|
optional?: boolean | undefined;
|
|
5686
|
+
sensitive?: boolean | undefined;
|
|
5470
5687
|
}, {
|
|
5471
5688
|
description: string;
|
|
5472
5689
|
authField: string;
|
|
5473
5690
|
label: string;
|
|
5474
5691
|
optional?: boolean | undefined;
|
|
5692
|
+
sensitive?: boolean | undefined;
|
|
5475
5693
|
}>, "many">>;
|
|
5476
5694
|
authenticated: z.ZodOptional<z.ZodBoolean>;
|
|
5477
5695
|
chatMenu: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5487,6 +5705,7 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5487
5705
|
authField: string;
|
|
5488
5706
|
label: string;
|
|
5489
5707
|
optional?: boolean | undefined;
|
|
5708
|
+
sensitive?: boolean | undefined;
|
|
5490
5709
|
}[] | undefined;
|
|
5491
5710
|
authenticated?: boolean | undefined;
|
|
5492
5711
|
chatMenu?: boolean | undefined;
|
|
@@ -5502,6 +5721,7 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5502
5721
|
authField: string;
|
|
5503
5722
|
label: string;
|
|
5504
5723
|
optional?: boolean | undefined;
|
|
5724
|
+
sensitive?: boolean | undefined;
|
|
5505
5725
|
}[] | undefined;
|
|
5506
5726
|
authenticated?: boolean | undefined;
|
|
5507
5727
|
chatMenu?: boolean | undefined;
|
|
@@ -5561,6 +5781,7 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5561
5781
|
};
|
|
5562
5782
|
}>, "many">>;
|
|
5563
5783
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5784
|
+
chatProjectId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5564
5785
|
createdAt: z.ZodString;
|
|
5565
5786
|
updatedAt: z.ZodString;
|
|
5566
5787
|
resendFiles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5595,33 +5816,37 @@ export declare const compactAgentsSchema: z.ZodCatch<z.ZodEffects<z.ZodObject<Pi
|
|
|
5595
5816
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
5596
5817
|
/** @deprecated Prefer `modelLabel` over `chatGptLabel` */
|
|
5597
5818
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5598
|
-
}, "
|
|
5599
|
-
|
|
5819
|
+
}, "chatProjectId" | "agent_id" | "instructions" | "additional_instructions" | "greeting" | "spec" | "iconURL">, "strip", z.ZodTypeAny, {
|
|
5820
|
+
chatProjectId?: string | null | undefined;
|
|
5600
5821
|
agent_id?: string | undefined;
|
|
5601
5822
|
instructions?: string | undefined;
|
|
5602
5823
|
additional_instructions?: string | undefined;
|
|
5603
5824
|
greeting?: string | undefined;
|
|
5604
5825
|
spec?: string | null | undefined;
|
|
5605
|
-
}, {
|
|
5606
5826
|
iconURL?: string | null | undefined;
|
|
5827
|
+
}, {
|
|
5828
|
+
chatProjectId?: string | null | undefined;
|
|
5607
5829
|
agent_id?: string | undefined;
|
|
5608
5830
|
instructions?: string | undefined;
|
|
5609
5831
|
additional_instructions?: string | undefined;
|
|
5610
5832
|
greeting?: string | undefined;
|
|
5611
5833
|
spec?: string | null | undefined;
|
|
5612
|
-
}>, Partial<{
|
|
5613
5834
|
iconURL?: string | null | undefined;
|
|
5835
|
+
}>, Partial<{
|
|
5836
|
+
chatProjectId?: string | null | undefined;
|
|
5614
5837
|
agent_id?: string | undefined;
|
|
5615
5838
|
instructions?: string | undefined;
|
|
5616
5839
|
additional_instructions?: string | undefined;
|
|
5617
5840
|
greeting?: string | undefined;
|
|
5618
5841
|
spec?: string | null | undefined;
|
|
5619
|
-
}>, {
|
|
5620
5842
|
iconURL?: string | null | undefined;
|
|
5843
|
+
}>, {
|
|
5844
|
+
chatProjectId?: string | null | undefined;
|
|
5621
5845
|
agent_id?: string | undefined;
|
|
5622
5846
|
instructions?: string | undefined;
|
|
5623
5847
|
additional_instructions?: string | undefined;
|
|
5624
5848
|
greeting?: string | undefined;
|
|
5625
5849
|
spec?: string | null | undefined;
|
|
5850
|
+
iconURL?: string | null | undefined;
|
|
5626
5851
|
}>>;
|
|
5627
5852
|
export {};
|