@liip/liipgpt 2.6.2 → 3.0.0
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/button/liipgpt-button.iife.js +47 -6
- package/chat/liipgpt-chat.iife.js +80 -39
- package/config/index.cjs +32 -3
- package/config/index.d.ts +229 -40
- package/config/index.js +32 -3
- package/configurator/_app/env.js +1 -1
- package/configurator/_app/immutable/chunks/BAPHAIYf.js +1 -0
- package/configurator/_app/immutable/chunks/{Buwjqn5O.js → BPJ7Wmg3.js} +1 -1
- package/configurator/_app/immutable/chunks/{tN9GciFC.js → BQeTClLS.js} +1 -1
- package/configurator/_app/immutable/chunks/Br3XAryM.js +3 -0
- package/configurator/_app/immutable/chunks/{M-YrVFI7.js → CKBsx5jh.js} +1 -1
- package/configurator/_app/immutable/chunks/{BKW66Lfr.js → CM6OGTTD.js} +1 -1
- package/configurator/_app/immutable/chunks/CPeLWh9I.js +212 -0
- package/configurator/_app/immutable/chunks/DApeDt8n.js +1 -0
- package/configurator/_app/immutable/chunks/{DC-s52-u.js → DMTdy3IZ.js} +1 -1
- package/configurator/_app/immutable/chunks/{Df9MUm2j.js → DVzPdffW.js} +1 -1
- package/configurator/_app/immutable/chunks/{BWlPVxXO.js → Dw3u3J4Q.js} +44 -3
- package/configurator/_app/immutable/chunks/{Bu5Euvdy.js → LW4IUse-.js} +1 -1
- package/configurator/_app/immutable/chunks/{m7522vkh.js → LWSgf72j.js} +1 -1
- package/configurator/_app/immutable/entry/{app.CZ0SH_Vk.js → app.CX233_RN.js} +2 -2
- package/configurator/_app/immutable/entry/start.DP8mCLsI.js +1 -0
- package/configurator/_app/immutable/nodes/{0.CbZBO6K-.js → 0.CzOECOph.js} +44 -2
- package/configurator/_app/immutable/nodes/{1.RxzCcgx-.js → 1.DNHfTjB6.js} +1 -1
- package/configurator/_app/immutable/nodes/{2.Cfyy-seW.js → 2.Dr0dTBhS.js} +3 -3
- package/configurator/_app/immutable/nodes/{3.BoGEz7-s.js → 3.Cjna3oh9.js} +1 -1
- package/configurator/_app/version.json +1 -1
- package/configurator/index.html +10 -10
- package/configurator/sidebar.html +10 -10
- package/index.cjs +37 -7
- package/index.d.ts +533 -67
- package/index.js +37 -7
- package/package.json +1 -1
- package/configurator/_app/immutable/chunks/1dD7WPXn.js +0 -3
- package/configurator/_app/immutable/chunks/BmSehLEh.js +0 -1
- package/configurator/_app/immutable/chunks/C99KO4nD.js +0 -212
- package/configurator/_app/immutable/chunks/xZHK-ZHf.js +0 -1
- package/configurator/_app/immutable/entry/start.BV7l4dkK.js +0 -1
package/config/index.d.ts
CHANGED
|
@@ -2439,6 +2439,30 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2439
2439
|
darkMode: z.ZodString;
|
|
2440
2440
|
termsTitle: z.ZodOptional<z.ZodString>;
|
|
2441
2441
|
termsContent: z.ZodOptional<z.ZodString>;
|
|
2442
|
+
selectors: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2443
|
+
name: z.ZodString;
|
|
2444
|
+
namePlural: z.ZodOptional<z.ZodString>;
|
|
2445
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
2446
|
+
placeholder: z.ZodString;
|
|
2447
|
+
values: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
2448
|
+
}, "strip", z.ZodTypeAny, {
|
|
2449
|
+
values: Record<string, string>;
|
|
2450
|
+
name: string;
|
|
2451
|
+
placeholder: string;
|
|
2452
|
+
namePlural?: string | undefined;
|
|
2453
|
+
intro?: string | undefined;
|
|
2454
|
+
}, {
|
|
2455
|
+
values: Record<string, string>;
|
|
2456
|
+
name: string;
|
|
2457
|
+
placeholder: string;
|
|
2458
|
+
namePlural?: string | undefined;
|
|
2459
|
+
intro?: string | undefined;
|
|
2460
|
+
}>>>;
|
|
2461
|
+
hideSettings: z.ZodString;
|
|
2462
|
+
showSettings: z.ZodString;
|
|
2463
|
+
chooseAtLeastOneOption: z.ZodString;
|
|
2464
|
+
selectAll: z.ZodString;
|
|
2465
|
+
selectNone: z.ZodString;
|
|
2442
2466
|
}, "strip", z.ZodTypeAny, {
|
|
2443
2467
|
predefinedQuestions: string;
|
|
2444
2468
|
introductionTitle: string;
|
|
@@ -2480,6 +2504,11 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2480
2504
|
selectLanguage: string;
|
|
2481
2505
|
lightMode: string;
|
|
2482
2506
|
darkMode: string;
|
|
2507
|
+
hideSettings: string;
|
|
2508
|
+
showSettings: string;
|
|
2509
|
+
chooseAtLeastOneOption: string;
|
|
2510
|
+
selectAll: string;
|
|
2511
|
+
selectNone: string;
|
|
2483
2512
|
introductionDisclaimer?: string | undefined;
|
|
2484
2513
|
chatInputPlaceholderListening?: string | undefined;
|
|
2485
2514
|
chatFooterText?: string | undefined;
|
|
@@ -2488,6 +2517,13 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2488
2517
|
aboutThisChat?: string | undefined;
|
|
2489
2518
|
termsTitle?: string | undefined;
|
|
2490
2519
|
termsContent?: string | undefined;
|
|
2520
|
+
selectors?: Record<string, {
|
|
2521
|
+
values: Record<string, string>;
|
|
2522
|
+
name: string;
|
|
2523
|
+
placeholder: string;
|
|
2524
|
+
namePlural?: string | undefined;
|
|
2525
|
+
intro?: string | undefined;
|
|
2526
|
+
}> | undefined;
|
|
2491
2527
|
}, {
|
|
2492
2528
|
predefinedQuestions: string;
|
|
2493
2529
|
introductionTitle: string;
|
|
@@ -2529,6 +2565,11 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2529
2565
|
selectLanguage: string;
|
|
2530
2566
|
lightMode: string;
|
|
2531
2567
|
darkMode: string;
|
|
2568
|
+
hideSettings: string;
|
|
2569
|
+
showSettings: string;
|
|
2570
|
+
chooseAtLeastOneOption: string;
|
|
2571
|
+
selectAll: string;
|
|
2572
|
+
selectNone: string;
|
|
2532
2573
|
introductionDisclaimer?: string | undefined;
|
|
2533
2574
|
chatInputPlaceholderListening?: string | undefined;
|
|
2534
2575
|
chatFooterText?: string | undefined;
|
|
@@ -2537,6 +2578,13 @@ declare const translationSchema: z.ZodObject<{
|
|
|
2537
2578
|
aboutThisChat?: string | undefined;
|
|
2538
2579
|
termsTitle?: string | undefined;
|
|
2539
2580
|
termsContent?: string | undefined;
|
|
2581
|
+
selectors?: Record<string, {
|
|
2582
|
+
values: Record<string, string>;
|
|
2583
|
+
name: string;
|
|
2584
|
+
placeholder: string;
|
|
2585
|
+
namePlural?: string | undefined;
|
|
2586
|
+
intro?: string | undefined;
|
|
2587
|
+
}> | undefined;
|
|
2540
2588
|
}>;
|
|
2541
2589
|
declare const languagesSchema: z.ZodEnum<[
|
|
2542
2590
|
"en",
|
|
@@ -4301,6 +4349,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
4301
4349
|
showContextMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4302
4350
|
showContextInfo: z.ZodOptional<z.ZodBoolean>;
|
|
4303
4351
|
showReferencesByDefault: z.ZodOptional<z.ZodBoolean>;
|
|
4352
|
+
showExpandedSelectors: z.ZodOptional<z.ZodBoolean>;
|
|
4304
4353
|
allowAudioInput: z.ZodOptional<z.ZodBoolean>;
|
|
4305
4354
|
blockPII: z.ZodOptional<z.ZodBoolean>;
|
|
4306
4355
|
questionPrefix: z.ZodOptional<z.ZodString>;
|
|
@@ -5513,6 +5562,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5513
5562
|
"chevronDown",
|
|
5514
5563
|
"chevronUp",
|
|
5515
5564
|
"chevronTopDown",
|
|
5565
|
+
"chevronDownSmall",
|
|
5516
5566
|
"internalLink",
|
|
5517
5567
|
"externalLink",
|
|
5518
5568
|
"liip",
|
|
@@ -5523,7 +5573,12 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5523
5573
|
"listUnordered",
|
|
5524
5574
|
"lightMode",
|
|
5525
5575
|
"darkMode",
|
|
5526
|
-
"avatarLarge"
|
|
5576
|
+
"avatarLarge",
|
|
5577
|
+
"settings",
|
|
5578
|
+
"settingsClose",
|
|
5579
|
+
"sources",
|
|
5580
|
+
"model",
|
|
5581
|
+
"checkbox"
|
|
5527
5582
|
]>, z.ZodString>>;
|
|
5528
5583
|
}, "strip", z.ZodTypeAny, {
|
|
5529
5584
|
base?: {
|
|
@@ -5656,7 +5711,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5656
5711
|
borderColor?: string | undefined;
|
|
5657
5712
|
boxShadow?: string | undefined;
|
|
5658
5713
|
}> | undefined;
|
|
5659
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
5714
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
5660
5715
|
}, {
|
|
5661
5716
|
base?: {
|
|
5662
5717
|
boxShadow?: string | undefined;
|
|
@@ -5788,7 +5843,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5788
5843
|
borderColor?: string | undefined;
|
|
5789
5844
|
boxShadow?: string | undefined;
|
|
5790
5845
|
}> | undefined;
|
|
5791
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
5846
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
5792
5847
|
}>>;
|
|
5793
5848
|
}, "strip", z.ZodTypeAny, {
|
|
5794
5849
|
customCSS?: string | undefined;
|
|
@@ -5925,7 +5980,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
5925
5980
|
borderColor?: string | undefined;
|
|
5926
5981
|
boxShadow?: string | undefined;
|
|
5927
5982
|
}> | undefined;
|
|
5928
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
5983
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
5929
5984
|
} | undefined;
|
|
5930
5985
|
}, {
|
|
5931
5986
|
customCSS?: string | undefined;
|
|
@@ -6062,7 +6117,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6062
6117
|
borderColor?: string | undefined;
|
|
6063
6118
|
boxShadow?: string | undefined;
|
|
6064
6119
|
}> | undefined;
|
|
6065
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
6120
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
6066
6121
|
} | undefined;
|
|
6067
6122
|
}>>;
|
|
6068
6123
|
dark: z.ZodOptional<z.ZodObject<{
|
|
@@ -6690,6 +6745,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6690
6745
|
"chevronDown",
|
|
6691
6746
|
"chevronUp",
|
|
6692
6747
|
"chevronTopDown",
|
|
6748
|
+
"chevronDownSmall",
|
|
6693
6749
|
"internalLink",
|
|
6694
6750
|
"externalLink",
|
|
6695
6751
|
"liip",
|
|
@@ -6700,7 +6756,12 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6700
6756
|
"listUnordered",
|
|
6701
6757
|
"lightMode",
|
|
6702
6758
|
"darkMode",
|
|
6703
|
-
"avatarLarge"
|
|
6759
|
+
"avatarLarge",
|
|
6760
|
+
"settings",
|
|
6761
|
+
"settingsClose",
|
|
6762
|
+
"sources",
|
|
6763
|
+
"model",
|
|
6764
|
+
"checkbox"
|
|
6704
6765
|
]>, z.ZodString>>;
|
|
6705
6766
|
}, "strip", z.ZodTypeAny, {
|
|
6706
6767
|
base?: {
|
|
@@ -6833,7 +6894,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6833
6894
|
borderColor?: string | undefined;
|
|
6834
6895
|
boxShadow?: string | undefined;
|
|
6835
6896
|
}> | undefined;
|
|
6836
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
6897
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
6837
6898
|
}, {
|
|
6838
6899
|
base?: {
|
|
6839
6900
|
boxShadow?: string | undefined;
|
|
@@ -6965,7 +7026,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
6965
7026
|
borderColor?: string | undefined;
|
|
6966
7027
|
boxShadow?: string | undefined;
|
|
6967
7028
|
}> | undefined;
|
|
6968
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7029
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
6969
7030
|
}>>;
|
|
6970
7031
|
}, "strip", z.ZodTypeAny, {
|
|
6971
7032
|
customCSS?: string | undefined;
|
|
@@ -7102,7 +7163,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7102
7163
|
borderColor?: string | undefined;
|
|
7103
7164
|
boxShadow?: string | undefined;
|
|
7104
7165
|
}> | undefined;
|
|
7105
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7166
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
7106
7167
|
} | undefined;
|
|
7107
7168
|
}, {
|
|
7108
7169
|
customCSS?: string | undefined;
|
|
@@ -7239,7 +7300,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7239
7300
|
borderColor?: string | undefined;
|
|
7240
7301
|
boxShadow?: string | undefined;
|
|
7241
7302
|
}> | undefined;
|
|
7242
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7303
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
7243
7304
|
} | undefined;
|
|
7244
7305
|
}>>;
|
|
7245
7306
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7378,7 +7439,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7378
7439
|
borderColor?: string | undefined;
|
|
7379
7440
|
boxShadow?: string | undefined;
|
|
7380
7441
|
}> | undefined;
|
|
7381
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7442
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
7382
7443
|
} | undefined;
|
|
7383
7444
|
} | undefined;
|
|
7384
7445
|
dark?: {
|
|
@@ -7516,7 +7577,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7516
7577
|
borderColor?: string | undefined;
|
|
7517
7578
|
boxShadow?: string | undefined;
|
|
7518
7579
|
}> | undefined;
|
|
7519
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7580
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
7520
7581
|
} | undefined;
|
|
7521
7582
|
} | undefined;
|
|
7522
7583
|
}, {
|
|
@@ -7655,7 +7716,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7655
7716
|
borderColor?: string | undefined;
|
|
7656
7717
|
boxShadow?: string | undefined;
|
|
7657
7718
|
}> | undefined;
|
|
7658
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7719
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
7659
7720
|
} | undefined;
|
|
7660
7721
|
} | undefined;
|
|
7661
7722
|
dark?: {
|
|
@@ -7793,7 +7854,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
7793
7854
|
borderColor?: string | undefined;
|
|
7794
7855
|
boxShadow?: string | undefined;
|
|
7795
7856
|
}> | undefined;
|
|
7796
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
7857
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
7797
7858
|
} | undefined;
|
|
7798
7859
|
} | undefined;
|
|
7799
7860
|
}>>;
|
|
@@ -8020,7 +8081,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8020
8081
|
borderColor?: string | undefined;
|
|
8021
8082
|
boxShadow?: string | undefined;
|
|
8022
8083
|
}> | undefined;
|
|
8023
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
8084
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
8024
8085
|
} | undefined;
|
|
8025
8086
|
} | undefined;
|
|
8026
8087
|
dark?: {
|
|
@@ -8158,7 +8219,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8158
8219
|
borderColor?: string | undefined;
|
|
8159
8220
|
boxShadow?: string | undefined;
|
|
8160
8221
|
}> | undefined;
|
|
8161
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
8222
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
8162
8223
|
} | undefined;
|
|
8163
8224
|
} | undefined;
|
|
8164
8225
|
} | undefined;
|
|
@@ -8385,7 +8446,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8385
8446
|
borderColor?: string | undefined;
|
|
8386
8447
|
boxShadow?: string | undefined;
|
|
8387
8448
|
}> | undefined;
|
|
8388
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
8449
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
8389
8450
|
} | undefined;
|
|
8390
8451
|
} | undefined;
|
|
8391
8452
|
dark?: {
|
|
@@ -8523,7 +8584,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8523
8584
|
borderColor?: string | undefined;
|
|
8524
8585
|
boxShadow?: string | undefined;
|
|
8525
8586
|
}> | undefined;
|
|
8526
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
8587
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
8527
8588
|
} | undefined;
|
|
8528
8589
|
} | undefined;
|
|
8529
8590
|
} | undefined;
|
|
@@ -8582,6 +8643,30 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8582
8643
|
darkMode: z.ZodOptional<z.ZodString>;
|
|
8583
8644
|
termsTitle: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8584
8645
|
termsContent: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8646
|
+
selectors: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8647
|
+
name: z.ZodString;
|
|
8648
|
+
namePlural: z.ZodOptional<z.ZodString>;
|
|
8649
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
8650
|
+
placeholder: z.ZodString;
|
|
8651
|
+
values: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
8652
|
+
}, "strip", z.ZodTypeAny, {
|
|
8653
|
+
values: Record<string, string>;
|
|
8654
|
+
name: string;
|
|
8655
|
+
placeholder: string;
|
|
8656
|
+
namePlural?: string | undefined;
|
|
8657
|
+
intro?: string | undefined;
|
|
8658
|
+
}, {
|
|
8659
|
+
values: Record<string, string>;
|
|
8660
|
+
name: string;
|
|
8661
|
+
placeholder: string;
|
|
8662
|
+
namePlural?: string | undefined;
|
|
8663
|
+
intro?: string | undefined;
|
|
8664
|
+
}>>>>;
|
|
8665
|
+
hideSettings: z.ZodOptional<z.ZodString>;
|
|
8666
|
+
showSettings: z.ZodOptional<z.ZodString>;
|
|
8667
|
+
chooseAtLeastOneOption: z.ZodOptional<z.ZodString>;
|
|
8668
|
+
selectAll: z.ZodOptional<z.ZodString>;
|
|
8669
|
+
selectNone: z.ZodOptional<z.ZodString>;
|
|
8585
8670
|
}, "strip", z.ZodTypeAny, {
|
|
8586
8671
|
predefinedQuestions?: string | undefined;
|
|
8587
8672
|
introductionTitle?: string | undefined;
|
|
@@ -8631,6 +8716,18 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8631
8716
|
darkMode?: string | undefined;
|
|
8632
8717
|
termsTitle?: string | undefined;
|
|
8633
8718
|
termsContent?: string | undefined;
|
|
8719
|
+
selectors?: Record<string, {
|
|
8720
|
+
values: Record<string, string>;
|
|
8721
|
+
name: string;
|
|
8722
|
+
placeholder: string;
|
|
8723
|
+
namePlural?: string | undefined;
|
|
8724
|
+
intro?: string | undefined;
|
|
8725
|
+
}> | undefined;
|
|
8726
|
+
hideSettings?: string | undefined;
|
|
8727
|
+
showSettings?: string | undefined;
|
|
8728
|
+
chooseAtLeastOneOption?: string | undefined;
|
|
8729
|
+
selectAll?: string | undefined;
|
|
8730
|
+
selectNone?: string | undefined;
|
|
8634
8731
|
}, {
|
|
8635
8732
|
predefinedQuestions?: string | undefined;
|
|
8636
8733
|
introductionTitle?: string | undefined;
|
|
@@ -8680,6 +8777,18 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8680
8777
|
darkMode?: string | undefined;
|
|
8681
8778
|
termsTitle?: string | undefined;
|
|
8682
8779
|
termsContent?: string | undefined;
|
|
8780
|
+
selectors?: Record<string, {
|
|
8781
|
+
values: Record<string, string>;
|
|
8782
|
+
name: string;
|
|
8783
|
+
placeholder: string;
|
|
8784
|
+
namePlural?: string | undefined;
|
|
8785
|
+
intro?: string | undefined;
|
|
8786
|
+
}> | undefined;
|
|
8787
|
+
hideSettings?: string | undefined;
|
|
8788
|
+
showSettings?: string | undefined;
|
|
8789
|
+
chooseAtLeastOneOption?: string | undefined;
|
|
8790
|
+
selectAll?: string | undefined;
|
|
8791
|
+
selectNone?: string | undefined;
|
|
8683
8792
|
}>>>;
|
|
8684
8793
|
buttonHref: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
8685
8794
|
addQueryToUrlParams: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -8691,6 +8800,32 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8691
8800
|
"none",
|
|
8692
8801
|
"location"
|
|
8693
8802
|
]>>>;
|
|
8803
|
+
selectorsConfig: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8804
|
+
settingName: z.ZodString;
|
|
8805
|
+
/** Icon name that has to match an SVG definition in the theme */
|
|
8806
|
+
iconName: z.ZodString;
|
|
8807
|
+
settingIntro: z.ZodOptional<z.ZodString>;
|
|
8808
|
+
type: z.ZodEnum<[
|
|
8809
|
+
"single-select",
|
|
8810
|
+
"multi-select"
|
|
8811
|
+
]>;
|
|
8812
|
+
allowEmpty: z.ZodBoolean;
|
|
8813
|
+
values: z.ZodArray<z.ZodString, "many">;
|
|
8814
|
+
}, "strip", z.ZodTypeAny, {
|
|
8815
|
+
type: "single-select" | "multi-select";
|
|
8816
|
+
values: string[];
|
|
8817
|
+
settingName: string;
|
|
8818
|
+
iconName: string;
|
|
8819
|
+
allowEmpty: boolean;
|
|
8820
|
+
settingIntro?: string | undefined;
|
|
8821
|
+
}, {
|
|
8822
|
+
type: "single-select" | "multi-select";
|
|
8823
|
+
values: string[];
|
|
8824
|
+
settingName: string;
|
|
8825
|
+
iconName: string;
|
|
8826
|
+
allowEmpty: boolean;
|
|
8827
|
+
settingIntro?: string | undefined;
|
|
8828
|
+
}>, "many">>;
|
|
8694
8829
|
}, "strip", z.ZodTypeAny, {
|
|
8695
8830
|
menu?: Partial<Record<"en" | "de" | "fr" | "it", {
|
|
8696
8831
|
url: string;
|
|
@@ -8720,6 +8855,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8720
8855
|
showContextMenu?: boolean | undefined;
|
|
8721
8856
|
showContextInfo?: boolean | undefined;
|
|
8722
8857
|
showReferencesByDefault?: boolean | undefined;
|
|
8858
|
+
showExpandedSelectors?: boolean | undefined;
|
|
8723
8859
|
allowAudioInput?: boolean | undefined;
|
|
8724
8860
|
blockPII?: boolean | undefined;
|
|
8725
8861
|
questionPrefix?: string | undefined;
|
|
@@ -8948,7 +9084,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8948
9084
|
borderColor?: string | undefined;
|
|
8949
9085
|
boxShadow?: string | undefined;
|
|
8950
9086
|
}> | undefined;
|
|
8951
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
9087
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
8952
9088
|
} | undefined;
|
|
8953
9089
|
} | undefined;
|
|
8954
9090
|
dark?: {
|
|
@@ -9086,7 +9222,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9086
9222
|
borderColor?: string | undefined;
|
|
9087
9223
|
boxShadow?: string | undefined;
|
|
9088
9224
|
}> | undefined;
|
|
9089
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
9225
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
9090
9226
|
} | undefined;
|
|
9091
9227
|
} | undefined;
|
|
9092
9228
|
} | undefined;
|
|
@@ -9140,12 +9276,32 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9140
9276
|
darkMode?: string | undefined;
|
|
9141
9277
|
termsTitle?: string | undefined;
|
|
9142
9278
|
termsContent?: string | undefined;
|
|
9279
|
+
selectors?: Record<string, {
|
|
9280
|
+
values: Record<string, string>;
|
|
9281
|
+
name: string;
|
|
9282
|
+
placeholder: string;
|
|
9283
|
+
namePlural?: string | undefined;
|
|
9284
|
+
intro?: string | undefined;
|
|
9285
|
+
}> | undefined;
|
|
9286
|
+
hideSettings?: string | undefined;
|
|
9287
|
+
showSettings?: string | undefined;
|
|
9288
|
+
chooseAtLeastOneOption?: string | undefined;
|
|
9289
|
+
selectAll?: string | undefined;
|
|
9290
|
+
selectNone?: string | undefined;
|
|
9143
9291
|
}>> | undefined;
|
|
9144
9292
|
buttonHref?: string | undefined;
|
|
9145
9293
|
addQueryToUrlParams?: boolean | undefined;
|
|
9146
9294
|
renderKatex?: boolean | undefined;
|
|
9147
9295
|
reflectLanguageInPath?: boolean | undefined;
|
|
9148
9296
|
sendReferrer?: "all" | "own" | "none" | "location" | undefined;
|
|
9297
|
+
selectorsConfig?: {
|
|
9298
|
+
type: "single-select" | "multi-select";
|
|
9299
|
+
values: string[];
|
|
9300
|
+
settingName: string;
|
|
9301
|
+
iconName: string;
|
|
9302
|
+
allowEmpty: boolean;
|
|
9303
|
+
settingIntro?: string | undefined;
|
|
9304
|
+
}[] | undefined;
|
|
9149
9305
|
}, {
|
|
9150
9306
|
menu?: Partial<Record<"en" | "de" | "fr" | "it", {
|
|
9151
9307
|
url: string;
|
|
@@ -9175,6 +9331,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9175
9331
|
showContextMenu?: boolean | undefined;
|
|
9176
9332
|
showContextInfo?: boolean | undefined;
|
|
9177
9333
|
showReferencesByDefault?: boolean | undefined;
|
|
9334
|
+
showExpandedSelectors?: boolean | undefined;
|
|
9178
9335
|
allowAudioInput?: boolean | undefined;
|
|
9179
9336
|
blockPII?: boolean | undefined;
|
|
9180
9337
|
questionPrefix?: string | undefined;
|
|
@@ -9403,7 +9560,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9403
9560
|
borderColor?: string | undefined;
|
|
9404
9561
|
boxShadow?: string | undefined;
|
|
9405
9562
|
}> | undefined;
|
|
9406
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
9563
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
9407
9564
|
} | undefined;
|
|
9408
9565
|
} | undefined;
|
|
9409
9566
|
dark?: {
|
|
@@ -9541,7 +9698,7 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9541
9698
|
borderColor?: string | undefined;
|
|
9542
9699
|
boxShadow?: string | undefined;
|
|
9543
9700
|
}> | undefined;
|
|
9544
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
9701
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
9545
9702
|
} | undefined;
|
|
9546
9703
|
} | undefined;
|
|
9547
9704
|
} | undefined;
|
|
@@ -9595,12 +9752,32 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9595
9752
|
darkMode?: string | undefined;
|
|
9596
9753
|
termsTitle?: string | undefined;
|
|
9597
9754
|
termsContent?: string | undefined;
|
|
9755
|
+
selectors?: Record<string, {
|
|
9756
|
+
values: Record<string, string>;
|
|
9757
|
+
name: string;
|
|
9758
|
+
placeholder: string;
|
|
9759
|
+
namePlural?: string | undefined;
|
|
9760
|
+
intro?: string | undefined;
|
|
9761
|
+
}> | undefined;
|
|
9762
|
+
hideSettings?: string | undefined;
|
|
9763
|
+
showSettings?: string | undefined;
|
|
9764
|
+
chooseAtLeastOneOption?: string | undefined;
|
|
9765
|
+
selectAll?: string | undefined;
|
|
9766
|
+
selectNone?: string | undefined;
|
|
9598
9767
|
}>> | undefined;
|
|
9599
9768
|
buttonHref?: string | undefined;
|
|
9600
9769
|
addQueryToUrlParams?: boolean | undefined;
|
|
9601
9770
|
renderKatex?: boolean | undefined;
|
|
9602
9771
|
reflectLanguageInPath?: boolean | undefined;
|
|
9603
9772
|
sendReferrer?: "all" | "own" | "none" | "location" | undefined;
|
|
9773
|
+
selectorsConfig?: {
|
|
9774
|
+
type: "single-select" | "multi-select";
|
|
9775
|
+
values: string[];
|
|
9776
|
+
settingName: string;
|
|
9777
|
+
iconName: string;
|
|
9778
|
+
allowEmpty: boolean;
|
|
9779
|
+
settingIntro?: string | undefined;
|
|
9780
|
+
}[] | undefined;
|
|
9604
9781
|
}>;
|
|
9605
9782
|
export type ChatConfig = z.infer<typeof chatConfigSchema>;
|
|
9606
9783
|
declare const themeSchema: ZodObject<{
|
|
@@ -10732,6 +10909,7 @@ declare const themeSchema: ZodObject<{
|
|
|
10732
10909
|
"chevronDown",
|
|
10733
10910
|
"chevronUp",
|
|
10734
10911
|
"chevronTopDown",
|
|
10912
|
+
"chevronDownSmall",
|
|
10735
10913
|
"internalLink",
|
|
10736
10914
|
"externalLink",
|
|
10737
10915
|
"liip",
|
|
@@ -10742,7 +10920,12 @@ declare const themeSchema: ZodObject<{
|
|
|
10742
10920
|
"listUnordered",
|
|
10743
10921
|
"lightMode",
|
|
10744
10922
|
"darkMode",
|
|
10745
|
-
"avatarLarge"
|
|
10923
|
+
"avatarLarge",
|
|
10924
|
+
"settings",
|
|
10925
|
+
"settingsClose",
|
|
10926
|
+
"sources",
|
|
10927
|
+
"model",
|
|
10928
|
+
"checkbox"
|
|
10746
10929
|
]>, ZodString>>;
|
|
10747
10930
|
}, "strip", ZodTypeAny, {
|
|
10748
10931
|
base?: {
|
|
@@ -10875,7 +11058,7 @@ declare const themeSchema: ZodObject<{
|
|
|
10875
11058
|
borderColor?: string | undefined;
|
|
10876
11059
|
boxShadow?: string | undefined;
|
|
10877
11060
|
}> | undefined;
|
|
10878
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
11061
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
10879
11062
|
}, {
|
|
10880
11063
|
base?: {
|
|
10881
11064
|
boxShadow?: string | undefined;
|
|
@@ -11007,7 +11190,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11007
11190
|
borderColor?: string | undefined;
|
|
11008
11191
|
boxShadow?: string | undefined;
|
|
11009
11192
|
}> | undefined;
|
|
11010
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
11193
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
11011
11194
|
}>>;
|
|
11012
11195
|
}, "strip", ZodTypeAny, {
|
|
11013
11196
|
customCSS?: string | undefined;
|
|
@@ -11144,7 +11327,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11144
11327
|
borderColor?: string | undefined;
|
|
11145
11328
|
boxShadow?: string | undefined;
|
|
11146
11329
|
}> | undefined;
|
|
11147
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
11330
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
11148
11331
|
} | undefined;
|
|
11149
11332
|
}, {
|
|
11150
11333
|
customCSS?: string | undefined;
|
|
@@ -11281,7 +11464,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11281
11464
|
borderColor?: string | undefined;
|
|
11282
11465
|
boxShadow?: string | undefined;
|
|
11283
11466
|
}> | undefined;
|
|
11284
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
11467
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
11285
11468
|
} | undefined;
|
|
11286
11469
|
}>>;
|
|
11287
11470
|
dark: ZodOptional<ZodObject<{
|
|
@@ -11909,6 +12092,7 @@ declare const themeSchema: ZodObject<{
|
|
|
11909
12092
|
"chevronDown",
|
|
11910
12093
|
"chevronUp",
|
|
11911
12094
|
"chevronTopDown",
|
|
12095
|
+
"chevronDownSmall",
|
|
11912
12096
|
"internalLink",
|
|
11913
12097
|
"externalLink",
|
|
11914
12098
|
"liip",
|
|
@@ -11919,7 +12103,12 @@ declare const themeSchema: ZodObject<{
|
|
|
11919
12103
|
"listUnordered",
|
|
11920
12104
|
"lightMode",
|
|
11921
12105
|
"darkMode",
|
|
11922
|
-
"avatarLarge"
|
|
12106
|
+
"avatarLarge",
|
|
12107
|
+
"settings",
|
|
12108
|
+
"settingsClose",
|
|
12109
|
+
"sources",
|
|
12110
|
+
"model",
|
|
12111
|
+
"checkbox"
|
|
11923
12112
|
]>, ZodString>>;
|
|
11924
12113
|
}, "strip", ZodTypeAny, {
|
|
11925
12114
|
base?: {
|
|
@@ -12052,7 +12241,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12052
12241
|
borderColor?: string | undefined;
|
|
12053
12242
|
boxShadow?: string | undefined;
|
|
12054
12243
|
}> | undefined;
|
|
12055
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
12244
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12056
12245
|
}, {
|
|
12057
12246
|
base?: {
|
|
12058
12247
|
boxShadow?: string | undefined;
|
|
@@ -12184,7 +12373,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12184
12373
|
borderColor?: string | undefined;
|
|
12185
12374
|
boxShadow?: string | undefined;
|
|
12186
12375
|
}> | undefined;
|
|
12187
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
12376
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12188
12377
|
}>>;
|
|
12189
12378
|
}, "strip", ZodTypeAny, {
|
|
12190
12379
|
customCSS?: string | undefined;
|
|
@@ -12321,7 +12510,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12321
12510
|
borderColor?: string | undefined;
|
|
12322
12511
|
boxShadow?: string | undefined;
|
|
12323
12512
|
}> | undefined;
|
|
12324
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
12513
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12325
12514
|
} | undefined;
|
|
12326
12515
|
}, {
|
|
12327
12516
|
customCSS?: string | undefined;
|
|
@@ -12458,7 +12647,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12458
12647
|
borderColor?: string | undefined;
|
|
12459
12648
|
boxShadow?: string | undefined;
|
|
12460
12649
|
}> | undefined;
|
|
12461
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
12650
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12462
12651
|
} | undefined;
|
|
12463
12652
|
}>>;
|
|
12464
12653
|
}, "strip", ZodTypeAny, {
|
|
@@ -12597,7 +12786,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12597
12786
|
borderColor?: string | undefined;
|
|
12598
12787
|
boxShadow?: string | undefined;
|
|
12599
12788
|
}> | undefined;
|
|
12600
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
12789
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12601
12790
|
} | undefined;
|
|
12602
12791
|
} | undefined;
|
|
12603
12792
|
dark?: {
|
|
@@ -12735,7 +12924,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12735
12924
|
borderColor?: string | undefined;
|
|
12736
12925
|
boxShadow?: string | undefined;
|
|
12737
12926
|
}> | undefined;
|
|
12738
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
12927
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12739
12928
|
} | undefined;
|
|
12740
12929
|
} | undefined;
|
|
12741
12930
|
}, {
|
|
@@ -12874,7 +13063,7 @@ declare const themeSchema: ZodObject<{
|
|
|
12874
13063
|
borderColor?: string | undefined;
|
|
12875
13064
|
boxShadow?: string | undefined;
|
|
12876
13065
|
}> | undefined;
|
|
12877
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
13066
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
12878
13067
|
} | undefined;
|
|
12879
13068
|
} | undefined;
|
|
12880
13069
|
dark?: {
|
|
@@ -13012,7 +13201,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13012
13201
|
borderColor?: string | undefined;
|
|
13013
13202
|
boxShadow?: string | undefined;
|
|
13014
13203
|
}> | undefined;
|
|
13015
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
13204
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
13016
13205
|
} | undefined;
|
|
13017
13206
|
} | undefined;
|
|
13018
13207
|
}>>;
|
|
@@ -13239,7 +13428,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13239
13428
|
borderColor?: string | undefined;
|
|
13240
13429
|
boxShadow?: string | undefined;
|
|
13241
13430
|
}> | undefined;
|
|
13242
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
13431
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
13243
13432
|
} | undefined;
|
|
13244
13433
|
} | undefined;
|
|
13245
13434
|
dark?: {
|
|
@@ -13377,7 +13566,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13377
13566
|
borderColor?: string | undefined;
|
|
13378
13567
|
boxShadow?: string | undefined;
|
|
13379
13568
|
}> | undefined;
|
|
13380
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
13569
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
13381
13570
|
} | undefined;
|
|
13382
13571
|
} | undefined;
|
|
13383
13572
|
} | undefined;
|
|
@@ -13604,7 +13793,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13604
13793
|
borderColor?: string | undefined;
|
|
13605
13794
|
boxShadow?: string | undefined;
|
|
13606
13795
|
}> | undefined;
|
|
13607
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
13796
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
13608
13797
|
} | undefined;
|
|
13609
13798
|
} | undefined;
|
|
13610
13799
|
dark?: {
|
|
@@ -13742,7 +13931,7 @@ declare const themeSchema: ZodObject<{
|
|
|
13742
13931
|
borderColor?: string | undefined;
|
|
13743
13932
|
boxShadow?: string | undefined;
|
|
13744
13933
|
}> | undefined;
|
|
13745
|
-
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered", string>> | undefined;
|
|
13934
|
+
svgs?: Partial<Record<"retry" | "thread" | "message" | "lightMode" | "darkMode" | "audio" | "menu" | "copy" | "submit" | "abort" | "predefinedQuestion" | "edit" | "newConversation" | "voteUp" | "voteDown" | "messageLoading" | "expand" | "help" | "attach" | "record" | "reward" | "share" | "dismiss" | "info" | "menuClose" | "chevronDown" | "chevronUp" | "chevronTopDown" | "chevronDownSmall" | "internalLink" | "externalLink" | "liip" | "avatar" | "avatarLarge" | "openChat" | "speechInput" | "listUnordered" | "settings" | "settingsClose" | "sources" | "model" | "checkbox", string>> | undefined;
|
|
13746
13935
|
} | undefined;
|
|
13747
13936
|
} | undefined;
|
|
13748
13937
|
} | undefined;
|