@ibiz-template-plugin/ai-chat 0.0.18 → 0.0.20
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.
|
@@ -43,6 +43,22 @@ export interface IChat {
|
|
|
43
43
|
* @type {string}
|
|
44
44
|
*/
|
|
45
45
|
appDataEntityId: string;
|
|
46
|
+
/**
|
|
47
|
+
* 传入对象参数(如果外部传入,在请求历史记录,需要附加当前参数)
|
|
48
|
+
*
|
|
49
|
+
* @author tony001
|
|
50
|
+
* @date 2025-03-26 14:03:56
|
|
51
|
+
* @type {object}
|
|
52
|
+
*/
|
|
53
|
+
appendCurData?: object;
|
|
54
|
+
/**
|
|
55
|
+
* 传入当前编辑内容作为用户消息(如果外部传入,在请求历史记录后,需要附加当前编辑内容作为用户消息)
|
|
56
|
+
*
|
|
57
|
+
* @author tony001
|
|
58
|
+
* @date 2025-03-26 15:03:33
|
|
59
|
+
* @type {string}
|
|
60
|
+
*/
|
|
61
|
+
appendCurContent?: string;
|
|
46
62
|
/**
|
|
47
63
|
* 内容工具项
|
|
48
64
|
*
|