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