g-ai-robot3 1.1.3 → 1.1.5

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/README.md CHANGED
@@ -104,6 +104,7 @@ export default defineConfig({
104
104
  | `systemName` | 系统标识 | `string` | `"g-ai-robot3"` |
105
105
  | `placementBottom` | 对话框底部距离 | `number` | `100` |
106
106
  | `placementLeft` | 对话框左侧距离 | `number` | `450` |
107
+ | `showFollowUpQuestions` | 是否显示关联问题 | `boolean` | `true` |
107
108
  | `useAudio` | 是否启用音频功能 | `boolean` | `true` |
108
109
  | `space` | 监听间隔(ms)(已废弃) | `number` | `3000` |
109
110
  | `mode` | 交互模式(默认 `video`,其他已废弃) | `string` | `"video"` |
@@ -12,6 +12,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
12
12
  isLocal?: boolean | undefined;
13
13
  conversationList?: ConversationItem[] | undefined;
14
14
  followUpQuestions?: string[] | undefined;
15
+ showFollowUpQuestions?: boolean | undefined;
15
16
  promptItems?: any[] | undefined;
16
17
  input?: string | undefined;
17
18
  inputRecognitionType?: string | undefined;
@@ -28,6 +29,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28
29
  isLocal: boolean;
29
30
  conversationList: () => never[];
30
31
  followUpQuestions: () => never[];
32
+ showFollowUpQuestions: boolean;
31
33
  promptItems: () => never[];
32
34
  input: string;
33
35
  inputRecognitionType: string;
@@ -60,6 +62,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
60
62
  isLocal?: boolean | undefined;
61
63
  conversationList?: ConversationItem[] | undefined;
62
64
  followUpQuestions?: string[] | undefined;
65
+ showFollowUpQuestions?: boolean | undefined;
63
66
  promptItems?: any[] | undefined;
64
67
  input?: string | undefined;
65
68
  inputRecognitionType?: string | undefined;
@@ -76,6 +79,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
76
79
  isLocal: boolean;
77
80
  conversationList: () => never[];
78
81
  followUpQuestions: () => never[];
82
+ showFollowUpQuestions: boolean;
79
83
  promptItems: () => never[];
80
84
  input: string;
81
85
  inputRecognitionType: string;
@@ -101,6 +105,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
101
105
  placementBottom: number;
102
106
  placementLeft: number;
103
107
  useAudio: boolean;
108
+ showFollowUpQuestions: boolean;
104
109
  dialogCss: CSSProperties;
105
110
  isGettingAnswer: boolean;
106
111
  isLocal: boolean;