@blueking/chat-x 0.0.25 → 0.0.26
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/dist/ag-ui/types/constants.d.ts +1 -0
- package/dist/ag-ui/types/messages.d.ts +1 -0
- package/dist/common/constants.d.ts +1 -0
- package/dist/components/chat-content/flow-agent-content/flow-agent-content.vue.d.ts +1 -0
- package/dist/components/chat-content/flow-agent-content/flow-agent-node-detail.vue.d.ts +11 -1
- package/dist/components/chat-content/knowledge-rag-content/knowledge-rag-content.vue.d.ts +1 -0
- package/dist/components/chat-content/reference-doc-content/reference-doc-content.vue.d.ts +1 -0
- package/dist/components/execution-summary/execution-summary.vue.d.ts +2 -2
- package/dist/composables/use-custom-tab.d.ts +6 -2
- package/dist/composables/use-message-group.d.ts +72 -3
- package/dist/index.css +1 -1
- package/dist/index.js +1782 -1727
- package/dist/index.js.map +1 -1
- package/dist/mcp/generated/docs/activity-message.md +2 -0
- package/dist/mcp/generated/docs/chat-container.md +20 -8
- package/dist/mcp/generated/docs/chat-input.md +2 -2
- package/dist/mcp/generated/docs/code-content.md +10 -14
- package/dist/mcp/generated/docs/constants.md +242 -0
- package/dist/mcp/generated/docs/execution-summary.md +4 -4
- package/dist/mcp/generated/docs/markdown-container.md +56 -0
- package/dist/mcp/generated/docs/markdown-latex.md +208 -0
- package/dist/mcp/generated/docs/markdown-mermaid.md +250 -0
- package/dist/mcp/generated/docs/message-container.md +9 -8
- package/dist/mcp/generated/docs/messages.md +475 -0
- package/dist/mcp/generated/docs/theme.md +388 -0
- package/dist/mcp/generated/docs/use-custom-tab.md +2 -1
- package/dist/mcp/generated/docs/use-message-group.md +18 -7
- package/dist/mcp/generated/index.json +1293 -0
- package/dist/types/custom.d.ts +3 -1
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import type { MessageStatus as MessageStatusType } from '../../../ag-ui/types/co
|
|
|
2
2
|
import type { BkFlowMessageContent } from '../../../ag-ui/types/contents';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
content?: BkFlowMessageContent;
|
|
5
|
+
messageUid?: string;
|
|
5
6
|
status?: MessageStatusType;
|
|
6
7
|
};
|
|
7
8
|
type __VLS_ModelProps = {
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import { type VNode } from 'vue';
|
|
1
2
|
import type { NodeDetailData } from '../../../types';
|
|
2
|
-
|
|
3
|
+
type __VLS_Slots = {
|
|
4
|
+
locateButton: () => VNode;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_base: import("vue").DefineComponent<{
|
|
3
7
|
data?: Partial<NodeDetailData>;
|
|
4
8
|
loading?: boolean;
|
|
5
9
|
node_id?: string;
|
|
@@ -18,5 +22,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
18
22
|
} & {
|
|
19
23
|
data: Partial<NodeDetailData>;
|
|
20
24
|
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
21
26
|
declare const _default: typeof __VLS_export;
|
|
22
27
|
export default _default;
|
|
28
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -2,6 +2,7 @@ import type { MessageStatus as MessageStatusType } from '../../../ag-ui/types/co
|
|
|
2
2
|
import type { KnowledgeRagMessageContent } from '../../../ag-ui/types/contents';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
content?: KnowledgeRagMessageContent;
|
|
5
|
+
messageUid?: string;
|
|
5
6
|
status?: MessageStatusType;
|
|
6
7
|
};
|
|
7
8
|
type __VLS_ModelProps = {
|
|
@@ -3,10 +3,10 @@ type __VLS_Props = {
|
|
|
3
3
|
messageGroups: MessageGroup[];
|
|
4
4
|
};
|
|
5
5
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
6
|
-
locateMessageGroup: (
|
|
6
|
+
locateMessageGroup: (uid: string, group: MessageGroup) => any;
|
|
7
7
|
updateKeyword: (keyword: string) => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
-
onLocateMessageGroup?: ((
|
|
9
|
+
onLocateMessageGroup?: ((uid: string, group: MessageGroup) => any) | undefined;
|
|
10
10
|
onUpdateKeyword?: ((keyword: string) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
declare const _default: typeof __VLS_export;
|
|
@@ -7,12 +7,16 @@ export declare function useCustomTabProvider<T extends Record<string, unknown>>(
|
|
|
7
7
|
}): {
|
|
8
8
|
tabs: ShallowRef<CustomTab<T>[], CustomTab<T>[]>;
|
|
9
9
|
selectedTab: import("vue").Ref<{
|
|
10
|
-
data?: import("vue").UnwrapRef<T
|
|
10
|
+
data?: import("vue").UnwrapRef<T & {
|
|
11
|
+
messageUid?: string;
|
|
12
|
+
}> | undefined;
|
|
11
13
|
icon?: string | undefined;
|
|
12
14
|
label: string;
|
|
13
15
|
name: string;
|
|
14
16
|
}, CustomTab<T> | {
|
|
15
|
-
data?: import("vue").UnwrapRef<T
|
|
17
|
+
data?: import("vue").UnwrapRef<T & {
|
|
18
|
+
messageUid?: string;
|
|
19
|
+
}> | undefined;
|
|
16
20
|
icon?: string | undefined;
|
|
17
21
|
label: string;
|
|
18
22
|
name: string;
|
|
@@ -7,8 +7,8 @@ export type MessageGroup = {
|
|
|
7
7
|
pause?: boolean;
|
|
8
8
|
startTime?: number;
|
|
9
9
|
type: MessageRole;
|
|
10
|
+
uid: string;
|
|
10
11
|
userMessageTitle?: number | string;
|
|
11
|
-
uuid: string;
|
|
12
12
|
};
|
|
13
13
|
export declare const useMessageGroup: (options: {
|
|
14
14
|
keyword?: ShallowRef<string>;
|
|
@@ -47,6 +47,7 @@ export declare const useMessageGroup: (options: {
|
|
|
47
47
|
name?: string | undefined;
|
|
48
48
|
role: MessageRole.Activity;
|
|
49
49
|
status: MessageStatus;
|
|
50
|
+
uid?: string | undefined;
|
|
50
51
|
property?: {
|
|
51
52
|
extra?: {
|
|
52
53
|
cite: string | {
|
|
@@ -593,6 +594,7 @@ export declare const useMessageGroup: (options: {
|
|
|
593
594
|
name?: string | undefined;
|
|
594
595
|
role?: MessageRole.Tool | undefined;
|
|
595
596
|
status?: MessageStatus | undefined;
|
|
597
|
+
uid?: string | undefined;
|
|
596
598
|
property?: {
|
|
597
599
|
extra?: {
|
|
598
600
|
cite: string | {
|
|
@@ -1129,6 +1131,7 @@ export declare const useMessageGroup: (options: {
|
|
|
1129
1131
|
name?: string | undefined;
|
|
1130
1132
|
role: MessageRole.Assistant;
|
|
1131
1133
|
status: MessageStatus;
|
|
1134
|
+
uid?: string | undefined;
|
|
1132
1135
|
property?: {
|
|
1133
1136
|
extra?: {
|
|
1134
1137
|
cite: string | {
|
|
@@ -1663,6 +1666,7 @@ export declare const useMessageGroup: (options: {
|
|
|
1663
1666
|
name?: string | undefined;
|
|
1664
1667
|
role: MessageRole.Developer;
|
|
1665
1668
|
status: MessageStatus;
|
|
1669
|
+
uid?: string | undefined;
|
|
1666
1670
|
property?: {
|
|
1667
1671
|
extra?: {
|
|
1668
1672
|
cite: string | {
|
|
@@ -2197,6 +2201,7 @@ export declare const useMessageGroup: (options: {
|
|
|
2197
2201
|
name?: string | undefined;
|
|
2198
2202
|
role: MessageRole.Guide;
|
|
2199
2203
|
status: MessageStatus;
|
|
2204
|
+
uid?: string | undefined;
|
|
2200
2205
|
property?: {
|
|
2201
2206
|
extra?: {
|
|
2202
2207
|
cite: string | {
|
|
@@ -2731,6 +2736,7 @@ export declare const useMessageGroup: (options: {
|
|
|
2731
2736
|
name?: string | undefined;
|
|
2732
2737
|
role: MessageRole.HiddenAssistant;
|
|
2733
2738
|
status: MessageStatus;
|
|
2739
|
+
uid?: string | undefined;
|
|
2734
2740
|
property?: {
|
|
2735
2741
|
extra?: {
|
|
2736
2742
|
cite: string | {
|
|
@@ -3265,6 +3271,7 @@ export declare const useMessageGroup: (options: {
|
|
|
3265
3271
|
name?: string | undefined;
|
|
3266
3272
|
role: MessageRole.HiddenGuide;
|
|
3267
3273
|
status: MessageStatus;
|
|
3274
|
+
uid?: string | undefined;
|
|
3268
3275
|
property?: {
|
|
3269
3276
|
extra?: {
|
|
3270
3277
|
cite: string | {
|
|
@@ -3799,6 +3806,7 @@ export declare const useMessageGroup: (options: {
|
|
|
3799
3806
|
name?: string | undefined;
|
|
3800
3807
|
role: MessageRole.Hidden;
|
|
3801
3808
|
status: MessageStatus;
|
|
3809
|
+
uid?: string | undefined;
|
|
3802
3810
|
property?: {
|
|
3803
3811
|
extra?: {
|
|
3804
3812
|
cite: string | {
|
|
@@ -4333,6 +4341,7 @@ export declare const useMessageGroup: (options: {
|
|
|
4333
4341
|
name?: string | undefined;
|
|
4334
4342
|
role: MessageRole.HiddenSystem;
|
|
4335
4343
|
status: MessageStatus;
|
|
4344
|
+
uid?: string | undefined;
|
|
4336
4345
|
property?: {
|
|
4337
4346
|
extra?: {
|
|
4338
4347
|
cite: string | {
|
|
@@ -4867,6 +4876,7 @@ export declare const useMessageGroup: (options: {
|
|
|
4867
4876
|
name?: string | undefined;
|
|
4868
4877
|
role: MessageRole.HiddenUser;
|
|
4869
4878
|
status: MessageStatus;
|
|
4879
|
+
uid?: string | undefined;
|
|
4870
4880
|
property?: {
|
|
4871
4881
|
extra?: {
|
|
4872
4882
|
cite: string | {
|
|
@@ -5401,6 +5411,7 @@ export declare const useMessageGroup: (options: {
|
|
|
5401
5411
|
name?: string | undefined;
|
|
5402
5412
|
role: MessageRole.Info;
|
|
5403
5413
|
status: MessageStatus;
|
|
5414
|
+
uid?: string | undefined;
|
|
5404
5415
|
property?: {
|
|
5405
5416
|
extra?: {
|
|
5406
5417
|
cite: string | {
|
|
@@ -5935,6 +5946,7 @@ export declare const useMessageGroup: (options: {
|
|
|
5935
5946
|
name?: string | undefined;
|
|
5936
5947
|
role: MessageRole.Loading;
|
|
5937
5948
|
status: MessageStatus;
|
|
5949
|
+
uid?: string | undefined;
|
|
5938
5950
|
property?: {
|
|
5939
5951
|
extra?: {
|
|
5940
5952
|
cite: string | {
|
|
@@ -6469,6 +6481,7 @@ export declare const useMessageGroup: (options: {
|
|
|
6469
6481
|
name?: string | undefined;
|
|
6470
6482
|
role: MessageRole.Pause;
|
|
6471
6483
|
status: MessageStatus;
|
|
6484
|
+
uid?: string | undefined;
|
|
6472
6485
|
property?: {
|
|
6473
6486
|
extra?: {
|
|
6474
6487
|
cite: string | {
|
|
@@ -7003,6 +7016,7 @@ export declare const useMessageGroup: (options: {
|
|
|
7003
7016
|
name?: string | undefined;
|
|
7004
7017
|
role: MessageRole.Placeholder;
|
|
7005
7018
|
status: MessageStatus;
|
|
7019
|
+
uid?: string | undefined;
|
|
7006
7020
|
property?: {
|
|
7007
7021
|
extra?: {
|
|
7008
7022
|
cite: string | {
|
|
@@ -7538,6 +7552,7 @@ export declare const useMessageGroup: (options: {
|
|
|
7538
7552
|
name?: string | undefined;
|
|
7539
7553
|
role: MessageRole.Reasoning;
|
|
7540
7554
|
status: MessageStatus;
|
|
7555
|
+
uid?: string | undefined;
|
|
7541
7556
|
property?: {
|
|
7542
7557
|
extra?: {
|
|
7543
7558
|
cite: string | {
|
|
@@ -8072,6 +8087,7 @@ export declare const useMessageGroup: (options: {
|
|
|
8072
8087
|
name?: string | undefined;
|
|
8073
8088
|
role: MessageRole.System;
|
|
8074
8089
|
status: MessageStatus;
|
|
8090
|
+
uid?: string | undefined;
|
|
8075
8091
|
property?: {
|
|
8076
8092
|
extra?: {
|
|
8077
8093
|
cite: string | {
|
|
@@ -8606,6 +8622,7 @@ export declare const useMessageGroup: (options: {
|
|
|
8606
8622
|
name?: string | undefined;
|
|
8607
8623
|
role: MessageRole.TemplateAssistant;
|
|
8608
8624
|
status: MessageStatus;
|
|
8625
|
+
uid?: string | undefined;
|
|
8609
8626
|
property?: {
|
|
8610
8627
|
extra?: {
|
|
8611
8628
|
cite: string | {
|
|
@@ -9140,6 +9157,7 @@ export declare const useMessageGroup: (options: {
|
|
|
9140
9157
|
name?: string | undefined;
|
|
9141
9158
|
role: MessageRole.TemplateGuide;
|
|
9142
9159
|
status: MessageStatus;
|
|
9160
|
+
uid?: string | undefined;
|
|
9143
9161
|
property?: {
|
|
9144
9162
|
extra?: {
|
|
9145
9163
|
cite: string | {
|
|
@@ -9674,6 +9692,7 @@ export declare const useMessageGroup: (options: {
|
|
|
9674
9692
|
name?: string | undefined;
|
|
9675
9693
|
role: MessageRole.TemplateHidden;
|
|
9676
9694
|
status: MessageStatus;
|
|
9695
|
+
uid?: string | undefined;
|
|
9677
9696
|
property?: {
|
|
9678
9697
|
extra?: {
|
|
9679
9698
|
cite: string | {
|
|
@@ -10208,6 +10227,7 @@ export declare const useMessageGroup: (options: {
|
|
|
10208
10227
|
name?: string | undefined;
|
|
10209
10228
|
role: MessageRole.TemplateSystem;
|
|
10210
10229
|
status: MessageStatus;
|
|
10230
|
+
uid?: string | undefined;
|
|
10211
10231
|
property?: {
|
|
10212
10232
|
extra?: {
|
|
10213
10233
|
cite: string | {
|
|
@@ -10742,6 +10762,7 @@ export declare const useMessageGroup: (options: {
|
|
|
10742
10762
|
name?: string | undefined;
|
|
10743
10763
|
role: MessageRole.TemplateUser;
|
|
10744
10764
|
status: MessageStatus;
|
|
10765
|
+
uid?: string | undefined;
|
|
10745
10766
|
property?: {
|
|
10746
10767
|
extra?: {
|
|
10747
10768
|
cite: string | {
|
|
@@ -11279,6 +11300,7 @@ export declare const useMessageGroup: (options: {
|
|
|
11279
11300
|
name?: string | undefined;
|
|
11280
11301
|
role: MessageRole.Tool;
|
|
11281
11302
|
status: MessageStatus;
|
|
11303
|
+
uid?: string | undefined;
|
|
11282
11304
|
property?: {
|
|
11283
11305
|
extra?: {
|
|
11284
11306
|
cite: string | {
|
|
@@ -11823,6 +11845,7 @@ export declare const useMessageGroup: (options: {
|
|
|
11823
11845
|
name?: string | undefined;
|
|
11824
11846
|
role: MessageRole.User;
|
|
11825
11847
|
status: MessageStatus;
|
|
11848
|
+
uid?: string | undefined;
|
|
11826
11849
|
property?: {
|
|
11827
11850
|
extra?: {
|
|
11828
11851
|
cite: string | {
|
|
@@ -12354,8 +12377,8 @@ export declare const useMessageGroup: (options: {
|
|
|
12354
12377
|
pause?: boolean | undefined;
|
|
12355
12378
|
startTime?: number | undefined;
|
|
12356
12379
|
type: MessageRole;
|
|
12380
|
+
uid: string;
|
|
12357
12381
|
userMessageTitle?: number | string | undefined;
|
|
12358
|
-
uuid: string;
|
|
12359
12382
|
}[], MessageGroup[] | {
|
|
12360
12383
|
checked: boolean;
|
|
12361
12384
|
isHover: boolean;
|
|
@@ -12388,6 +12411,7 @@ export declare const useMessageGroup: (options: {
|
|
|
12388
12411
|
name?: string | undefined;
|
|
12389
12412
|
role: MessageRole.Activity;
|
|
12390
12413
|
status: MessageStatus;
|
|
12414
|
+
uid?: string | undefined;
|
|
12391
12415
|
property?: {
|
|
12392
12416
|
extra?: {
|
|
12393
12417
|
cite: string | {
|
|
@@ -12934,6 +12958,7 @@ export declare const useMessageGroup: (options: {
|
|
|
12934
12958
|
name?: string | undefined;
|
|
12935
12959
|
role?: MessageRole.Tool | undefined;
|
|
12936
12960
|
status?: MessageStatus | undefined;
|
|
12961
|
+
uid?: string | undefined;
|
|
12937
12962
|
property?: {
|
|
12938
12963
|
extra?: {
|
|
12939
12964
|
cite: string | {
|
|
@@ -13470,6 +13495,7 @@ export declare const useMessageGroup: (options: {
|
|
|
13470
13495
|
name?: string | undefined;
|
|
13471
13496
|
role: MessageRole.Assistant;
|
|
13472
13497
|
status: MessageStatus;
|
|
13498
|
+
uid?: string | undefined;
|
|
13473
13499
|
property?: {
|
|
13474
13500
|
extra?: {
|
|
13475
13501
|
cite: string | {
|
|
@@ -14004,6 +14030,7 @@ export declare const useMessageGroup: (options: {
|
|
|
14004
14030
|
name?: string | undefined;
|
|
14005
14031
|
role: MessageRole.Developer;
|
|
14006
14032
|
status: MessageStatus;
|
|
14033
|
+
uid?: string | undefined;
|
|
14007
14034
|
property?: {
|
|
14008
14035
|
extra?: {
|
|
14009
14036
|
cite: string | {
|
|
@@ -14538,6 +14565,7 @@ export declare const useMessageGroup: (options: {
|
|
|
14538
14565
|
name?: string | undefined;
|
|
14539
14566
|
role: MessageRole.Guide;
|
|
14540
14567
|
status: MessageStatus;
|
|
14568
|
+
uid?: string | undefined;
|
|
14541
14569
|
property?: {
|
|
14542
14570
|
extra?: {
|
|
14543
14571
|
cite: string | {
|
|
@@ -15072,6 +15100,7 @@ export declare const useMessageGroup: (options: {
|
|
|
15072
15100
|
name?: string | undefined;
|
|
15073
15101
|
role: MessageRole.HiddenAssistant;
|
|
15074
15102
|
status: MessageStatus;
|
|
15103
|
+
uid?: string | undefined;
|
|
15075
15104
|
property?: {
|
|
15076
15105
|
extra?: {
|
|
15077
15106
|
cite: string | {
|
|
@@ -15606,6 +15635,7 @@ export declare const useMessageGroup: (options: {
|
|
|
15606
15635
|
name?: string | undefined;
|
|
15607
15636
|
role: MessageRole.HiddenGuide;
|
|
15608
15637
|
status: MessageStatus;
|
|
15638
|
+
uid?: string | undefined;
|
|
15609
15639
|
property?: {
|
|
15610
15640
|
extra?: {
|
|
15611
15641
|
cite: string | {
|
|
@@ -16140,6 +16170,7 @@ export declare const useMessageGroup: (options: {
|
|
|
16140
16170
|
name?: string | undefined;
|
|
16141
16171
|
role: MessageRole.Hidden;
|
|
16142
16172
|
status: MessageStatus;
|
|
16173
|
+
uid?: string | undefined;
|
|
16143
16174
|
property?: {
|
|
16144
16175
|
extra?: {
|
|
16145
16176
|
cite: string | {
|
|
@@ -16674,6 +16705,7 @@ export declare const useMessageGroup: (options: {
|
|
|
16674
16705
|
name?: string | undefined;
|
|
16675
16706
|
role: MessageRole.HiddenSystem;
|
|
16676
16707
|
status: MessageStatus;
|
|
16708
|
+
uid?: string | undefined;
|
|
16677
16709
|
property?: {
|
|
16678
16710
|
extra?: {
|
|
16679
16711
|
cite: string | {
|
|
@@ -17208,6 +17240,7 @@ export declare const useMessageGroup: (options: {
|
|
|
17208
17240
|
name?: string | undefined;
|
|
17209
17241
|
role: MessageRole.HiddenUser;
|
|
17210
17242
|
status: MessageStatus;
|
|
17243
|
+
uid?: string | undefined;
|
|
17211
17244
|
property?: {
|
|
17212
17245
|
extra?: {
|
|
17213
17246
|
cite: string | {
|
|
@@ -17742,6 +17775,7 @@ export declare const useMessageGroup: (options: {
|
|
|
17742
17775
|
name?: string | undefined;
|
|
17743
17776
|
role: MessageRole.Info;
|
|
17744
17777
|
status: MessageStatus;
|
|
17778
|
+
uid?: string | undefined;
|
|
17745
17779
|
property?: {
|
|
17746
17780
|
extra?: {
|
|
17747
17781
|
cite: string | {
|
|
@@ -18276,6 +18310,7 @@ export declare const useMessageGroup: (options: {
|
|
|
18276
18310
|
name?: string | undefined;
|
|
18277
18311
|
role: MessageRole.Loading;
|
|
18278
18312
|
status: MessageStatus;
|
|
18313
|
+
uid?: string | undefined;
|
|
18279
18314
|
property?: {
|
|
18280
18315
|
extra?: {
|
|
18281
18316
|
cite: string | {
|
|
@@ -18810,6 +18845,7 @@ export declare const useMessageGroup: (options: {
|
|
|
18810
18845
|
name?: string | undefined;
|
|
18811
18846
|
role: MessageRole.Pause;
|
|
18812
18847
|
status: MessageStatus;
|
|
18848
|
+
uid?: string | undefined;
|
|
18813
18849
|
property?: {
|
|
18814
18850
|
extra?: {
|
|
18815
18851
|
cite: string | {
|
|
@@ -19344,6 +19380,7 @@ export declare const useMessageGroup: (options: {
|
|
|
19344
19380
|
name?: string | undefined;
|
|
19345
19381
|
role: MessageRole.Placeholder;
|
|
19346
19382
|
status: MessageStatus;
|
|
19383
|
+
uid?: string | undefined;
|
|
19347
19384
|
property?: {
|
|
19348
19385
|
extra?: {
|
|
19349
19386
|
cite: string | {
|
|
@@ -19879,6 +19916,7 @@ export declare const useMessageGroup: (options: {
|
|
|
19879
19916
|
name?: string | undefined;
|
|
19880
19917
|
role: MessageRole.Reasoning;
|
|
19881
19918
|
status: MessageStatus;
|
|
19919
|
+
uid?: string | undefined;
|
|
19882
19920
|
property?: {
|
|
19883
19921
|
extra?: {
|
|
19884
19922
|
cite: string | {
|
|
@@ -20413,6 +20451,7 @@ export declare const useMessageGroup: (options: {
|
|
|
20413
20451
|
name?: string | undefined;
|
|
20414
20452
|
role: MessageRole.System;
|
|
20415
20453
|
status: MessageStatus;
|
|
20454
|
+
uid?: string | undefined;
|
|
20416
20455
|
property?: {
|
|
20417
20456
|
extra?: {
|
|
20418
20457
|
cite: string | {
|
|
@@ -20947,6 +20986,7 @@ export declare const useMessageGroup: (options: {
|
|
|
20947
20986
|
name?: string | undefined;
|
|
20948
20987
|
role: MessageRole.TemplateAssistant;
|
|
20949
20988
|
status: MessageStatus;
|
|
20989
|
+
uid?: string | undefined;
|
|
20950
20990
|
property?: {
|
|
20951
20991
|
extra?: {
|
|
20952
20992
|
cite: string | {
|
|
@@ -21481,6 +21521,7 @@ export declare const useMessageGroup: (options: {
|
|
|
21481
21521
|
name?: string | undefined;
|
|
21482
21522
|
role: MessageRole.TemplateGuide;
|
|
21483
21523
|
status: MessageStatus;
|
|
21524
|
+
uid?: string | undefined;
|
|
21484
21525
|
property?: {
|
|
21485
21526
|
extra?: {
|
|
21486
21527
|
cite: string | {
|
|
@@ -22015,6 +22056,7 @@ export declare const useMessageGroup: (options: {
|
|
|
22015
22056
|
name?: string | undefined;
|
|
22016
22057
|
role: MessageRole.TemplateHidden;
|
|
22017
22058
|
status: MessageStatus;
|
|
22059
|
+
uid?: string | undefined;
|
|
22018
22060
|
property?: {
|
|
22019
22061
|
extra?: {
|
|
22020
22062
|
cite: string | {
|
|
@@ -22549,6 +22591,7 @@ export declare const useMessageGroup: (options: {
|
|
|
22549
22591
|
name?: string | undefined;
|
|
22550
22592
|
role: MessageRole.TemplateSystem;
|
|
22551
22593
|
status: MessageStatus;
|
|
22594
|
+
uid?: string | undefined;
|
|
22552
22595
|
property?: {
|
|
22553
22596
|
extra?: {
|
|
22554
22597
|
cite: string | {
|
|
@@ -23083,6 +23126,7 @@ export declare const useMessageGroup: (options: {
|
|
|
23083
23126
|
name?: string | undefined;
|
|
23084
23127
|
role: MessageRole.TemplateUser;
|
|
23085
23128
|
status: MessageStatus;
|
|
23129
|
+
uid?: string | undefined;
|
|
23086
23130
|
property?: {
|
|
23087
23131
|
extra?: {
|
|
23088
23132
|
cite: string | {
|
|
@@ -23620,6 +23664,7 @@ export declare const useMessageGroup: (options: {
|
|
|
23620
23664
|
name?: string | undefined;
|
|
23621
23665
|
role: MessageRole.Tool;
|
|
23622
23666
|
status: MessageStatus;
|
|
23667
|
+
uid?: string | undefined;
|
|
23623
23668
|
property?: {
|
|
23624
23669
|
extra?: {
|
|
23625
23670
|
cite: string | {
|
|
@@ -24164,6 +24209,7 @@ export declare const useMessageGroup: (options: {
|
|
|
24164
24209
|
name?: string | undefined;
|
|
24165
24210
|
role: MessageRole.User;
|
|
24166
24211
|
status: MessageStatus;
|
|
24212
|
+
uid?: string | undefined;
|
|
24167
24213
|
property?: {
|
|
24168
24214
|
extra?: {
|
|
24169
24215
|
cite: string | {
|
|
@@ -24695,8 +24741,8 @@ export declare const useMessageGroup: (options: {
|
|
|
24695
24741
|
pause?: boolean | undefined;
|
|
24696
24742
|
startTime?: number | undefined;
|
|
24697
24743
|
type: MessageRole;
|
|
24744
|
+
uid: string;
|
|
24698
24745
|
userMessageTitle?: number | string | undefined;
|
|
24699
|
-
uuid: string;
|
|
24700
24746
|
}[]>;
|
|
24701
24747
|
executionGroups: ComputedRef<MessageGroup[]>;
|
|
24702
24748
|
isShareMode: ShallowRef<boolean, boolean>;
|
|
@@ -24732,6 +24778,7 @@ export declare const useMessageGroup: (options: {
|
|
|
24732
24778
|
name?: string | undefined;
|
|
24733
24779
|
role: MessageRole.Activity;
|
|
24734
24780
|
status: MessageStatus;
|
|
24781
|
+
uid?: string | undefined;
|
|
24735
24782
|
property?: {
|
|
24736
24783
|
extra?: {
|
|
24737
24784
|
cite: string | {
|
|
@@ -25278,6 +25325,7 @@ export declare const useMessageGroup: (options: {
|
|
|
25278
25325
|
name?: string | undefined;
|
|
25279
25326
|
role?: MessageRole.Tool | undefined;
|
|
25280
25327
|
status?: MessageStatus | undefined;
|
|
25328
|
+
uid?: string | undefined;
|
|
25281
25329
|
property?: {
|
|
25282
25330
|
extra?: {
|
|
25283
25331
|
cite: string | {
|
|
@@ -25814,6 +25862,7 @@ export declare const useMessageGroup: (options: {
|
|
|
25814
25862
|
name?: string | undefined;
|
|
25815
25863
|
role: MessageRole.Assistant;
|
|
25816
25864
|
status: MessageStatus;
|
|
25865
|
+
uid?: string | undefined;
|
|
25817
25866
|
property?: {
|
|
25818
25867
|
extra?: {
|
|
25819
25868
|
cite: string | {
|
|
@@ -26348,6 +26397,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26348
26397
|
name?: string | undefined;
|
|
26349
26398
|
role: MessageRole.Developer;
|
|
26350
26399
|
status: MessageStatus;
|
|
26400
|
+
uid?: string | undefined;
|
|
26351
26401
|
property?: {
|
|
26352
26402
|
extra?: {
|
|
26353
26403
|
cite: string | {
|
|
@@ -26882,6 +26932,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26882
26932
|
name?: string | undefined;
|
|
26883
26933
|
role: MessageRole.Guide;
|
|
26884
26934
|
status: MessageStatus;
|
|
26935
|
+
uid?: string | undefined;
|
|
26885
26936
|
property?: {
|
|
26886
26937
|
extra?: {
|
|
26887
26938
|
cite: string | {
|
|
@@ -27416,6 +27467,7 @@ export declare const useMessageGroup: (options: {
|
|
|
27416
27467
|
name?: string | undefined;
|
|
27417
27468
|
role: MessageRole.HiddenAssistant;
|
|
27418
27469
|
status: MessageStatus;
|
|
27470
|
+
uid?: string | undefined;
|
|
27419
27471
|
property?: {
|
|
27420
27472
|
extra?: {
|
|
27421
27473
|
cite: string | {
|
|
@@ -27950,6 +28002,7 @@ export declare const useMessageGroup: (options: {
|
|
|
27950
28002
|
name?: string | undefined;
|
|
27951
28003
|
role: MessageRole.HiddenGuide;
|
|
27952
28004
|
status: MessageStatus;
|
|
28005
|
+
uid?: string | undefined;
|
|
27953
28006
|
property?: {
|
|
27954
28007
|
extra?: {
|
|
27955
28008
|
cite: string | {
|
|
@@ -28484,6 +28537,7 @@ export declare const useMessageGroup: (options: {
|
|
|
28484
28537
|
name?: string | undefined;
|
|
28485
28538
|
role: MessageRole.Hidden;
|
|
28486
28539
|
status: MessageStatus;
|
|
28540
|
+
uid?: string | undefined;
|
|
28487
28541
|
property?: {
|
|
28488
28542
|
extra?: {
|
|
28489
28543
|
cite: string | {
|
|
@@ -29018,6 +29072,7 @@ export declare const useMessageGroup: (options: {
|
|
|
29018
29072
|
name?: string | undefined;
|
|
29019
29073
|
role: MessageRole.HiddenSystem;
|
|
29020
29074
|
status: MessageStatus;
|
|
29075
|
+
uid?: string | undefined;
|
|
29021
29076
|
property?: {
|
|
29022
29077
|
extra?: {
|
|
29023
29078
|
cite: string | {
|
|
@@ -29552,6 +29607,7 @@ export declare const useMessageGroup: (options: {
|
|
|
29552
29607
|
name?: string | undefined;
|
|
29553
29608
|
role: MessageRole.HiddenUser;
|
|
29554
29609
|
status: MessageStatus;
|
|
29610
|
+
uid?: string | undefined;
|
|
29555
29611
|
property?: {
|
|
29556
29612
|
extra?: {
|
|
29557
29613
|
cite: string | {
|
|
@@ -30086,6 +30142,7 @@ export declare const useMessageGroup: (options: {
|
|
|
30086
30142
|
name?: string | undefined;
|
|
30087
30143
|
role: MessageRole.Info;
|
|
30088
30144
|
status: MessageStatus;
|
|
30145
|
+
uid?: string | undefined;
|
|
30089
30146
|
property?: {
|
|
30090
30147
|
extra?: {
|
|
30091
30148
|
cite: string | {
|
|
@@ -30620,6 +30677,7 @@ export declare const useMessageGroup: (options: {
|
|
|
30620
30677
|
name?: string | undefined;
|
|
30621
30678
|
role: MessageRole.Loading;
|
|
30622
30679
|
status: MessageStatus;
|
|
30680
|
+
uid?: string | undefined;
|
|
30623
30681
|
property?: {
|
|
30624
30682
|
extra?: {
|
|
30625
30683
|
cite: string | {
|
|
@@ -31154,6 +31212,7 @@ export declare const useMessageGroup: (options: {
|
|
|
31154
31212
|
name?: string | undefined;
|
|
31155
31213
|
role: MessageRole.Pause;
|
|
31156
31214
|
status: MessageStatus;
|
|
31215
|
+
uid?: string | undefined;
|
|
31157
31216
|
property?: {
|
|
31158
31217
|
extra?: {
|
|
31159
31218
|
cite: string | {
|
|
@@ -31688,6 +31747,7 @@ export declare const useMessageGroup: (options: {
|
|
|
31688
31747
|
name?: string | undefined;
|
|
31689
31748
|
role: MessageRole.Placeholder;
|
|
31690
31749
|
status: MessageStatus;
|
|
31750
|
+
uid?: string | undefined;
|
|
31691
31751
|
property?: {
|
|
31692
31752
|
extra?: {
|
|
31693
31753
|
cite: string | {
|
|
@@ -32223,6 +32283,7 @@ export declare const useMessageGroup: (options: {
|
|
|
32223
32283
|
name?: string | undefined;
|
|
32224
32284
|
role: MessageRole.Reasoning;
|
|
32225
32285
|
status: MessageStatus;
|
|
32286
|
+
uid?: string | undefined;
|
|
32226
32287
|
property?: {
|
|
32227
32288
|
extra?: {
|
|
32228
32289
|
cite: string | {
|
|
@@ -32757,6 +32818,7 @@ export declare const useMessageGroup: (options: {
|
|
|
32757
32818
|
name?: string | undefined;
|
|
32758
32819
|
role: MessageRole.System;
|
|
32759
32820
|
status: MessageStatus;
|
|
32821
|
+
uid?: string | undefined;
|
|
32760
32822
|
property?: {
|
|
32761
32823
|
extra?: {
|
|
32762
32824
|
cite: string | {
|
|
@@ -33291,6 +33353,7 @@ export declare const useMessageGroup: (options: {
|
|
|
33291
33353
|
name?: string | undefined;
|
|
33292
33354
|
role: MessageRole.TemplateAssistant;
|
|
33293
33355
|
status: MessageStatus;
|
|
33356
|
+
uid?: string | undefined;
|
|
33294
33357
|
property?: {
|
|
33295
33358
|
extra?: {
|
|
33296
33359
|
cite: string | {
|
|
@@ -33825,6 +33888,7 @@ export declare const useMessageGroup: (options: {
|
|
|
33825
33888
|
name?: string | undefined;
|
|
33826
33889
|
role: MessageRole.TemplateGuide;
|
|
33827
33890
|
status: MessageStatus;
|
|
33891
|
+
uid?: string | undefined;
|
|
33828
33892
|
property?: {
|
|
33829
33893
|
extra?: {
|
|
33830
33894
|
cite: string | {
|
|
@@ -34359,6 +34423,7 @@ export declare const useMessageGroup: (options: {
|
|
|
34359
34423
|
name?: string | undefined;
|
|
34360
34424
|
role: MessageRole.TemplateHidden;
|
|
34361
34425
|
status: MessageStatus;
|
|
34426
|
+
uid?: string | undefined;
|
|
34362
34427
|
property?: {
|
|
34363
34428
|
extra?: {
|
|
34364
34429
|
cite: string | {
|
|
@@ -34893,6 +34958,7 @@ export declare const useMessageGroup: (options: {
|
|
|
34893
34958
|
name?: string | undefined;
|
|
34894
34959
|
role: MessageRole.TemplateSystem;
|
|
34895
34960
|
status: MessageStatus;
|
|
34961
|
+
uid?: string | undefined;
|
|
34896
34962
|
property?: {
|
|
34897
34963
|
extra?: {
|
|
34898
34964
|
cite: string | {
|
|
@@ -35427,6 +35493,7 @@ export declare const useMessageGroup: (options: {
|
|
|
35427
35493
|
name?: string | undefined;
|
|
35428
35494
|
role: MessageRole.TemplateUser;
|
|
35429
35495
|
status: MessageStatus;
|
|
35496
|
+
uid?: string | undefined;
|
|
35430
35497
|
property?: {
|
|
35431
35498
|
extra?: {
|
|
35432
35499
|
cite: string | {
|
|
@@ -35964,6 +36031,7 @@ export declare const useMessageGroup: (options: {
|
|
|
35964
36031
|
name?: string | undefined;
|
|
35965
36032
|
role: MessageRole.Tool;
|
|
35966
36033
|
status: MessageStatus;
|
|
36034
|
+
uid?: string | undefined;
|
|
35967
36035
|
property?: {
|
|
35968
36036
|
extra?: {
|
|
35969
36037
|
cite: string | {
|
|
@@ -36508,6 +36576,7 @@ export declare const useMessageGroup: (options: {
|
|
|
36508
36576
|
name?: string | undefined;
|
|
36509
36577
|
role: MessageRole.User;
|
|
36510
36578
|
status: MessageStatus;
|
|
36579
|
+
uid?: string | undefined;
|
|
36511
36580
|
property?: {
|
|
36512
36581
|
extra?: {
|
|
36513
36582
|
cite: string | {
|