@blueking/chat-x 0.0.48-beta.1 → 0.0.49-beta.2
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/file.d.ts +23 -0
- package/dist/ag-ui/types/index.d.ts +1 -0
- package/dist/ag-ui/types/messages.d.ts +2 -0
- package/dist/components/chat-message/assistant-message/assistant-message.vue.d.ts +12 -1
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-file-card.vue.d.ts +12 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/artifact-preview-host.vue.d.ts +7 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/preview-strategy.d.ts +9 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/html-preview.vue.d.ts +6 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/markdown-preview.vue.d.ts +6 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/txt-preview.vue.d.ts +6 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/url-iframe-preview.vue.d.ts +6 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/use-artifact-preview-loader.d.ts +23 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/file-artifact-panel.vue.d.ts +12 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/file-icon.d.ts +29 -0
- package/dist/components/chat-message/assistant-message/message-artifacts/message-artifacts.vue.d.ts +9 -0
- package/dist/components/chat-message/interrupt-message/user-question/use-user-question.d.ts +7 -2
- package/dist/components/chat-message/user-message/user-message.vue.d.ts +14 -2
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/use-artifact-preview.d.ts +56 -0
- package/dist/composables/use-custom-tab.d.ts +2 -0
- package/dist/composables/use-message-group.d.ts +433 -0
- package/dist/icons/file.d.ts +24 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.js +2217 -1689
- package/dist/index.js.map +1 -1
- package/dist/lang/lang.d.ts +8 -1
- package/dist/mcp/generated/docs/activity-message.md +122 -97
- package/dist/mcp/generated/docs/assistant-message.md +125 -62
- package/dist/mcp/generated/docs/chat-container.md +97 -18
- package/dist/mcp/generated/docs/chat-input.md +2 -10
- package/dist/mcp/generated/docs/constants.md +3 -1
- package/dist/mcp/generated/docs/content-render.md +2 -10
- package/dist/mcp/generated/docs/file-artifact-panel.md +275 -0
- package/dist/mcp/generated/docs/info-message.md +29 -12
- package/dist/mcp/generated/docs/interrupt.md +1 -0
- package/dist/mcp/generated/docs/loading-message.md +36 -17
- package/dist/mcp/generated/docs/message-container.md +4 -21
- package/dist/mcp/generated/docs/message-render.md +47 -59
- package/dist/mcp/generated/docs/messages.md +5 -0
- package/dist/mcp/generated/docs/reasoning-message.md +17 -20
- package/dist/mcp/generated/docs/tool-message.md +61 -45
- package/dist/mcp/generated/docs/toolcall-render.md +8 -8
- package/dist/mcp/generated/docs/use-artifact-preview.md +232 -0
- package/dist/mcp/generated/docs/use-custom-tab.md +18 -5
- package/dist/mcp/generated/docs/use-message-group.md +29 -0
- package/dist/mcp/generated/docs/user-message.md +185 -121
- package/dist/mcp/generated/docs/user-question-card.md +6 -3
- package/dist/mcp/generated/index.json +83 -13
- package/dist/mcp/index.js +0 -0
- package/package.json +20 -21
|
@@ -57,6 +57,12 @@ export declare const useMessageGroup: (options: {
|
|
|
57
57
|
status: MessageStatus;
|
|
58
58
|
uid?: string | undefined;
|
|
59
59
|
property?: {
|
|
60
|
+
artifacts?: {
|
|
61
|
+
name: string;
|
|
62
|
+
outputId: string;
|
|
63
|
+
size: number;
|
|
64
|
+
type: import("..").AIFileType;
|
|
65
|
+
}[] | undefined;
|
|
60
66
|
extra?: {
|
|
61
67
|
cite: string | {
|
|
62
68
|
data: {
|
|
@@ -604,6 +610,12 @@ export declare const useMessageGroup: (options: {
|
|
|
604
610
|
status?: MessageStatus | undefined;
|
|
605
611
|
uid?: string | undefined;
|
|
606
612
|
property?: {
|
|
613
|
+
artifacts?: {
|
|
614
|
+
name: string;
|
|
615
|
+
outputId: string;
|
|
616
|
+
size: number;
|
|
617
|
+
type: import("..").AIFileType;
|
|
618
|
+
}[] | undefined;
|
|
607
619
|
extra?: {
|
|
608
620
|
cite: string | {
|
|
609
621
|
data: {
|
|
@@ -1141,6 +1153,12 @@ export declare const useMessageGroup: (options: {
|
|
|
1141
1153
|
status: MessageStatus;
|
|
1142
1154
|
uid?: string | undefined;
|
|
1143
1155
|
property?: {
|
|
1156
|
+
artifacts?: {
|
|
1157
|
+
name: string;
|
|
1158
|
+
outputId: string;
|
|
1159
|
+
size: number;
|
|
1160
|
+
type: import("..").AIFileType;
|
|
1161
|
+
}[] | undefined;
|
|
1144
1162
|
extra?: {
|
|
1145
1163
|
cite: string | {
|
|
1146
1164
|
data: {
|
|
@@ -1676,6 +1694,12 @@ export declare const useMessageGroup: (options: {
|
|
|
1676
1694
|
status: MessageStatus;
|
|
1677
1695
|
uid?: string | undefined;
|
|
1678
1696
|
property?: {
|
|
1697
|
+
artifacts?: {
|
|
1698
|
+
name: string;
|
|
1699
|
+
outputId: string;
|
|
1700
|
+
size: number;
|
|
1701
|
+
type: import("..").AIFileType;
|
|
1702
|
+
}[] | undefined;
|
|
1679
1703
|
extra?: {
|
|
1680
1704
|
cite: string | {
|
|
1681
1705
|
data: {
|
|
@@ -2211,6 +2235,12 @@ export declare const useMessageGroup: (options: {
|
|
|
2211
2235
|
status: MessageStatus;
|
|
2212
2236
|
uid?: string | undefined;
|
|
2213
2237
|
property?: {
|
|
2238
|
+
artifacts?: {
|
|
2239
|
+
name: string;
|
|
2240
|
+
outputId: string;
|
|
2241
|
+
size: number;
|
|
2242
|
+
type: import("..").AIFileType;
|
|
2243
|
+
}[] | undefined;
|
|
2214
2244
|
extra?: {
|
|
2215
2245
|
cite: string | {
|
|
2216
2246
|
data: {
|
|
@@ -2746,6 +2776,12 @@ export declare const useMessageGroup: (options: {
|
|
|
2746
2776
|
status: MessageStatus;
|
|
2747
2777
|
uid?: string | undefined;
|
|
2748
2778
|
property?: {
|
|
2779
|
+
artifacts?: {
|
|
2780
|
+
name: string;
|
|
2781
|
+
outputId: string;
|
|
2782
|
+
size: number;
|
|
2783
|
+
type: import("..").AIFileType;
|
|
2784
|
+
}[] | undefined;
|
|
2749
2785
|
extra?: {
|
|
2750
2786
|
cite: string | {
|
|
2751
2787
|
data: {
|
|
@@ -3281,6 +3317,12 @@ export declare const useMessageGroup: (options: {
|
|
|
3281
3317
|
status: MessageStatus;
|
|
3282
3318
|
uid?: string | undefined;
|
|
3283
3319
|
property?: {
|
|
3320
|
+
artifacts?: {
|
|
3321
|
+
name: string;
|
|
3322
|
+
outputId: string;
|
|
3323
|
+
size: number;
|
|
3324
|
+
type: import("..").AIFileType;
|
|
3325
|
+
}[] | undefined;
|
|
3284
3326
|
extra?: {
|
|
3285
3327
|
cite: string | {
|
|
3286
3328
|
data: {
|
|
@@ -3816,6 +3858,12 @@ export declare const useMessageGroup: (options: {
|
|
|
3816
3858
|
status: MessageStatus;
|
|
3817
3859
|
uid?: string | undefined;
|
|
3818
3860
|
property?: {
|
|
3861
|
+
artifacts?: {
|
|
3862
|
+
name: string;
|
|
3863
|
+
outputId: string;
|
|
3864
|
+
size: number;
|
|
3865
|
+
type: import("..").AIFileType;
|
|
3866
|
+
}[] | undefined;
|
|
3819
3867
|
extra?: {
|
|
3820
3868
|
cite: string | {
|
|
3821
3869
|
data: {
|
|
@@ -4351,6 +4399,12 @@ export declare const useMessageGroup: (options: {
|
|
|
4351
4399
|
status: MessageStatus;
|
|
4352
4400
|
uid?: string | undefined;
|
|
4353
4401
|
property?: {
|
|
4402
|
+
artifacts?: {
|
|
4403
|
+
name: string;
|
|
4404
|
+
outputId: string;
|
|
4405
|
+
size: number;
|
|
4406
|
+
type: import("..").AIFileType;
|
|
4407
|
+
}[] | undefined;
|
|
4354
4408
|
extra?: {
|
|
4355
4409
|
cite: string | {
|
|
4356
4410
|
data: {
|
|
@@ -4886,6 +4940,12 @@ export declare const useMessageGroup: (options: {
|
|
|
4886
4940
|
status: MessageStatus;
|
|
4887
4941
|
uid?: string | undefined;
|
|
4888
4942
|
property?: {
|
|
4943
|
+
artifacts?: {
|
|
4944
|
+
name: string;
|
|
4945
|
+
outputId: string;
|
|
4946
|
+
size: number;
|
|
4947
|
+
type: import("..").AIFileType;
|
|
4948
|
+
}[] | undefined;
|
|
4889
4949
|
extra?: {
|
|
4890
4950
|
cite: string | {
|
|
4891
4951
|
data: {
|
|
@@ -5421,6 +5481,12 @@ export declare const useMessageGroup: (options: {
|
|
|
5421
5481
|
status: MessageStatus;
|
|
5422
5482
|
uid?: string | undefined;
|
|
5423
5483
|
property?: {
|
|
5484
|
+
artifacts?: {
|
|
5485
|
+
name: string;
|
|
5486
|
+
outputId: string;
|
|
5487
|
+
size: number;
|
|
5488
|
+
type: import("..").AIFileType;
|
|
5489
|
+
}[] | undefined;
|
|
5424
5490
|
extra?: {
|
|
5425
5491
|
cite: string | {
|
|
5426
5492
|
data: {
|
|
@@ -5956,6 +6022,12 @@ export declare const useMessageGroup: (options: {
|
|
|
5956
6022
|
status: MessageStatus;
|
|
5957
6023
|
uid?: string | undefined;
|
|
5958
6024
|
property?: {
|
|
6025
|
+
artifacts?: {
|
|
6026
|
+
name: string;
|
|
6027
|
+
outputId: string;
|
|
6028
|
+
size: number;
|
|
6029
|
+
type: import("..").AIFileType;
|
|
6030
|
+
}[] | undefined;
|
|
5959
6031
|
extra?: {
|
|
5960
6032
|
cite: string | {
|
|
5961
6033
|
data: {
|
|
@@ -6577,6 +6649,12 @@ export declare const useMessageGroup: (options: {
|
|
|
6577
6649
|
status: MessageStatus;
|
|
6578
6650
|
uid?: string | undefined;
|
|
6579
6651
|
property?: {
|
|
6652
|
+
artifacts?: {
|
|
6653
|
+
name: string;
|
|
6654
|
+
outputId: string;
|
|
6655
|
+
size: number;
|
|
6656
|
+
type: import("..").AIFileType;
|
|
6657
|
+
}[] | undefined;
|
|
6580
6658
|
extra?: {
|
|
6581
6659
|
cite: string | {
|
|
6582
6660
|
data: {
|
|
@@ -7112,6 +7190,12 @@ export declare const useMessageGroup: (options: {
|
|
|
7112
7190
|
status: MessageStatus;
|
|
7113
7191
|
uid?: string | undefined;
|
|
7114
7192
|
property?: {
|
|
7193
|
+
artifacts?: {
|
|
7194
|
+
name: string;
|
|
7195
|
+
outputId: string;
|
|
7196
|
+
size: number;
|
|
7197
|
+
type: import("..").AIFileType;
|
|
7198
|
+
}[] | undefined;
|
|
7115
7199
|
extra?: {
|
|
7116
7200
|
cite: string | {
|
|
7117
7201
|
data: {
|
|
@@ -7647,6 +7731,12 @@ export declare const useMessageGroup: (options: {
|
|
|
7647
7731
|
status: MessageStatus;
|
|
7648
7732
|
uid?: string | undefined;
|
|
7649
7733
|
property?: {
|
|
7734
|
+
artifacts?: {
|
|
7735
|
+
name: string;
|
|
7736
|
+
outputId: string;
|
|
7737
|
+
size: number;
|
|
7738
|
+
type: import("..").AIFileType;
|
|
7739
|
+
}[] | undefined;
|
|
7650
7740
|
extra?: {
|
|
7651
7741
|
cite: string | {
|
|
7652
7742
|
data: {
|
|
@@ -8183,6 +8273,12 @@ export declare const useMessageGroup: (options: {
|
|
|
8183
8273
|
status: MessageStatus;
|
|
8184
8274
|
uid?: string | undefined;
|
|
8185
8275
|
property?: {
|
|
8276
|
+
artifacts?: {
|
|
8277
|
+
name: string;
|
|
8278
|
+
outputId: string;
|
|
8279
|
+
size: number;
|
|
8280
|
+
type: import("..").AIFileType;
|
|
8281
|
+
}[] | undefined;
|
|
8186
8282
|
extra?: {
|
|
8187
8283
|
cite: string | {
|
|
8188
8284
|
data: {
|
|
@@ -8718,6 +8814,12 @@ export declare const useMessageGroup: (options: {
|
|
|
8718
8814
|
status: MessageStatus;
|
|
8719
8815
|
uid?: string | undefined;
|
|
8720
8816
|
property?: {
|
|
8817
|
+
artifacts?: {
|
|
8818
|
+
name: string;
|
|
8819
|
+
outputId: string;
|
|
8820
|
+
size: number;
|
|
8821
|
+
type: import("..").AIFileType;
|
|
8822
|
+
}[] | undefined;
|
|
8721
8823
|
extra?: {
|
|
8722
8824
|
cite: string | {
|
|
8723
8825
|
data: {
|
|
@@ -9253,6 +9355,12 @@ export declare const useMessageGroup: (options: {
|
|
|
9253
9355
|
status: MessageStatus;
|
|
9254
9356
|
uid?: string | undefined;
|
|
9255
9357
|
property?: {
|
|
9358
|
+
artifacts?: {
|
|
9359
|
+
name: string;
|
|
9360
|
+
outputId: string;
|
|
9361
|
+
size: number;
|
|
9362
|
+
type: import("..").AIFileType;
|
|
9363
|
+
}[] | undefined;
|
|
9256
9364
|
extra?: {
|
|
9257
9365
|
cite: string | {
|
|
9258
9366
|
data: {
|
|
@@ -9788,6 +9896,12 @@ export declare const useMessageGroup: (options: {
|
|
|
9788
9896
|
status: MessageStatus;
|
|
9789
9897
|
uid?: string | undefined;
|
|
9790
9898
|
property?: {
|
|
9899
|
+
artifacts?: {
|
|
9900
|
+
name: string;
|
|
9901
|
+
outputId: string;
|
|
9902
|
+
size: number;
|
|
9903
|
+
type: import("..").AIFileType;
|
|
9904
|
+
}[] | undefined;
|
|
9791
9905
|
extra?: {
|
|
9792
9906
|
cite: string | {
|
|
9793
9907
|
data: {
|
|
@@ -10323,6 +10437,12 @@ export declare const useMessageGroup: (options: {
|
|
|
10323
10437
|
status: MessageStatus;
|
|
10324
10438
|
uid?: string | undefined;
|
|
10325
10439
|
property?: {
|
|
10440
|
+
artifacts?: {
|
|
10441
|
+
name: string;
|
|
10442
|
+
outputId: string;
|
|
10443
|
+
size: number;
|
|
10444
|
+
type: import("..").AIFileType;
|
|
10445
|
+
}[] | undefined;
|
|
10326
10446
|
extra?: {
|
|
10327
10447
|
cite: string | {
|
|
10328
10448
|
data: {
|
|
@@ -10858,6 +10978,12 @@ export declare const useMessageGroup: (options: {
|
|
|
10858
10978
|
status: MessageStatus;
|
|
10859
10979
|
uid?: string | undefined;
|
|
10860
10980
|
property?: {
|
|
10981
|
+
artifacts?: {
|
|
10982
|
+
name: string;
|
|
10983
|
+
outputId: string;
|
|
10984
|
+
size: number;
|
|
10985
|
+
type: import("..").AIFileType;
|
|
10986
|
+
}[] | undefined;
|
|
10861
10987
|
extra?: {
|
|
10862
10988
|
cite: string | {
|
|
10863
10989
|
data: {
|
|
@@ -11393,6 +11519,12 @@ export declare const useMessageGroup: (options: {
|
|
|
11393
11519
|
status: MessageStatus;
|
|
11394
11520
|
uid?: string | undefined;
|
|
11395
11521
|
property?: {
|
|
11522
|
+
artifacts?: {
|
|
11523
|
+
name: string;
|
|
11524
|
+
outputId: string;
|
|
11525
|
+
size: number;
|
|
11526
|
+
type: import("..").AIFileType;
|
|
11527
|
+
}[] | undefined;
|
|
11396
11528
|
extra?: {
|
|
11397
11529
|
cite: string | {
|
|
11398
11530
|
data: {
|
|
@@ -11931,6 +12063,12 @@ export declare const useMessageGroup: (options: {
|
|
|
11931
12063
|
status: MessageStatus;
|
|
11932
12064
|
uid?: string | undefined;
|
|
11933
12065
|
property?: {
|
|
12066
|
+
artifacts?: {
|
|
12067
|
+
name: string;
|
|
12068
|
+
outputId: string;
|
|
12069
|
+
size: number;
|
|
12070
|
+
type: import("..").AIFileType;
|
|
12071
|
+
}[] | undefined;
|
|
11934
12072
|
extra?: {
|
|
11935
12073
|
cite: string | {
|
|
11936
12074
|
data: {
|
|
@@ -12476,6 +12614,12 @@ export declare const useMessageGroup: (options: {
|
|
|
12476
12614
|
status: MessageStatus;
|
|
12477
12615
|
uid?: string | undefined;
|
|
12478
12616
|
property?: {
|
|
12617
|
+
artifacts?: {
|
|
12618
|
+
name: string;
|
|
12619
|
+
outputId: string;
|
|
12620
|
+
size: number;
|
|
12621
|
+
type: import("..").AIFileType;
|
|
12622
|
+
}[] | undefined;
|
|
12479
12623
|
extra?: {
|
|
12480
12624
|
cite: string | {
|
|
12481
12625
|
data: {
|
|
@@ -13047,6 +13191,12 @@ export declare const useMessageGroup: (options: {
|
|
|
13047
13191
|
status: MessageStatus;
|
|
13048
13192
|
uid?: string | undefined;
|
|
13049
13193
|
property?: {
|
|
13194
|
+
artifacts?: {
|
|
13195
|
+
name: string;
|
|
13196
|
+
outputId: string;
|
|
13197
|
+
size: number;
|
|
13198
|
+
type: import("..").AIFileType;
|
|
13199
|
+
}[] | undefined;
|
|
13050
13200
|
extra?: {
|
|
13051
13201
|
cite: string | {
|
|
13052
13202
|
data: {
|
|
@@ -13594,6 +13744,12 @@ export declare const useMessageGroup: (options: {
|
|
|
13594
13744
|
status?: MessageStatus | undefined;
|
|
13595
13745
|
uid?: string | undefined;
|
|
13596
13746
|
property?: {
|
|
13747
|
+
artifacts?: {
|
|
13748
|
+
name: string;
|
|
13749
|
+
outputId: string;
|
|
13750
|
+
size: number;
|
|
13751
|
+
type: import("..").AIFileType;
|
|
13752
|
+
}[] | undefined;
|
|
13597
13753
|
extra?: {
|
|
13598
13754
|
cite: string | {
|
|
13599
13755
|
data: {
|
|
@@ -14131,6 +14287,12 @@ export declare const useMessageGroup: (options: {
|
|
|
14131
14287
|
status: MessageStatus;
|
|
14132
14288
|
uid?: string | undefined;
|
|
14133
14289
|
property?: {
|
|
14290
|
+
artifacts?: {
|
|
14291
|
+
name: string;
|
|
14292
|
+
outputId: string;
|
|
14293
|
+
size: number;
|
|
14294
|
+
type: import("..").AIFileType;
|
|
14295
|
+
}[] | undefined;
|
|
14134
14296
|
extra?: {
|
|
14135
14297
|
cite: string | {
|
|
14136
14298
|
data: {
|
|
@@ -14666,6 +14828,12 @@ export declare const useMessageGroup: (options: {
|
|
|
14666
14828
|
status: MessageStatus;
|
|
14667
14829
|
uid?: string | undefined;
|
|
14668
14830
|
property?: {
|
|
14831
|
+
artifacts?: {
|
|
14832
|
+
name: string;
|
|
14833
|
+
outputId: string;
|
|
14834
|
+
size: number;
|
|
14835
|
+
type: import("..").AIFileType;
|
|
14836
|
+
}[] | undefined;
|
|
14669
14837
|
extra?: {
|
|
14670
14838
|
cite: string | {
|
|
14671
14839
|
data: {
|
|
@@ -15201,6 +15369,12 @@ export declare const useMessageGroup: (options: {
|
|
|
15201
15369
|
status: MessageStatus;
|
|
15202
15370
|
uid?: string | undefined;
|
|
15203
15371
|
property?: {
|
|
15372
|
+
artifacts?: {
|
|
15373
|
+
name: string;
|
|
15374
|
+
outputId: string;
|
|
15375
|
+
size: number;
|
|
15376
|
+
type: import("..").AIFileType;
|
|
15377
|
+
}[] | undefined;
|
|
15204
15378
|
extra?: {
|
|
15205
15379
|
cite: string | {
|
|
15206
15380
|
data: {
|
|
@@ -15736,6 +15910,12 @@ export declare const useMessageGroup: (options: {
|
|
|
15736
15910
|
status: MessageStatus;
|
|
15737
15911
|
uid?: string | undefined;
|
|
15738
15912
|
property?: {
|
|
15913
|
+
artifacts?: {
|
|
15914
|
+
name: string;
|
|
15915
|
+
outputId: string;
|
|
15916
|
+
size: number;
|
|
15917
|
+
type: import("..").AIFileType;
|
|
15918
|
+
}[] | undefined;
|
|
15739
15919
|
extra?: {
|
|
15740
15920
|
cite: string | {
|
|
15741
15921
|
data: {
|
|
@@ -16271,6 +16451,12 @@ export declare const useMessageGroup: (options: {
|
|
|
16271
16451
|
status: MessageStatus;
|
|
16272
16452
|
uid?: string | undefined;
|
|
16273
16453
|
property?: {
|
|
16454
|
+
artifacts?: {
|
|
16455
|
+
name: string;
|
|
16456
|
+
outputId: string;
|
|
16457
|
+
size: number;
|
|
16458
|
+
type: import("..").AIFileType;
|
|
16459
|
+
}[] | undefined;
|
|
16274
16460
|
extra?: {
|
|
16275
16461
|
cite: string | {
|
|
16276
16462
|
data: {
|
|
@@ -16806,6 +16992,12 @@ export declare const useMessageGroup: (options: {
|
|
|
16806
16992
|
status: MessageStatus;
|
|
16807
16993
|
uid?: string | undefined;
|
|
16808
16994
|
property?: {
|
|
16995
|
+
artifacts?: {
|
|
16996
|
+
name: string;
|
|
16997
|
+
outputId: string;
|
|
16998
|
+
size: number;
|
|
16999
|
+
type: import("..").AIFileType;
|
|
17000
|
+
}[] | undefined;
|
|
16809
17001
|
extra?: {
|
|
16810
17002
|
cite: string | {
|
|
16811
17003
|
data: {
|
|
@@ -17341,6 +17533,12 @@ export declare const useMessageGroup: (options: {
|
|
|
17341
17533
|
status: MessageStatus;
|
|
17342
17534
|
uid?: string | undefined;
|
|
17343
17535
|
property?: {
|
|
17536
|
+
artifacts?: {
|
|
17537
|
+
name: string;
|
|
17538
|
+
outputId: string;
|
|
17539
|
+
size: number;
|
|
17540
|
+
type: import("..").AIFileType;
|
|
17541
|
+
}[] | undefined;
|
|
17344
17542
|
extra?: {
|
|
17345
17543
|
cite: string | {
|
|
17346
17544
|
data: {
|
|
@@ -17876,6 +18074,12 @@ export declare const useMessageGroup: (options: {
|
|
|
17876
18074
|
status: MessageStatus;
|
|
17877
18075
|
uid?: string | undefined;
|
|
17878
18076
|
property?: {
|
|
18077
|
+
artifacts?: {
|
|
18078
|
+
name: string;
|
|
18079
|
+
outputId: string;
|
|
18080
|
+
size: number;
|
|
18081
|
+
type: import("..").AIFileType;
|
|
18082
|
+
}[] | undefined;
|
|
17879
18083
|
extra?: {
|
|
17880
18084
|
cite: string | {
|
|
17881
18085
|
data: {
|
|
@@ -18411,6 +18615,12 @@ export declare const useMessageGroup: (options: {
|
|
|
18411
18615
|
status: MessageStatus;
|
|
18412
18616
|
uid?: string | undefined;
|
|
18413
18617
|
property?: {
|
|
18618
|
+
artifacts?: {
|
|
18619
|
+
name: string;
|
|
18620
|
+
outputId: string;
|
|
18621
|
+
size: number;
|
|
18622
|
+
type: import("..").AIFileType;
|
|
18623
|
+
}[] | undefined;
|
|
18414
18624
|
extra?: {
|
|
18415
18625
|
cite: string | {
|
|
18416
18626
|
data: {
|
|
@@ -18946,6 +19156,12 @@ export declare const useMessageGroup: (options: {
|
|
|
18946
19156
|
status: MessageStatus;
|
|
18947
19157
|
uid?: string | undefined;
|
|
18948
19158
|
property?: {
|
|
19159
|
+
artifacts?: {
|
|
19160
|
+
name: string;
|
|
19161
|
+
outputId: string;
|
|
19162
|
+
size: number;
|
|
19163
|
+
type: import("..").AIFileType;
|
|
19164
|
+
}[] | undefined;
|
|
18949
19165
|
extra?: {
|
|
18950
19166
|
cite: string | {
|
|
18951
19167
|
data: {
|
|
@@ -19567,6 +19783,12 @@ export declare const useMessageGroup: (options: {
|
|
|
19567
19783
|
status: MessageStatus;
|
|
19568
19784
|
uid?: string | undefined;
|
|
19569
19785
|
property?: {
|
|
19786
|
+
artifacts?: {
|
|
19787
|
+
name: string;
|
|
19788
|
+
outputId: string;
|
|
19789
|
+
size: number;
|
|
19790
|
+
type: import("..").AIFileType;
|
|
19791
|
+
}[] | undefined;
|
|
19570
19792
|
extra?: {
|
|
19571
19793
|
cite: string | {
|
|
19572
19794
|
data: {
|
|
@@ -20102,6 +20324,12 @@ export declare const useMessageGroup: (options: {
|
|
|
20102
20324
|
status: MessageStatus;
|
|
20103
20325
|
uid?: string | undefined;
|
|
20104
20326
|
property?: {
|
|
20327
|
+
artifacts?: {
|
|
20328
|
+
name: string;
|
|
20329
|
+
outputId: string;
|
|
20330
|
+
size: number;
|
|
20331
|
+
type: import("..").AIFileType;
|
|
20332
|
+
}[] | undefined;
|
|
20105
20333
|
extra?: {
|
|
20106
20334
|
cite: string | {
|
|
20107
20335
|
data: {
|
|
@@ -20637,6 +20865,12 @@ export declare const useMessageGroup: (options: {
|
|
|
20637
20865
|
status: MessageStatus;
|
|
20638
20866
|
uid?: string | undefined;
|
|
20639
20867
|
property?: {
|
|
20868
|
+
artifacts?: {
|
|
20869
|
+
name: string;
|
|
20870
|
+
outputId: string;
|
|
20871
|
+
size: number;
|
|
20872
|
+
type: import("..").AIFileType;
|
|
20873
|
+
}[] | undefined;
|
|
20640
20874
|
extra?: {
|
|
20641
20875
|
cite: string | {
|
|
20642
20876
|
data: {
|
|
@@ -21173,6 +21407,12 @@ export declare const useMessageGroup: (options: {
|
|
|
21173
21407
|
status: MessageStatus;
|
|
21174
21408
|
uid?: string | undefined;
|
|
21175
21409
|
property?: {
|
|
21410
|
+
artifacts?: {
|
|
21411
|
+
name: string;
|
|
21412
|
+
outputId: string;
|
|
21413
|
+
size: number;
|
|
21414
|
+
type: import("..").AIFileType;
|
|
21415
|
+
}[] | undefined;
|
|
21176
21416
|
extra?: {
|
|
21177
21417
|
cite: string | {
|
|
21178
21418
|
data: {
|
|
@@ -21708,6 +21948,12 @@ export declare const useMessageGroup: (options: {
|
|
|
21708
21948
|
status: MessageStatus;
|
|
21709
21949
|
uid?: string | undefined;
|
|
21710
21950
|
property?: {
|
|
21951
|
+
artifacts?: {
|
|
21952
|
+
name: string;
|
|
21953
|
+
outputId: string;
|
|
21954
|
+
size: number;
|
|
21955
|
+
type: import("..").AIFileType;
|
|
21956
|
+
}[] | undefined;
|
|
21711
21957
|
extra?: {
|
|
21712
21958
|
cite: string | {
|
|
21713
21959
|
data: {
|
|
@@ -22243,6 +22489,12 @@ export declare const useMessageGroup: (options: {
|
|
|
22243
22489
|
status: MessageStatus;
|
|
22244
22490
|
uid?: string | undefined;
|
|
22245
22491
|
property?: {
|
|
22492
|
+
artifacts?: {
|
|
22493
|
+
name: string;
|
|
22494
|
+
outputId: string;
|
|
22495
|
+
size: number;
|
|
22496
|
+
type: import("..").AIFileType;
|
|
22497
|
+
}[] | undefined;
|
|
22246
22498
|
extra?: {
|
|
22247
22499
|
cite: string | {
|
|
22248
22500
|
data: {
|
|
@@ -22778,6 +23030,12 @@ export declare const useMessageGroup: (options: {
|
|
|
22778
23030
|
status: MessageStatus;
|
|
22779
23031
|
uid?: string | undefined;
|
|
22780
23032
|
property?: {
|
|
23033
|
+
artifacts?: {
|
|
23034
|
+
name: string;
|
|
23035
|
+
outputId: string;
|
|
23036
|
+
size: number;
|
|
23037
|
+
type: import("..").AIFileType;
|
|
23038
|
+
}[] | undefined;
|
|
22781
23039
|
extra?: {
|
|
22782
23040
|
cite: string | {
|
|
22783
23041
|
data: {
|
|
@@ -23313,6 +23571,12 @@ export declare const useMessageGroup: (options: {
|
|
|
23313
23571
|
status: MessageStatus;
|
|
23314
23572
|
uid?: string | undefined;
|
|
23315
23573
|
property?: {
|
|
23574
|
+
artifacts?: {
|
|
23575
|
+
name: string;
|
|
23576
|
+
outputId: string;
|
|
23577
|
+
size: number;
|
|
23578
|
+
type: import("..").AIFileType;
|
|
23579
|
+
}[] | undefined;
|
|
23316
23580
|
extra?: {
|
|
23317
23581
|
cite: string | {
|
|
23318
23582
|
data: {
|
|
@@ -23848,6 +24112,12 @@ export declare const useMessageGroup: (options: {
|
|
|
23848
24112
|
status: MessageStatus;
|
|
23849
24113
|
uid?: string | undefined;
|
|
23850
24114
|
property?: {
|
|
24115
|
+
artifacts?: {
|
|
24116
|
+
name: string;
|
|
24117
|
+
outputId: string;
|
|
24118
|
+
size: number;
|
|
24119
|
+
type: import("..").AIFileType;
|
|
24120
|
+
}[] | undefined;
|
|
23851
24121
|
extra?: {
|
|
23852
24122
|
cite: string | {
|
|
23853
24123
|
data: {
|
|
@@ -24383,6 +24653,12 @@ export declare const useMessageGroup: (options: {
|
|
|
24383
24653
|
status: MessageStatus;
|
|
24384
24654
|
uid?: string | undefined;
|
|
24385
24655
|
property?: {
|
|
24656
|
+
artifacts?: {
|
|
24657
|
+
name: string;
|
|
24658
|
+
outputId: string;
|
|
24659
|
+
size: number;
|
|
24660
|
+
type: import("..").AIFileType;
|
|
24661
|
+
}[] | undefined;
|
|
24386
24662
|
extra?: {
|
|
24387
24663
|
cite: string | {
|
|
24388
24664
|
data: {
|
|
@@ -24921,6 +25197,12 @@ export declare const useMessageGroup: (options: {
|
|
|
24921
25197
|
status: MessageStatus;
|
|
24922
25198
|
uid?: string | undefined;
|
|
24923
25199
|
property?: {
|
|
25200
|
+
artifacts?: {
|
|
25201
|
+
name: string;
|
|
25202
|
+
outputId: string;
|
|
25203
|
+
size: number;
|
|
25204
|
+
type: import("..").AIFileType;
|
|
25205
|
+
}[] | undefined;
|
|
24924
25206
|
extra?: {
|
|
24925
25207
|
cite: string | {
|
|
24926
25208
|
data: {
|
|
@@ -25466,6 +25748,12 @@ export declare const useMessageGroup: (options: {
|
|
|
25466
25748
|
status: MessageStatus;
|
|
25467
25749
|
uid?: string | undefined;
|
|
25468
25750
|
property?: {
|
|
25751
|
+
artifacts?: {
|
|
25752
|
+
name: string;
|
|
25753
|
+
outputId: string;
|
|
25754
|
+
size: number;
|
|
25755
|
+
type: import("..").AIFileType;
|
|
25756
|
+
}[] | undefined;
|
|
25469
25757
|
extra?: {
|
|
25470
25758
|
cite: string | {
|
|
25471
25759
|
data: {
|
|
@@ -26000,6 +26288,7 @@ export declare const useMessageGroup: (options: {
|
|
|
26000
26288
|
userMessageTitle?: number | string | undefined;
|
|
26001
26289
|
}[]>;
|
|
26002
26290
|
executionGroups: ComputedRef<MessageGroup[]>;
|
|
26291
|
+
sessionArtifacts: ComputedRef<import("..").AIFileInfo[]>;
|
|
26003
26292
|
activeUserQuestionInterrupt: ComputedRef<UserQuestionInterrupt | undefined>;
|
|
26004
26293
|
pendingApprovalCount: ComputedRef<number>;
|
|
26005
26294
|
pendingApprovalTipText: ComputedRef<string>;
|
|
@@ -26043,6 +26332,12 @@ export declare const useMessageGroup: (options: {
|
|
|
26043
26332
|
status: MessageStatus;
|
|
26044
26333
|
uid?: string | undefined;
|
|
26045
26334
|
property?: {
|
|
26335
|
+
artifacts?: {
|
|
26336
|
+
name: string;
|
|
26337
|
+
outputId: string;
|
|
26338
|
+
size: number;
|
|
26339
|
+
type: import("..").AIFileType;
|
|
26340
|
+
}[] | undefined;
|
|
26046
26341
|
extra?: {
|
|
26047
26342
|
cite: string | {
|
|
26048
26343
|
data: {
|
|
@@ -26590,6 +26885,12 @@ export declare const useMessageGroup: (options: {
|
|
|
26590
26885
|
status?: MessageStatus | undefined;
|
|
26591
26886
|
uid?: string | undefined;
|
|
26592
26887
|
property?: {
|
|
26888
|
+
artifacts?: {
|
|
26889
|
+
name: string;
|
|
26890
|
+
outputId: string;
|
|
26891
|
+
size: number;
|
|
26892
|
+
type: import("..").AIFileType;
|
|
26893
|
+
}[] | undefined;
|
|
26593
26894
|
extra?: {
|
|
26594
26895
|
cite: string | {
|
|
26595
26896
|
data: {
|
|
@@ -27127,6 +27428,12 @@ export declare const useMessageGroup: (options: {
|
|
|
27127
27428
|
status: MessageStatus;
|
|
27128
27429
|
uid?: string | undefined;
|
|
27129
27430
|
property?: {
|
|
27431
|
+
artifacts?: {
|
|
27432
|
+
name: string;
|
|
27433
|
+
outputId: string;
|
|
27434
|
+
size: number;
|
|
27435
|
+
type: import("..").AIFileType;
|
|
27436
|
+
}[] | undefined;
|
|
27130
27437
|
extra?: {
|
|
27131
27438
|
cite: string | {
|
|
27132
27439
|
data: {
|
|
@@ -27662,6 +27969,12 @@ export declare const useMessageGroup: (options: {
|
|
|
27662
27969
|
status: MessageStatus;
|
|
27663
27970
|
uid?: string | undefined;
|
|
27664
27971
|
property?: {
|
|
27972
|
+
artifacts?: {
|
|
27973
|
+
name: string;
|
|
27974
|
+
outputId: string;
|
|
27975
|
+
size: number;
|
|
27976
|
+
type: import("..").AIFileType;
|
|
27977
|
+
}[] | undefined;
|
|
27665
27978
|
extra?: {
|
|
27666
27979
|
cite: string | {
|
|
27667
27980
|
data: {
|
|
@@ -28197,6 +28510,12 @@ export declare const useMessageGroup: (options: {
|
|
|
28197
28510
|
status: MessageStatus;
|
|
28198
28511
|
uid?: string | undefined;
|
|
28199
28512
|
property?: {
|
|
28513
|
+
artifacts?: {
|
|
28514
|
+
name: string;
|
|
28515
|
+
outputId: string;
|
|
28516
|
+
size: number;
|
|
28517
|
+
type: import("..").AIFileType;
|
|
28518
|
+
}[] | undefined;
|
|
28200
28519
|
extra?: {
|
|
28201
28520
|
cite: string | {
|
|
28202
28521
|
data: {
|
|
@@ -28732,6 +29051,12 @@ export declare const useMessageGroup: (options: {
|
|
|
28732
29051
|
status: MessageStatus;
|
|
28733
29052
|
uid?: string | undefined;
|
|
28734
29053
|
property?: {
|
|
29054
|
+
artifacts?: {
|
|
29055
|
+
name: string;
|
|
29056
|
+
outputId: string;
|
|
29057
|
+
size: number;
|
|
29058
|
+
type: import("..").AIFileType;
|
|
29059
|
+
}[] | undefined;
|
|
28735
29060
|
extra?: {
|
|
28736
29061
|
cite: string | {
|
|
28737
29062
|
data: {
|
|
@@ -29267,6 +29592,12 @@ export declare const useMessageGroup: (options: {
|
|
|
29267
29592
|
status: MessageStatus;
|
|
29268
29593
|
uid?: string | undefined;
|
|
29269
29594
|
property?: {
|
|
29595
|
+
artifacts?: {
|
|
29596
|
+
name: string;
|
|
29597
|
+
outputId: string;
|
|
29598
|
+
size: number;
|
|
29599
|
+
type: import("..").AIFileType;
|
|
29600
|
+
}[] | undefined;
|
|
29270
29601
|
extra?: {
|
|
29271
29602
|
cite: string | {
|
|
29272
29603
|
data: {
|
|
@@ -29802,6 +30133,12 @@ export declare const useMessageGroup: (options: {
|
|
|
29802
30133
|
status: MessageStatus;
|
|
29803
30134
|
uid?: string | undefined;
|
|
29804
30135
|
property?: {
|
|
30136
|
+
artifacts?: {
|
|
30137
|
+
name: string;
|
|
30138
|
+
outputId: string;
|
|
30139
|
+
size: number;
|
|
30140
|
+
type: import("..").AIFileType;
|
|
30141
|
+
}[] | undefined;
|
|
29805
30142
|
extra?: {
|
|
29806
30143
|
cite: string | {
|
|
29807
30144
|
data: {
|
|
@@ -30337,6 +30674,12 @@ export declare const useMessageGroup: (options: {
|
|
|
30337
30674
|
status: MessageStatus;
|
|
30338
30675
|
uid?: string | undefined;
|
|
30339
30676
|
property?: {
|
|
30677
|
+
artifacts?: {
|
|
30678
|
+
name: string;
|
|
30679
|
+
outputId: string;
|
|
30680
|
+
size: number;
|
|
30681
|
+
type: import("..").AIFileType;
|
|
30682
|
+
}[] | undefined;
|
|
30340
30683
|
extra?: {
|
|
30341
30684
|
cite: string | {
|
|
30342
30685
|
data: {
|
|
@@ -30872,6 +31215,12 @@ export declare const useMessageGroup: (options: {
|
|
|
30872
31215
|
status: MessageStatus;
|
|
30873
31216
|
uid?: string | undefined;
|
|
30874
31217
|
property?: {
|
|
31218
|
+
artifacts?: {
|
|
31219
|
+
name: string;
|
|
31220
|
+
outputId: string;
|
|
31221
|
+
size: number;
|
|
31222
|
+
type: import("..").AIFileType;
|
|
31223
|
+
}[] | undefined;
|
|
30875
31224
|
extra?: {
|
|
30876
31225
|
cite: string | {
|
|
30877
31226
|
data: {
|
|
@@ -31407,6 +31756,12 @@ export declare const useMessageGroup: (options: {
|
|
|
31407
31756
|
status: MessageStatus;
|
|
31408
31757
|
uid?: string | undefined;
|
|
31409
31758
|
property?: {
|
|
31759
|
+
artifacts?: {
|
|
31760
|
+
name: string;
|
|
31761
|
+
outputId: string;
|
|
31762
|
+
size: number;
|
|
31763
|
+
type: import("..").AIFileType;
|
|
31764
|
+
}[] | undefined;
|
|
31410
31765
|
extra?: {
|
|
31411
31766
|
cite: string | {
|
|
31412
31767
|
data: {
|
|
@@ -31942,6 +32297,12 @@ export declare const useMessageGroup: (options: {
|
|
|
31942
32297
|
status: MessageStatus;
|
|
31943
32298
|
uid?: string | undefined;
|
|
31944
32299
|
property?: {
|
|
32300
|
+
artifacts?: {
|
|
32301
|
+
name: string;
|
|
32302
|
+
outputId: string;
|
|
32303
|
+
size: number;
|
|
32304
|
+
type: import("..").AIFileType;
|
|
32305
|
+
}[] | undefined;
|
|
31945
32306
|
extra?: {
|
|
31946
32307
|
cite: string | {
|
|
31947
32308
|
data: {
|
|
@@ -32563,6 +32924,12 @@ export declare const useMessageGroup: (options: {
|
|
|
32563
32924
|
status: MessageStatus;
|
|
32564
32925
|
uid?: string | undefined;
|
|
32565
32926
|
property?: {
|
|
32927
|
+
artifacts?: {
|
|
32928
|
+
name: string;
|
|
32929
|
+
outputId: string;
|
|
32930
|
+
size: number;
|
|
32931
|
+
type: import("..").AIFileType;
|
|
32932
|
+
}[] | undefined;
|
|
32566
32933
|
extra?: {
|
|
32567
32934
|
cite: string | {
|
|
32568
32935
|
data: {
|
|
@@ -33098,6 +33465,12 @@ export declare const useMessageGroup: (options: {
|
|
|
33098
33465
|
status: MessageStatus;
|
|
33099
33466
|
uid?: string | undefined;
|
|
33100
33467
|
property?: {
|
|
33468
|
+
artifacts?: {
|
|
33469
|
+
name: string;
|
|
33470
|
+
outputId: string;
|
|
33471
|
+
size: number;
|
|
33472
|
+
type: import("..").AIFileType;
|
|
33473
|
+
}[] | undefined;
|
|
33101
33474
|
extra?: {
|
|
33102
33475
|
cite: string | {
|
|
33103
33476
|
data: {
|
|
@@ -33633,6 +34006,12 @@ export declare const useMessageGroup: (options: {
|
|
|
33633
34006
|
status: MessageStatus;
|
|
33634
34007
|
uid?: string | undefined;
|
|
33635
34008
|
property?: {
|
|
34009
|
+
artifacts?: {
|
|
34010
|
+
name: string;
|
|
34011
|
+
outputId: string;
|
|
34012
|
+
size: number;
|
|
34013
|
+
type: import("..").AIFileType;
|
|
34014
|
+
}[] | undefined;
|
|
33636
34015
|
extra?: {
|
|
33637
34016
|
cite: string | {
|
|
33638
34017
|
data: {
|
|
@@ -34169,6 +34548,12 @@ export declare const useMessageGroup: (options: {
|
|
|
34169
34548
|
status: MessageStatus;
|
|
34170
34549
|
uid?: string | undefined;
|
|
34171
34550
|
property?: {
|
|
34551
|
+
artifacts?: {
|
|
34552
|
+
name: string;
|
|
34553
|
+
outputId: string;
|
|
34554
|
+
size: number;
|
|
34555
|
+
type: import("..").AIFileType;
|
|
34556
|
+
}[] | undefined;
|
|
34172
34557
|
extra?: {
|
|
34173
34558
|
cite: string | {
|
|
34174
34559
|
data: {
|
|
@@ -34704,6 +35089,12 @@ export declare const useMessageGroup: (options: {
|
|
|
34704
35089
|
status: MessageStatus;
|
|
34705
35090
|
uid?: string | undefined;
|
|
34706
35091
|
property?: {
|
|
35092
|
+
artifacts?: {
|
|
35093
|
+
name: string;
|
|
35094
|
+
outputId: string;
|
|
35095
|
+
size: number;
|
|
35096
|
+
type: import("..").AIFileType;
|
|
35097
|
+
}[] | undefined;
|
|
34707
35098
|
extra?: {
|
|
34708
35099
|
cite: string | {
|
|
34709
35100
|
data: {
|
|
@@ -35239,6 +35630,12 @@ export declare const useMessageGroup: (options: {
|
|
|
35239
35630
|
status: MessageStatus;
|
|
35240
35631
|
uid?: string | undefined;
|
|
35241
35632
|
property?: {
|
|
35633
|
+
artifacts?: {
|
|
35634
|
+
name: string;
|
|
35635
|
+
outputId: string;
|
|
35636
|
+
size: number;
|
|
35637
|
+
type: import("..").AIFileType;
|
|
35638
|
+
}[] | undefined;
|
|
35242
35639
|
extra?: {
|
|
35243
35640
|
cite: string | {
|
|
35244
35641
|
data: {
|
|
@@ -35774,6 +36171,12 @@ export declare const useMessageGroup: (options: {
|
|
|
35774
36171
|
status: MessageStatus;
|
|
35775
36172
|
uid?: string | undefined;
|
|
35776
36173
|
property?: {
|
|
36174
|
+
artifacts?: {
|
|
36175
|
+
name: string;
|
|
36176
|
+
outputId: string;
|
|
36177
|
+
size: number;
|
|
36178
|
+
type: import("..").AIFileType;
|
|
36179
|
+
}[] | undefined;
|
|
35777
36180
|
extra?: {
|
|
35778
36181
|
cite: string | {
|
|
35779
36182
|
data: {
|
|
@@ -36309,6 +36712,12 @@ export declare const useMessageGroup: (options: {
|
|
|
36309
36712
|
status: MessageStatus;
|
|
36310
36713
|
uid?: string | undefined;
|
|
36311
36714
|
property?: {
|
|
36715
|
+
artifacts?: {
|
|
36716
|
+
name: string;
|
|
36717
|
+
outputId: string;
|
|
36718
|
+
size: number;
|
|
36719
|
+
type: import("..").AIFileType;
|
|
36720
|
+
}[] | undefined;
|
|
36312
36721
|
extra?: {
|
|
36313
36722
|
cite: string | {
|
|
36314
36723
|
data: {
|
|
@@ -36844,6 +37253,12 @@ export declare const useMessageGroup: (options: {
|
|
|
36844
37253
|
status: MessageStatus;
|
|
36845
37254
|
uid?: string | undefined;
|
|
36846
37255
|
property?: {
|
|
37256
|
+
artifacts?: {
|
|
37257
|
+
name: string;
|
|
37258
|
+
outputId: string;
|
|
37259
|
+
size: number;
|
|
37260
|
+
type: import("..").AIFileType;
|
|
37261
|
+
}[] | undefined;
|
|
36847
37262
|
extra?: {
|
|
36848
37263
|
cite: string | {
|
|
36849
37264
|
data: {
|
|
@@ -37379,6 +37794,12 @@ export declare const useMessageGroup: (options: {
|
|
|
37379
37794
|
status: MessageStatus;
|
|
37380
37795
|
uid?: string | undefined;
|
|
37381
37796
|
property?: {
|
|
37797
|
+
artifacts?: {
|
|
37798
|
+
name: string;
|
|
37799
|
+
outputId: string;
|
|
37800
|
+
size: number;
|
|
37801
|
+
type: import("..").AIFileType;
|
|
37802
|
+
}[] | undefined;
|
|
37382
37803
|
extra?: {
|
|
37383
37804
|
cite: string | {
|
|
37384
37805
|
data: {
|
|
@@ -37917,6 +38338,12 @@ export declare const useMessageGroup: (options: {
|
|
|
37917
38338
|
status: MessageStatus;
|
|
37918
38339
|
uid?: string | undefined;
|
|
37919
38340
|
property?: {
|
|
38341
|
+
artifacts?: {
|
|
38342
|
+
name: string;
|
|
38343
|
+
outputId: string;
|
|
38344
|
+
size: number;
|
|
38345
|
+
type: import("..").AIFileType;
|
|
38346
|
+
}[] | undefined;
|
|
37920
38347
|
extra?: {
|
|
37921
38348
|
cite: string | {
|
|
37922
38349
|
data: {
|
|
@@ -38462,6 +38889,12 @@ export declare const useMessageGroup: (options: {
|
|
|
38462
38889
|
status: MessageStatus;
|
|
38463
38890
|
uid?: string | undefined;
|
|
38464
38891
|
property?: {
|
|
38892
|
+
artifacts?: {
|
|
38893
|
+
name: string;
|
|
38894
|
+
outputId: string;
|
|
38895
|
+
size: number;
|
|
38896
|
+
type: import("..").AIFileType;
|
|
38897
|
+
}[] | undefined;
|
|
38465
38898
|
extra?: {
|
|
38466
38899
|
cite: string | {
|
|
38467
38900
|
data: {
|