@blueking/ai-blueking 0.4.4 → 0.4.5-beta.1

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.
@@ -5,16 +5,19 @@ interface Props {
5
5
  shortcuts?: ShortCut[];
6
6
  url?: string;
7
7
  prompts?: string[];
8
+ customChatOptions?: Record<string, any>;
8
9
  }
9
10
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
10
11
  enablePopup: boolean;
11
12
  shortcuts: () => ShortCut[];
12
13
  url: string;
13
14
  prompts: () => never[];
15
+ customChatOptions: () => {};
14
16
  }>, {
17
+ sessionContents: any;
15
18
  handleShow: () => void;
16
19
  handleStop: () => void;
17
- sendChat: (content: import("@blueking/ai-ui-sdk").BasicChatContent | import("@blueking/ai-ui-sdk").ShortcutChatContent, callback?: (() => void) | undefined) => void;
20
+ sendChat: (content: import("@blueking/ai-ui-sdk").BasicChatContent | import("@blueking/ai-ui-sdk").ShortcutChatContent, callback?: (() => void) | undefined, customOptions?: Record<string, any> | undefined) => void;
18
21
  handleSendMessage: (message: string) => void;
19
22
  handleShortcutClick: (shortcut: ShortCut) => void;
20
23
  handleDelete: (index: number) => void;
@@ -33,6 +36,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
33
36
  shortcuts: () => ShortCut[];
34
37
  url: string;
35
38
  prompts: () => never[];
39
+ customChatOptions: () => {};
36
40
  }>>> & {
37
41
  onShow?: (() => any) | undefined;
38
42
  onClose?: (() => any) | undefined;
@@ -43,6 +47,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
43
47
  prompts: string[];
44
48
  shortcuts: ShortCut[];
45
49
  url: string;
50
+ customChatOptions: Record<string, any>;
46
51
  }, {}>;
47
52
  export default _default;
48
53