@liip/liipgpt 2.6.3 → 2.6.4
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 +3 -3
- package/chat/liipgpt-chat.iife.js +30 -30
- package/config/index.cjs +2 -1
- package/config/index.d.ts +6 -3
- package/config/index.js +2 -1
- package/configurator/_app/env.js +1 -1
- package/configurator/_app/immutable/chunks/{CRx8IJ7-.js → 3JqtIvwh.js} +13 -13
- package/configurator/_app/immutable/chunks/{B5PG2YOi.js → Bnv-iyvp.js} +1 -1
- package/configurator/_app/immutable/chunks/{By2gon5z.js → BpbjeQs5.js} +1 -1
- package/configurator/_app/immutable/chunks/{CEfrDbdG.js → C6dLbwbN.js} +1 -1
- package/configurator/_app/immutable/chunks/{CmG21xA6.js → CHPoPnIb.js} +1 -1
- package/configurator/_app/immutable/chunks/{DM86f7bv.js → Cyn6RLjQ.js} +1 -1
- package/configurator/_app/immutable/chunks/Ddtu07x_.js +1 -0
- package/configurator/_app/immutable/chunks/{C1GrbPOB.js → DpT3h3Cj.js} +1 -1
- package/configurator/_app/immutable/chunks/Ia_qDzV9.js +3 -0
- package/configurator/_app/immutable/entry/{app.BUCp2aC3.js → app.C6Lz9kUE.js} +2 -2
- package/configurator/_app/immutable/entry/start.BrLLqc2_.js +1 -0
- package/configurator/_app/immutable/nodes/{0.DhCD7a6h.js → 0.AW2mys-2.js} +3 -2
- package/configurator/_app/immutable/nodes/{1.BVXr-J1L.js → 1.DLJ3Rj-t.js} +1 -1
- package/configurator/_app/immutable/nodes/{2.DXIIG1eK.js → 2.B3MdcWTy.js} +3 -3
- package/configurator/_app/immutable/nodes/{3.CRTmaP0m.js → 3.CgBYaWu4.js} +1 -1
- package/configurator/_app/version.json +1 -1
- package/configurator/index.html +6 -6
- package/configurator/sidebar.html +6 -6
- package/index.cjs +2 -1
- package/index.d.ts +20 -10
- package/index.js +2 -1
- package/package.json +1 -1
- package/configurator/_app/immutable/chunks/B-JTxB9f.js +0 -1
- package/configurator/_app/immutable/chunks/DmjYRs9V.js +0 -3
- package/configurator/_app/immutable/entry/start.Ch6vVA3P.js +0 -1
package/config/index.cjs
CHANGED
|
@@ -4326,13 +4326,14 @@ var completeChatConfigSchema = exports_external.object({
|
|
|
4326
4326
|
showContextMenu: exports_external.boolean(),
|
|
4327
4327
|
showContextInfo: exports_external.boolean(),
|
|
4328
4328
|
showReferencesByDefault: exports_external.boolean(),
|
|
4329
|
+
showTextFeedback: exports_external.boolean(),
|
|
4330
|
+
inlineLayout: exports_external.boolean(),
|
|
4329
4331
|
allowAudioInput: exports_external.boolean(),
|
|
4330
4332
|
blockPII: exports_external.boolean(),
|
|
4331
4333
|
questionPrefix: exports_external.string(),
|
|
4332
4334
|
menu: exports_external.record(languagesSchema, exports_external.array(menuItemSchema)).optional(),
|
|
4333
4335
|
supportedLanguages: exports_external.array(languagesSchema),
|
|
4334
4336
|
classification: classificationConfigSchema.optional(),
|
|
4335
|
-
showTextFeedback: exports_external.boolean(),
|
|
4336
4337
|
theme: themeSchema2,
|
|
4337
4338
|
translations: translationsSchema,
|
|
4338
4339
|
buttonHref: exports_external.string().optional(),
|
package/config/index.d.ts
CHANGED
|
@@ -4301,6 +4301,8 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
4301
4301
|
showContextMenu: z.ZodOptional<z.ZodBoolean>;
|
|
4302
4302
|
showContextInfo: z.ZodOptional<z.ZodBoolean>;
|
|
4303
4303
|
showReferencesByDefault: z.ZodOptional<z.ZodBoolean>;
|
|
4304
|
+
showTextFeedback: z.ZodOptional<z.ZodBoolean>;
|
|
4305
|
+
inlineLayout: z.ZodOptional<z.ZodBoolean>;
|
|
4304
4306
|
allowAudioInput: z.ZodOptional<z.ZodBoolean>;
|
|
4305
4307
|
blockPII: z.ZodOptional<z.ZodBoolean>;
|
|
4306
4308
|
questionPrefix: z.ZodOptional<z.ZodString>;
|
|
@@ -4416,7 +4418,6 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
4416
4418
|
label: string;
|
|
4417
4419
|
} | undefined;
|
|
4418
4420
|
}>>>;
|
|
4419
|
-
showTextFeedback: z.ZodOptional<z.ZodBoolean>;
|
|
4420
4421
|
theme: z.ZodOptional<z.ZodObject<{
|
|
4421
4422
|
avatarImageUrl: z.ZodOptional<z.ZodString>;
|
|
4422
4423
|
colors: z.ZodOptional<z.ZodObject<{
|
|
@@ -8720,11 +8721,12 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
8720
8721
|
showContextMenu?: boolean | undefined;
|
|
8721
8722
|
showContextInfo?: boolean | undefined;
|
|
8722
8723
|
showReferencesByDefault?: boolean | undefined;
|
|
8724
|
+
showTextFeedback?: boolean | undefined;
|
|
8725
|
+
inlineLayout?: boolean | undefined;
|
|
8723
8726
|
allowAudioInput?: boolean | undefined;
|
|
8724
8727
|
blockPII?: boolean | undefined;
|
|
8725
8728
|
questionPrefix?: string | undefined;
|
|
8726
8729
|
supportedLanguages?: ("en" | "de" | "fr" | "it")[] | undefined;
|
|
8727
|
-
showTextFeedback?: boolean | undefined;
|
|
8728
8730
|
theme?: {
|
|
8729
8731
|
borderRadius?: string | {
|
|
8730
8732
|
minRem: number;
|
|
@@ -9175,11 +9177,12 @@ export declare const chatConfigSchema: z.ZodObject<{
|
|
|
9175
9177
|
showContextMenu?: boolean | undefined;
|
|
9176
9178
|
showContextInfo?: boolean | undefined;
|
|
9177
9179
|
showReferencesByDefault?: boolean | undefined;
|
|
9180
|
+
showTextFeedback?: boolean | undefined;
|
|
9181
|
+
inlineLayout?: boolean | undefined;
|
|
9178
9182
|
allowAudioInput?: boolean | undefined;
|
|
9179
9183
|
blockPII?: boolean | undefined;
|
|
9180
9184
|
questionPrefix?: string | undefined;
|
|
9181
9185
|
supportedLanguages?: ("en" | "de" | "fr" | "it")[] | undefined;
|
|
9182
|
-
showTextFeedback?: boolean | undefined;
|
|
9183
9186
|
theme?: {
|
|
9184
9187
|
borderRadius?: string | {
|
|
9185
9188
|
minRem: number;
|
package/config/index.js
CHANGED
|
@@ -4302,13 +4302,14 @@ var completeChatConfigSchema = exports_external.object({
|
|
|
4302
4302
|
showContextMenu: exports_external.boolean(),
|
|
4303
4303
|
showContextInfo: exports_external.boolean(),
|
|
4304
4304
|
showReferencesByDefault: exports_external.boolean(),
|
|
4305
|
+
showTextFeedback: exports_external.boolean(),
|
|
4306
|
+
inlineLayout: exports_external.boolean(),
|
|
4305
4307
|
allowAudioInput: exports_external.boolean(),
|
|
4306
4308
|
blockPII: exports_external.boolean(),
|
|
4307
4309
|
questionPrefix: exports_external.string(),
|
|
4308
4310
|
menu: exports_external.record(languagesSchema, exports_external.array(menuItemSchema)).optional(),
|
|
4309
4311
|
supportedLanguages: exports_external.array(languagesSchema),
|
|
4310
4312
|
classification: classificationConfigSchema.optional(),
|
|
4311
|
-
showTextFeedback: exports_external.boolean(),
|
|
4312
4313
|
theme: themeSchema2,
|
|
4313
4314
|
translations: translationsSchema,
|
|
4314
4315
|
buttonHref: exports_external.string().optional(),
|
package/configurator/_app/env.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const env={"PUBLIC_API_URL":"https://liipgpt.api.dev.genai.liip.ch/liipgpt","PUBLIC_CI_COMMIT_TAG":"2.6.
|
|
1
|
+
export const env={"PUBLIC_API_URL":"https://liipgpt.api.dev.genai.liip.ch/liipgpt","PUBLIC_CI_COMMIT_TAG":"2.6.4"}
|