@blueking/chat-x 0.0.48-beta.1 → 0.0.49-beta.10

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.
Files changed (70) hide show
  1. package/dist/ag-ui/types/constants.d.ts +1 -0
  2. package/dist/ag-ui/types/file.d.ts +13 -0
  3. package/dist/ag-ui/types/index.d.ts +1 -0
  4. package/dist/ag-ui/types/messages.d.ts +4 -0
  5. package/dist/components/chat-message/assistant-message/assistant-message.vue.d.ts +12 -1
  6. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-file-card.vue.d.ts +12 -0
  7. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/artifact-preview-host.vue.d.ts +11 -0
  8. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/preview-strategy.d.ts +8 -0
  9. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/code-preview.vue.d.ts +8 -0
  10. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/html-preview.vue.d.ts +6 -0
  11. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/image-preview.vue.d.ts +7 -0
  12. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/markdown-preview.vue.d.ts +6 -0
  13. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/txt-preview.vue.d.ts +6 -0
  14. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/renderers/url-iframe-preview.vue.d.ts +6 -0
  15. package/dist/components/chat-message/assistant-message/message-artifacts/artifact-preview/use-artifact-preview-loader.d.ts +22 -0
  16. package/dist/components/chat-message/assistant-message/message-artifacts/file-artifact-panel.vue.d.ts +13 -0
  17. package/dist/components/chat-message/assistant-message/message-artifacts/message-artifacts.vue.d.ts +9 -0
  18. package/dist/components/chat-message/interrupt-message/user-question/use-user-question.d.ts +7 -2
  19. package/dist/components/chat-message/user-message/user-message.vue.d.ts +15 -2
  20. package/dist/components/file-icon/file-icon.vue.d.ts +7 -0
  21. package/dist/components/index.d.ts +3 -1
  22. package/dist/components/message-tools/message-time/format-message-time.d.ts +8 -0
  23. package/dist/components/message-tools/message-time/message-time.vue.d.ts +8 -0
  24. package/dist/components/message-tools/message-tools.vue.d.ts +11 -1
  25. package/dist/composables/index.d.ts +1 -0
  26. package/dist/composables/use-artifact-preview.d.ts +49 -0
  27. package/dist/composables/use-container-scroll.d.ts +9 -2
  28. package/dist/composables/use-custom-tab.d.ts +7 -3
  29. package/dist/composables/use-global-config.d.ts +3 -0
  30. package/dist/composables/use-message-group.d.ts +505 -0
  31. package/dist/icons/file-icons.d.ts +4 -0
  32. package/dist/icons/file.d.ts +6 -0
  33. package/dist/icons/index.d.ts +2 -0
  34. package/dist/icons/tools.d.ts +3 -0
  35. package/dist/index.css +1 -1
  36. package/dist/index.js +3203 -2368
  37. package/dist/index.js.map +1 -1
  38. package/dist/lang/lang.d.ts +9 -1
  39. package/dist/mcp/generated/docs/activity-message.md +122 -97
  40. package/dist/mcp/generated/docs/assistant-message.md +146 -75
  41. package/dist/mcp/generated/docs/chat-container.md +121 -38
  42. package/dist/mcp/generated/docs/chat-input.md +2 -10
  43. package/dist/mcp/generated/docs/constants.md +3 -1
  44. package/dist/mcp/generated/docs/content-render.md +2 -10
  45. package/dist/mcp/generated/docs/execution-summary.md +3 -3
  46. package/dist/mcp/generated/docs/file-artifact-panel.md +293 -0
  47. package/dist/mcp/generated/docs/file-icon.md +111 -0
  48. package/dist/mcp/generated/docs/info-message.md +29 -12
  49. package/dist/mcp/generated/docs/interrupt.md +1 -0
  50. package/dist/mcp/generated/docs/loading-message.md +36 -17
  51. package/dist/mcp/generated/docs/message-container.md +27 -23
  52. package/dist/mcp/generated/docs/message-render.md +47 -59
  53. package/dist/mcp/generated/docs/message-time.md +180 -0
  54. package/dist/mcp/generated/docs/message-tools.md +47 -12
  55. package/dist/mcp/generated/docs/messages.md +9 -0
  56. package/dist/mcp/generated/docs/reasoning-message.md +17 -20
  57. package/dist/mcp/generated/docs/tool-message.md +61 -45
  58. package/dist/mcp/generated/docs/toolcall-render.md +18 -10
  59. package/dist/mcp/generated/docs/use-artifact-preview.md +234 -0
  60. package/dist/mcp/generated/docs/use-container-scroll.md +6 -2
  61. package/dist/mcp/generated/docs/use-custom-tab.md +25 -8
  62. package/dist/mcp/generated/docs/use-global-config.md +15 -5
  63. package/dist/mcp/generated/docs/use-message-group.md +37 -5
  64. package/dist/mcp/generated/docs/user-message.md +191 -121
  65. package/dist/mcp/generated/docs/user-question-card.md +6 -3
  66. package/dist/mcp/generated/index.json +144 -18
  67. package/dist/mcp/index.js +0 -0
  68. package/dist/utils/file-type.d.ts +14 -0
  69. package/dist/utils/index.d.ts +1 -0
  70. package/package.json +20 -21
@@ -50,6 +50,7 @@ export declare const useMessageGroup: (options: {
50
50
  originFile: string;
51
51
  url: string;
52
52
  }[];
53
+ createdAt?: number | string | undefined;
53
54
  id: number | string;
54
55
  messageId: number | string;
55
56
  name?: string | undefined;
@@ -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: string;
66
+ }[] | undefined;
60
67
  extra?: {
61
68
  cite: string | {
62
69
  data: {
@@ -597,6 +604,7 @@ export declare const useMessageGroup: (options: {
597
604
  error?: boolean | string | undefined;
598
605
  toolCallId?: string | undefined;
599
606
  content?: string | undefined;
607
+ createdAt?: number | string | undefined;
600
608
  id?: string | number | undefined;
601
609
  messageId?: string | number | undefined;
602
610
  name?: string | undefined;
@@ -604,6 +612,12 @@ export declare const useMessageGroup: (options: {
604
612
  status?: MessageStatus | undefined;
605
613
  uid?: string | undefined;
606
614
  property?: {
615
+ artifacts?: {
616
+ name: string;
617
+ outputId: string;
618
+ size: number;
619
+ type: string;
620
+ }[] | undefined;
607
621
  extra?: {
608
622
  cite: string | {
609
623
  data: {
@@ -1134,6 +1148,7 @@ export declare const useMessageGroup: (options: {
1134
1148
  type: MessageContentType.Function;
1135
1149
  }[] | undefined;
1136
1150
  content: string;
1151
+ createdAt?: number | string | undefined;
1137
1152
  id: number | string;
1138
1153
  messageId: number | string;
1139
1154
  name?: string | undefined;
@@ -1141,6 +1156,12 @@ export declare const useMessageGroup: (options: {
1141
1156
  status: MessageStatus;
1142
1157
  uid?: string | undefined;
1143
1158
  property?: {
1159
+ artifacts?: {
1160
+ name: string;
1161
+ outputId: string;
1162
+ size: number;
1163
+ type: string;
1164
+ }[] | undefined;
1144
1165
  extra?: {
1145
1166
  cite: string | {
1146
1167
  data: {
@@ -1669,6 +1690,7 @@ export declare const useMessageGroup: (options: {
1669
1690
  } | undefined;
1670
1691
  } | {
1671
1692
  content: string;
1693
+ createdAt?: number | string | undefined;
1672
1694
  id: number | string;
1673
1695
  messageId: number | string;
1674
1696
  name?: string | undefined;
@@ -1676,6 +1698,12 @@ export declare const useMessageGroup: (options: {
1676
1698
  status: MessageStatus;
1677
1699
  uid?: string | undefined;
1678
1700
  property?: {
1701
+ artifacts?: {
1702
+ name: string;
1703
+ outputId: string;
1704
+ size: number;
1705
+ type: string;
1706
+ }[] | undefined;
1679
1707
  extra?: {
1680
1708
  cite: string | {
1681
1709
  data: {
@@ -2204,6 +2232,7 @@ export declare const useMessageGroup: (options: {
2204
2232
  } | undefined;
2205
2233
  } | {
2206
2234
  content: string;
2235
+ createdAt?: number | string | undefined;
2207
2236
  id: number | string;
2208
2237
  messageId: number | string;
2209
2238
  name?: string | undefined;
@@ -2211,6 +2240,12 @@ export declare const useMessageGroup: (options: {
2211
2240
  status: MessageStatus;
2212
2241
  uid?: string | undefined;
2213
2242
  property?: {
2243
+ artifacts?: {
2244
+ name: string;
2245
+ outputId: string;
2246
+ size: number;
2247
+ type: string;
2248
+ }[] | undefined;
2214
2249
  extra?: {
2215
2250
  cite: string | {
2216
2251
  data: {
@@ -2739,6 +2774,7 @@ export declare const useMessageGroup: (options: {
2739
2774
  } | undefined;
2740
2775
  } | {
2741
2776
  content: string;
2777
+ createdAt?: number | string | undefined;
2742
2778
  id: number | string;
2743
2779
  messageId: number | string;
2744
2780
  name?: string | undefined;
@@ -2746,6 +2782,12 @@ export declare const useMessageGroup: (options: {
2746
2782
  status: MessageStatus;
2747
2783
  uid?: string | undefined;
2748
2784
  property?: {
2785
+ artifacts?: {
2786
+ name: string;
2787
+ outputId: string;
2788
+ size: number;
2789
+ type: string;
2790
+ }[] | undefined;
2749
2791
  extra?: {
2750
2792
  cite: string | {
2751
2793
  data: {
@@ -3274,6 +3316,7 @@ export declare const useMessageGroup: (options: {
3274
3316
  } | undefined;
3275
3317
  } | {
3276
3318
  content: string;
3319
+ createdAt?: number | string | undefined;
3277
3320
  id: number | string;
3278
3321
  messageId: number | string;
3279
3322
  name?: string | undefined;
@@ -3281,6 +3324,12 @@ export declare const useMessageGroup: (options: {
3281
3324
  status: MessageStatus;
3282
3325
  uid?: string | undefined;
3283
3326
  property?: {
3327
+ artifacts?: {
3328
+ name: string;
3329
+ outputId: string;
3330
+ size: number;
3331
+ type: string;
3332
+ }[] | undefined;
3284
3333
  extra?: {
3285
3334
  cite: string | {
3286
3335
  data: {
@@ -3809,6 +3858,7 @@ export declare const useMessageGroup: (options: {
3809
3858
  } | undefined;
3810
3859
  } | {
3811
3860
  content: string;
3861
+ createdAt?: number | string | undefined;
3812
3862
  id: number | string;
3813
3863
  messageId: number | string;
3814
3864
  name?: string | undefined;
@@ -3816,6 +3866,12 @@ export declare const useMessageGroup: (options: {
3816
3866
  status: MessageStatus;
3817
3867
  uid?: string | undefined;
3818
3868
  property?: {
3869
+ artifacts?: {
3870
+ name: string;
3871
+ outputId: string;
3872
+ size: number;
3873
+ type: string;
3874
+ }[] | undefined;
3819
3875
  extra?: {
3820
3876
  cite: string | {
3821
3877
  data: {
@@ -4344,6 +4400,7 @@ export declare const useMessageGroup: (options: {
4344
4400
  } | undefined;
4345
4401
  } | {
4346
4402
  content: string;
4403
+ createdAt?: number | string | undefined;
4347
4404
  id: number | string;
4348
4405
  messageId: number | string;
4349
4406
  name?: string | undefined;
@@ -4351,6 +4408,12 @@ export declare const useMessageGroup: (options: {
4351
4408
  status: MessageStatus;
4352
4409
  uid?: string | undefined;
4353
4410
  property?: {
4411
+ artifacts?: {
4412
+ name: string;
4413
+ outputId: string;
4414
+ size: number;
4415
+ type: string;
4416
+ }[] | undefined;
4354
4417
  extra?: {
4355
4418
  cite: string | {
4356
4419
  data: {
@@ -4879,6 +4942,7 @@ export declare const useMessageGroup: (options: {
4879
4942
  } | undefined;
4880
4943
  } | {
4881
4944
  content: string;
4945
+ createdAt?: number | string | undefined;
4882
4946
  id: number | string;
4883
4947
  messageId: number | string;
4884
4948
  name?: string | undefined;
@@ -4886,6 +4950,12 @@ export declare const useMessageGroup: (options: {
4886
4950
  status: MessageStatus;
4887
4951
  uid?: string | undefined;
4888
4952
  property?: {
4953
+ artifacts?: {
4954
+ name: string;
4955
+ outputId: string;
4956
+ size: number;
4957
+ type: string;
4958
+ }[] | undefined;
4889
4959
  extra?: {
4890
4960
  cite: string | {
4891
4961
  data: {
@@ -5414,6 +5484,7 @@ export declare const useMessageGroup: (options: {
5414
5484
  } | undefined;
5415
5485
  } | {
5416
5486
  content: string;
5487
+ createdAt?: number | string | undefined;
5417
5488
  id: number | string;
5418
5489
  messageId: number | string;
5419
5490
  name?: string | undefined;
@@ -5421,6 +5492,12 @@ export declare const useMessageGroup: (options: {
5421
5492
  status: MessageStatus;
5422
5493
  uid?: string | undefined;
5423
5494
  property?: {
5495
+ artifacts?: {
5496
+ name: string;
5497
+ outputId: string;
5498
+ size: number;
5499
+ type: string;
5500
+ }[] | undefined;
5424
5501
  extra?: {
5425
5502
  cite: string | {
5426
5503
  data: {
@@ -5949,6 +6026,7 @@ export declare const useMessageGroup: (options: {
5949
6026
  } | undefined;
5950
6027
  } | {
5951
6028
  content: string;
6029
+ createdAt?: number | string | undefined;
5952
6030
  id: number | string;
5953
6031
  messageId: number | string;
5954
6032
  name?: string | undefined;
@@ -5956,6 +6034,12 @@ export declare const useMessageGroup: (options: {
5956
6034
  status: MessageStatus;
5957
6035
  uid?: string | undefined;
5958
6036
  property?: {
6037
+ artifacts?: {
6038
+ name: string;
6039
+ outputId: string;
6040
+ size: number;
6041
+ type: string;
6042
+ }[] | undefined;
5959
6043
  extra?: {
5960
6044
  cite: string | {
5961
6045
  data: {
@@ -6570,6 +6654,7 @@ export declare const useMessageGroup: (options: {
6570
6654
  runId?: string | undefined;
6571
6655
  threadId?: string | undefined;
6572
6656
  };
6657
+ createdAt?: number | string | undefined;
6573
6658
  id: number | string;
6574
6659
  messageId: number | string;
6575
6660
  name?: string | undefined;
@@ -6577,6 +6662,12 @@ export declare const useMessageGroup: (options: {
6577
6662
  status: MessageStatus;
6578
6663
  uid?: string | undefined;
6579
6664
  property?: {
6665
+ artifacts?: {
6666
+ name: string;
6667
+ outputId: string;
6668
+ size: number;
6669
+ type: string;
6670
+ }[] | undefined;
6580
6671
  extra?: {
6581
6672
  cite: string | {
6582
6673
  data: {
@@ -7105,6 +7196,7 @@ export declare const useMessageGroup: (options: {
7105
7196
  } | undefined;
7106
7197
  } | {
7107
7198
  content: string;
7199
+ createdAt?: number | string | undefined;
7108
7200
  id: number | string;
7109
7201
  messageId: number | string;
7110
7202
  name?: string | undefined;
@@ -7112,6 +7204,12 @@ export declare const useMessageGroup: (options: {
7112
7204
  status: MessageStatus;
7113
7205
  uid?: string | undefined;
7114
7206
  property?: {
7207
+ artifacts?: {
7208
+ name: string;
7209
+ outputId: string;
7210
+ size: number;
7211
+ type: string;
7212
+ }[] | undefined;
7115
7213
  extra?: {
7116
7214
  cite: string | {
7117
7215
  data: {
@@ -7640,6 +7738,7 @@ export declare const useMessageGroup: (options: {
7640
7738
  } | undefined;
7641
7739
  } | {
7642
7740
  content: string;
7741
+ createdAt?: number | string | undefined;
7643
7742
  id: number | string;
7644
7743
  messageId: number | string;
7645
7744
  name?: string | undefined;
@@ -7647,6 +7746,12 @@ export declare const useMessageGroup: (options: {
7647
7746
  status: MessageStatus;
7648
7747
  uid?: string | undefined;
7649
7748
  property?: {
7749
+ artifacts?: {
7750
+ name: string;
7751
+ outputId: string;
7752
+ size: number;
7753
+ type: string;
7754
+ }[] | undefined;
7650
7755
  extra?: {
7651
7756
  cite: string | {
7652
7757
  data: {
@@ -8176,6 +8281,7 @@ export declare const useMessageGroup: (options: {
8176
8281
  } | {
8177
8282
  duration?: number | undefined;
8178
8283
  content: string[];
8284
+ createdAt?: number | string | undefined;
8179
8285
  id: number | string;
8180
8286
  messageId: number | string;
8181
8287
  name?: string | undefined;
@@ -8183,6 +8289,12 @@ export declare const useMessageGroup: (options: {
8183
8289
  status: MessageStatus;
8184
8290
  uid?: string | undefined;
8185
8291
  property?: {
8292
+ artifacts?: {
8293
+ name: string;
8294
+ outputId: string;
8295
+ size: number;
8296
+ type: string;
8297
+ }[] | undefined;
8186
8298
  extra?: {
8187
8299
  cite: string | {
8188
8300
  data: {
@@ -8711,6 +8823,7 @@ export declare const useMessageGroup: (options: {
8711
8823
  } | undefined;
8712
8824
  } | {
8713
8825
  content: string;
8826
+ createdAt?: number | string | undefined;
8714
8827
  id: number | string;
8715
8828
  messageId: number | string;
8716
8829
  name?: string | undefined;
@@ -8718,6 +8831,12 @@ export declare const useMessageGroup: (options: {
8718
8831
  status: MessageStatus;
8719
8832
  uid?: string | undefined;
8720
8833
  property?: {
8834
+ artifacts?: {
8835
+ name: string;
8836
+ outputId: string;
8837
+ size: number;
8838
+ type: string;
8839
+ }[] | undefined;
8721
8840
  extra?: {
8722
8841
  cite: string | {
8723
8842
  data: {
@@ -9246,6 +9365,7 @@ export declare const useMessageGroup: (options: {
9246
9365
  } | undefined;
9247
9366
  } | {
9248
9367
  content: string;
9368
+ createdAt?: number | string | undefined;
9249
9369
  id: number | string;
9250
9370
  messageId: number | string;
9251
9371
  name?: string | undefined;
@@ -9253,6 +9373,12 @@ export declare const useMessageGroup: (options: {
9253
9373
  status: MessageStatus;
9254
9374
  uid?: string | undefined;
9255
9375
  property?: {
9376
+ artifacts?: {
9377
+ name: string;
9378
+ outputId: string;
9379
+ size: number;
9380
+ type: string;
9381
+ }[] | undefined;
9256
9382
  extra?: {
9257
9383
  cite: string | {
9258
9384
  data: {
@@ -9781,6 +9907,7 @@ export declare const useMessageGroup: (options: {
9781
9907
  } | undefined;
9782
9908
  } | {
9783
9909
  content: string;
9910
+ createdAt?: number | string | undefined;
9784
9911
  id: number | string;
9785
9912
  messageId: number | string;
9786
9913
  name?: string | undefined;
@@ -9788,6 +9915,12 @@ export declare const useMessageGroup: (options: {
9788
9915
  status: MessageStatus;
9789
9916
  uid?: string | undefined;
9790
9917
  property?: {
9918
+ artifacts?: {
9919
+ name: string;
9920
+ outputId: string;
9921
+ size: number;
9922
+ type: string;
9923
+ }[] | undefined;
9791
9924
  extra?: {
9792
9925
  cite: string | {
9793
9926
  data: {
@@ -10316,6 +10449,7 @@ export declare const useMessageGroup: (options: {
10316
10449
  } | undefined;
10317
10450
  } | {
10318
10451
  content: string;
10452
+ createdAt?: number | string | undefined;
10319
10453
  id: number | string;
10320
10454
  messageId: number | string;
10321
10455
  name?: string | undefined;
@@ -10323,6 +10457,12 @@ export declare const useMessageGroup: (options: {
10323
10457
  status: MessageStatus;
10324
10458
  uid?: string | undefined;
10325
10459
  property?: {
10460
+ artifacts?: {
10461
+ name: string;
10462
+ outputId: string;
10463
+ size: number;
10464
+ type: string;
10465
+ }[] | undefined;
10326
10466
  extra?: {
10327
10467
  cite: string | {
10328
10468
  data: {
@@ -10851,6 +10991,7 @@ export declare const useMessageGroup: (options: {
10851
10991
  } | undefined;
10852
10992
  } | {
10853
10993
  content: string;
10994
+ createdAt?: number | string | undefined;
10854
10995
  id: number | string;
10855
10996
  messageId: number | string;
10856
10997
  name?: string | undefined;
@@ -10858,6 +10999,12 @@ export declare const useMessageGroup: (options: {
10858
10999
  status: MessageStatus;
10859
11000
  uid?: string | undefined;
10860
11001
  property?: {
11002
+ artifacts?: {
11003
+ name: string;
11004
+ outputId: string;
11005
+ size: number;
11006
+ type: string;
11007
+ }[] | undefined;
10861
11008
  extra?: {
10862
11009
  cite: string | {
10863
11010
  data: {
@@ -11386,6 +11533,7 @@ export declare const useMessageGroup: (options: {
11386
11533
  } | undefined;
11387
11534
  } | {
11388
11535
  content: string;
11536
+ createdAt?: number | string | undefined;
11389
11537
  id: number | string;
11390
11538
  messageId: number | string;
11391
11539
  name?: string | undefined;
@@ -11393,6 +11541,12 @@ export declare const useMessageGroup: (options: {
11393
11541
  status: MessageStatus;
11394
11542
  uid?: string | undefined;
11395
11543
  property?: {
11544
+ artifacts?: {
11545
+ name: string;
11546
+ outputId: string;
11547
+ size: number;
11548
+ type: string;
11549
+ }[] | undefined;
11396
11550
  extra?: {
11397
11551
  cite: string | {
11398
11552
  data: {
@@ -11924,6 +12078,7 @@ export declare const useMessageGroup: (options: {
11924
12078
  error?: boolean | string | undefined;
11925
12079
  toolCallId: string;
11926
12080
  content: string;
12081
+ createdAt?: number | string | undefined;
11927
12082
  id: number | string;
11928
12083
  messageId: number | string;
11929
12084
  name?: string | undefined;
@@ -11931,6 +12086,12 @@ export declare const useMessageGroup: (options: {
11931
12086
  status: MessageStatus;
11932
12087
  uid?: string | undefined;
11933
12088
  property?: {
12089
+ artifacts?: {
12090
+ name: string;
12091
+ outputId: string;
12092
+ size: number;
12093
+ type: string;
12094
+ }[] | undefined;
11934
12095
  extra?: {
11935
12096
  cite: string | {
11936
12097
  data: {
@@ -12469,6 +12630,7 @@ export declare const useMessageGroup: (options: {
12469
12630
  text: string;
12470
12631
  type: MessageContentType.Text;
12471
12632
  })[];
12633
+ createdAt?: number | string | undefined;
12472
12634
  id: number | string;
12473
12635
  messageId: number | string;
12474
12636
  name?: string | undefined;
@@ -12476,6 +12638,12 @@ export declare const useMessageGroup: (options: {
12476
12638
  status: MessageStatus;
12477
12639
  uid?: string | undefined;
12478
12640
  property?: {
12641
+ artifacts?: {
12642
+ name: string;
12643
+ outputId: string;
12644
+ size: number;
12645
+ type: string;
12646
+ }[] | undefined;
12479
12647
  extra?: {
12480
12648
  cite: string | {
12481
12649
  data: {
@@ -13040,6 +13208,7 @@ export declare const useMessageGroup: (options: {
13040
13208
  originFile: string;
13041
13209
  url: string;
13042
13210
  }[];
13211
+ createdAt?: number | string | undefined;
13043
13212
  id: number | string;
13044
13213
  messageId: number | string;
13045
13214
  name?: string | undefined;
@@ -13047,6 +13216,12 @@ export declare const useMessageGroup: (options: {
13047
13216
  status: MessageStatus;
13048
13217
  uid?: string | undefined;
13049
13218
  property?: {
13219
+ artifacts?: {
13220
+ name: string;
13221
+ outputId: string;
13222
+ size: number;
13223
+ type: string;
13224
+ }[] | undefined;
13050
13225
  extra?: {
13051
13226
  cite: string | {
13052
13227
  data: {
@@ -13587,6 +13762,7 @@ export declare const useMessageGroup: (options: {
13587
13762
  error?: boolean | string | undefined;
13588
13763
  toolCallId?: string | undefined;
13589
13764
  content?: string | undefined;
13765
+ createdAt?: number | string | undefined;
13590
13766
  id?: string | number | undefined;
13591
13767
  messageId?: string | number | undefined;
13592
13768
  name?: string | undefined;
@@ -13594,6 +13770,12 @@ export declare const useMessageGroup: (options: {
13594
13770
  status?: MessageStatus | undefined;
13595
13771
  uid?: string | undefined;
13596
13772
  property?: {
13773
+ artifacts?: {
13774
+ name: string;
13775
+ outputId: string;
13776
+ size: number;
13777
+ type: string;
13778
+ }[] | undefined;
13597
13779
  extra?: {
13598
13780
  cite: string | {
13599
13781
  data: {
@@ -14124,6 +14306,7 @@ export declare const useMessageGroup: (options: {
14124
14306
  type: MessageContentType.Function;
14125
14307
  }[] | undefined;
14126
14308
  content: string;
14309
+ createdAt?: number | string | undefined;
14127
14310
  id: number | string;
14128
14311
  messageId: number | string;
14129
14312
  name?: string | undefined;
@@ -14131,6 +14314,12 @@ export declare const useMessageGroup: (options: {
14131
14314
  status: MessageStatus;
14132
14315
  uid?: string | undefined;
14133
14316
  property?: {
14317
+ artifacts?: {
14318
+ name: string;
14319
+ outputId: string;
14320
+ size: number;
14321
+ type: string;
14322
+ }[] | undefined;
14134
14323
  extra?: {
14135
14324
  cite: string | {
14136
14325
  data: {
@@ -14659,6 +14848,7 @@ export declare const useMessageGroup: (options: {
14659
14848
  } | undefined;
14660
14849
  } | {
14661
14850
  content: string;
14851
+ createdAt?: number | string | undefined;
14662
14852
  id: number | string;
14663
14853
  messageId: number | string;
14664
14854
  name?: string | undefined;
@@ -14666,6 +14856,12 @@ export declare const useMessageGroup: (options: {
14666
14856
  status: MessageStatus;
14667
14857
  uid?: string | undefined;
14668
14858
  property?: {
14859
+ artifacts?: {
14860
+ name: string;
14861
+ outputId: string;
14862
+ size: number;
14863
+ type: string;
14864
+ }[] | undefined;
14669
14865
  extra?: {
14670
14866
  cite: string | {
14671
14867
  data: {
@@ -15194,6 +15390,7 @@ export declare const useMessageGroup: (options: {
15194
15390
  } | undefined;
15195
15391
  } | {
15196
15392
  content: string;
15393
+ createdAt?: number | string | undefined;
15197
15394
  id: number | string;
15198
15395
  messageId: number | string;
15199
15396
  name?: string | undefined;
@@ -15201,6 +15398,12 @@ export declare const useMessageGroup: (options: {
15201
15398
  status: MessageStatus;
15202
15399
  uid?: string | undefined;
15203
15400
  property?: {
15401
+ artifacts?: {
15402
+ name: string;
15403
+ outputId: string;
15404
+ size: number;
15405
+ type: string;
15406
+ }[] | undefined;
15204
15407
  extra?: {
15205
15408
  cite: string | {
15206
15409
  data: {
@@ -15729,6 +15932,7 @@ export declare const useMessageGroup: (options: {
15729
15932
  } | undefined;
15730
15933
  } | {
15731
15934
  content: string;
15935
+ createdAt?: number | string | undefined;
15732
15936
  id: number | string;
15733
15937
  messageId: number | string;
15734
15938
  name?: string | undefined;
@@ -15736,6 +15940,12 @@ export declare const useMessageGroup: (options: {
15736
15940
  status: MessageStatus;
15737
15941
  uid?: string | undefined;
15738
15942
  property?: {
15943
+ artifacts?: {
15944
+ name: string;
15945
+ outputId: string;
15946
+ size: number;
15947
+ type: string;
15948
+ }[] | undefined;
15739
15949
  extra?: {
15740
15950
  cite: string | {
15741
15951
  data: {
@@ -16264,6 +16474,7 @@ export declare const useMessageGroup: (options: {
16264
16474
  } | undefined;
16265
16475
  } | {
16266
16476
  content: string;
16477
+ createdAt?: number | string | undefined;
16267
16478
  id: number | string;
16268
16479
  messageId: number | string;
16269
16480
  name?: string | undefined;
@@ -16271,6 +16482,12 @@ export declare const useMessageGroup: (options: {
16271
16482
  status: MessageStatus;
16272
16483
  uid?: string | undefined;
16273
16484
  property?: {
16485
+ artifacts?: {
16486
+ name: string;
16487
+ outputId: string;
16488
+ size: number;
16489
+ type: string;
16490
+ }[] | undefined;
16274
16491
  extra?: {
16275
16492
  cite: string | {
16276
16493
  data: {
@@ -16799,6 +17016,7 @@ export declare const useMessageGroup: (options: {
16799
17016
  } | undefined;
16800
17017
  } | {
16801
17018
  content: string;
17019
+ createdAt?: number | string | undefined;
16802
17020
  id: number | string;
16803
17021
  messageId: number | string;
16804
17022
  name?: string | undefined;
@@ -16806,6 +17024,12 @@ export declare const useMessageGroup: (options: {
16806
17024
  status: MessageStatus;
16807
17025
  uid?: string | undefined;
16808
17026
  property?: {
17027
+ artifacts?: {
17028
+ name: string;
17029
+ outputId: string;
17030
+ size: number;
17031
+ type: string;
17032
+ }[] | undefined;
16809
17033
  extra?: {
16810
17034
  cite: string | {
16811
17035
  data: {
@@ -17334,6 +17558,7 @@ export declare const useMessageGroup: (options: {
17334
17558
  } | undefined;
17335
17559
  } | {
17336
17560
  content: string;
17561
+ createdAt?: number | string | undefined;
17337
17562
  id: number | string;
17338
17563
  messageId: number | string;
17339
17564
  name?: string | undefined;
@@ -17341,6 +17566,12 @@ export declare const useMessageGroup: (options: {
17341
17566
  status: MessageStatus;
17342
17567
  uid?: string | undefined;
17343
17568
  property?: {
17569
+ artifacts?: {
17570
+ name: string;
17571
+ outputId: string;
17572
+ size: number;
17573
+ type: string;
17574
+ }[] | undefined;
17344
17575
  extra?: {
17345
17576
  cite: string | {
17346
17577
  data: {
@@ -17869,6 +18100,7 @@ export declare const useMessageGroup: (options: {
17869
18100
  } | undefined;
17870
18101
  } | {
17871
18102
  content: string;
18103
+ createdAt?: number | string | undefined;
17872
18104
  id: number | string;
17873
18105
  messageId: number | string;
17874
18106
  name?: string | undefined;
@@ -17876,6 +18108,12 @@ export declare const useMessageGroup: (options: {
17876
18108
  status: MessageStatus;
17877
18109
  uid?: string | undefined;
17878
18110
  property?: {
18111
+ artifacts?: {
18112
+ name: string;
18113
+ outputId: string;
18114
+ size: number;
18115
+ type: string;
18116
+ }[] | undefined;
17879
18117
  extra?: {
17880
18118
  cite: string | {
17881
18119
  data: {
@@ -18404,6 +18642,7 @@ export declare const useMessageGroup: (options: {
18404
18642
  } | undefined;
18405
18643
  } | {
18406
18644
  content: string;
18645
+ createdAt?: number | string | undefined;
18407
18646
  id: number | string;
18408
18647
  messageId: number | string;
18409
18648
  name?: string | undefined;
@@ -18411,6 +18650,12 @@ export declare const useMessageGroup: (options: {
18411
18650
  status: MessageStatus;
18412
18651
  uid?: string | undefined;
18413
18652
  property?: {
18653
+ artifacts?: {
18654
+ name: string;
18655
+ outputId: string;
18656
+ size: number;
18657
+ type: string;
18658
+ }[] | undefined;
18414
18659
  extra?: {
18415
18660
  cite: string | {
18416
18661
  data: {
@@ -18939,6 +19184,7 @@ export declare const useMessageGroup: (options: {
18939
19184
  } | undefined;
18940
19185
  } | {
18941
19186
  content: string;
19187
+ createdAt?: number | string | undefined;
18942
19188
  id: number | string;
18943
19189
  messageId: number | string;
18944
19190
  name?: string | undefined;
@@ -18946,6 +19192,12 @@ export declare const useMessageGroup: (options: {
18946
19192
  status: MessageStatus;
18947
19193
  uid?: string | undefined;
18948
19194
  property?: {
19195
+ artifacts?: {
19196
+ name: string;
19197
+ outputId: string;
19198
+ size: number;
19199
+ type: string;
19200
+ }[] | undefined;
18949
19201
  extra?: {
18950
19202
  cite: string | {
18951
19203
  data: {
@@ -19560,6 +19812,7 @@ export declare const useMessageGroup: (options: {
19560
19812
  runId?: string | undefined;
19561
19813
  threadId?: string | undefined;
19562
19814
  };
19815
+ createdAt?: number | string | undefined;
19563
19816
  id: number | string;
19564
19817
  messageId: number | string;
19565
19818
  name?: string | undefined;
@@ -19567,6 +19820,12 @@ export declare const useMessageGroup: (options: {
19567
19820
  status: MessageStatus;
19568
19821
  uid?: string | undefined;
19569
19822
  property?: {
19823
+ artifacts?: {
19824
+ name: string;
19825
+ outputId: string;
19826
+ size: number;
19827
+ type: string;
19828
+ }[] | undefined;
19570
19829
  extra?: {
19571
19830
  cite: string | {
19572
19831
  data: {
@@ -20095,6 +20354,7 @@ export declare const useMessageGroup: (options: {
20095
20354
  } | undefined;
20096
20355
  } | {
20097
20356
  content: string;
20357
+ createdAt?: number | string | undefined;
20098
20358
  id: number | string;
20099
20359
  messageId: number | string;
20100
20360
  name?: string | undefined;
@@ -20102,6 +20362,12 @@ export declare const useMessageGroup: (options: {
20102
20362
  status: MessageStatus;
20103
20363
  uid?: string | undefined;
20104
20364
  property?: {
20365
+ artifacts?: {
20366
+ name: string;
20367
+ outputId: string;
20368
+ size: number;
20369
+ type: string;
20370
+ }[] | undefined;
20105
20371
  extra?: {
20106
20372
  cite: string | {
20107
20373
  data: {
@@ -20630,6 +20896,7 @@ export declare const useMessageGroup: (options: {
20630
20896
  } | undefined;
20631
20897
  } | {
20632
20898
  content: string;
20899
+ createdAt?: number | string | undefined;
20633
20900
  id: number | string;
20634
20901
  messageId: number | string;
20635
20902
  name?: string | undefined;
@@ -20637,6 +20904,12 @@ export declare const useMessageGroup: (options: {
20637
20904
  status: MessageStatus;
20638
20905
  uid?: string | undefined;
20639
20906
  property?: {
20907
+ artifacts?: {
20908
+ name: string;
20909
+ outputId: string;
20910
+ size: number;
20911
+ type: string;
20912
+ }[] | undefined;
20640
20913
  extra?: {
20641
20914
  cite: string | {
20642
20915
  data: {
@@ -21166,6 +21439,7 @@ export declare const useMessageGroup: (options: {
21166
21439
  } | {
21167
21440
  duration?: number | undefined;
21168
21441
  content: string[];
21442
+ createdAt?: number | string | undefined;
21169
21443
  id: number | string;
21170
21444
  messageId: number | string;
21171
21445
  name?: string | undefined;
@@ -21173,6 +21447,12 @@ export declare const useMessageGroup: (options: {
21173
21447
  status: MessageStatus;
21174
21448
  uid?: string | undefined;
21175
21449
  property?: {
21450
+ artifacts?: {
21451
+ name: string;
21452
+ outputId: string;
21453
+ size: number;
21454
+ type: string;
21455
+ }[] | undefined;
21176
21456
  extra?: {
21177
21457
  cite: string | {
21178
21458
  data: {
@@ -21701,6 +21981,7 @@ export declare const useMessageGroup: (options: {
21701
21981
  } | undefined;
21702
21982
  } | {
21703
21983
  content: string;
21984
+ createdAt?: number | string | undefined;
21704
21985
  id: number | string;
21705
21986
  messageId: number | string;
21706
21987
  name?: string | undefined;
@@ -21708,6 +21989,12 @@ export declare const useMessageGroup: (options: {
21708
21989
  status: MessageStatus;
21709
21990
  uid?: string | undefined;
21710
21991
  property?: {
21992
+ artifacts?: {
21993
+ name: string;
21994
+ outputId: string;
21995
+ size: number;
21996
+ type: string;
21997
+ }[] | undefined;
21711
21998
  extra?: {
21712
21999
  cite: string | {
21713
22000
  data: {
@@ -22236,6 +22523,7 @@ export declare const useMessageGroup: (options: {
22236
22523
  } | undefined;
22237
22524
  } | {
22238
22525
  content: string;
22526
+ createdAt?: number | string | undefined;
22239
22527
  id: number | string;
22240
22528
  messageId: number | string;
22241
22529
  name?: string | undefined;
@@ -22243,6 +22531,12 @@ export declare const useMessageGroup: (options: {
22243
22531
  status: MessageStatus;
22244
22532
  uid?: string | undefined;
22245
22533
  property?: {
22534
+ artifacts?: {
22535
+ name: string;
22536
+ outputId: string;
22537
+ size: number;
22538
+ type: string;
22539
+ }[] | undefined;
22246
22540
  extra?: {
22247
22541
  cite: string | {
22248
22542
  data: {
@@ -22771,6 +23065,7 @@ export declare const useMessageGroup: (options: {
22771
23065
  } | undefined;
22772
23066
  } | {
22773
23067
  content: string;
23068
+ createdAt?: number | string | undefined;
22774
23069
  id: number | string;
22775
23070
  messageId: number | string;
22776
23071
  name?: string | undefined;
@@ -22778,6 +23073,12 @@ export declare const useMessageGroup: (options: {
22778
23073
  status: MessageStatus;
22779
23074
  uid?: string | undefined;
22780
23075
  property?: {
23076
+ artifacts?: {
23077
+ name: string;
23078
+ outputId: string;
23079
+ size: number;
23080
+ type: string;
23081
+ }[] | undefined;
22781
23082
  extra?: {
22782
23083
  cite: string | {
22783
23084
  data: {
@@ -23306,6 +23607,7 @@ export declare const useMessageGroup: (options: {
23306
23607
  } | undefined;
23307
23608
  } | {
23308
23609
  content: string;
23610
+ createdAt?: number | string | undefined;
23309
23611
  id: number | string;
23310
23612
  messageId: number | string;
23311
23613
  name?: string | undefined;
@@ -23313,6 +23615,12 @@ export declare const useMessageGroup: (options: {
23313
23615
  status: MessageStatus;
23314
23616
  uid?: string | undefined;
23315
23617
  property?: {
23618
+ artifacts?: {
23619
+ name: string;
23620
+ outputId: string;
23621
+ size: number;
23622
+ type: string;
23623
+ }[] | undefined;
23316
23624
  extra?: {
23317
23625
  cite: string | {
23318
23626
  data: {
@@ -23841,6 +24149,7 @@ export declare const useMessageGroup: (options: {
23841
24149
  } | undefined;
23842
24150
  } | {
23843
24151
  content: string;
24152
+ createdAt?: number | string | undefined;
23844
24153
  id: number | string;
23845
24154
  messageId: number | string;
23846
24155
  name?: string | undefined;
@@ -23848,6 +24157,12 @@ export declare const useMessageGroup: (options: {
23848
24157
  status: MessageStatus;
23849
24158
  uid?: string | undefined;
23850
24159
  property?: {
24160
+ artifacts?: {
24161
+ name: string;
24162
+ outputId: string;
24163
+ size: number;
24164
+ type: string;
24165
+ }[] | undefined;
23851
24166
  extra?: {
23852
24167
  cite: string | {
23853
24168
  data: {
@@ -24376,6 +24691,7 @@ export declare const useMessageGroup: (options: {
24376
24691
  } | undefined;
24377
24692
  } | {
24378
24693
  content: string;
24694
+ createdAt?: number | string | undefined;
24379
24695
  id: number | string;
24380
24696
  messageId: number | string;
24381
24697
  name?: string | undefined;
@@ -24383,6 +24699,12 @@ export declare const useMessageGroup: (options: {
24383
24699
  status: MessageStatus;
24384
24700
  uid?: string | undefined;
24385
24701
  property?: {
24702
+ artifacts?: {
24703
+ name: string;
24704
+ outputId: string;
24705
+ size: number;
24706
+ type: string;
24707
+ }[] | undefined;
24386
24708
  extra?: {
24387
24709
  cite: string | {
24388
24710
  data: {
@@ -24914,6 +25236,7 @@ export declare const useMessageGroup: (options: {
24914
25236
  error?: boolean | string | undefined;
24915
25237
  toolCallId: string;
24916
25238
  content: string;
25239
+ createdAt?: number | string | undefined;
24917
25240
  id: number | string;
24918
25241
  messageId: number | string;
24919
25242
  name?: string | undefined;
@@ -24921,6 +25244,12 @@ export declare const useMessageGroup: (options: {
24921
25244
  status: MessageStatus;
24922
25245
  uid?: string | undefined;
24923
25246
  property?: {
25247
+ artifacts?: {
25248
+ name: string;
25249
+ outputId: string;
25250
+ size: number;
25251
+ type: string;
25252
+ }[] | undefined;
24924
25253
  extra?: {
24925
25254
  cite: string | {
24926
25255
  data: {
@@ -25459,6 +25788,7 @@ export declare const useMessageGroup: (options: {
25459
25788
  text: string;
25460
25789
  type: MessageContentType.Text;
25461
25790
  })[];
25791
+ createdAt?: number | string | undefined;
25462
25792
  id: number | string;
25463
25793
  messageId: number | string;
25464
25794
  name?: string | undefined;
@@ -25466,6 +25796,12 @@ export declare const useMessageGroup: (options: {
25466
25796
  status: MessageStatus;
25467
25797
  uid?: string | undefined;
25468
25798
  property?: {
25799
+ artifacts?: {
25800
+ name: string;
25801
+ outputId: string;
25802
+ size: number;
25803
+ type: string;
25804
+ }[] | undefined;
25469
25805
  extra?: {
25470
25806
  cite: string | {
25471
25807
  data: {
@@ -26000,6 +26336,7 @@ export declare const useMessageGroup: (options: {
26000
26336
  userMessageTitle?: number | string | undefined;
26001
26337
  }[]>;
26002
26338
  executionGroups: ComputedRef<MessageGroup[]>;
26339
+ sessionArtifacts: ComputedRef<import("..").AIFileInfo[]>;
26003
26340
  activeUserQuestionInterrupt: ComputedRef<UserQuestionInterrupt | undefined>;
26004
26341
  pendingApprovalCount: ComputedRef<number>;
26005
26342
  pendingApprovalTipText: ComputedRef<string>;
@@ -26036,6 +26373,7 @@ export declare const useMessageGroup: (options: {
26036
26373
  originFile: string;
26037
26374
  url: string;
26038
26375
  }[];
26376
+ createdAt?: number | string | undefined;
26039
26377
  id: number | string;
26040
26378
  messageId: number | string;
26041
26379
  name?: string | undefined;
@@ -26043,6 +26381,12 @@ export declare const useMessageGroup: (options: {
26043
26381
  status: MessageStatus;
26044
26382
  uid?: string | undefined;
26045
26383
  property?: {
26384
+ artifacts?: {
26385
+ name: string;
26386
+ outputId: string;
26387
+ size: number;
26388
+ type: string;
26389
+ }[] | undefined;
26046
26390
  extra?: {
26047
26391
  cite: string | {
26048
26392
  data: {
@@ -26583,6 +26927,7 @@ export declare const useMessageGroup: (options: {
26583
26927
  error?: boolean | string | undefined;
26584
26928
  toolCallId?: string | undefined;
26585
26929
  content?: string | undefined;
26930
+ createdAt?: number | string | undefined;
26586
26931
  id?: string | number | undefined;
26587
26932
  messageId?: string | number | undefined;
26588
26933
  name?: string | undefined;
@@ -26590,6 +26935,12 @@ export declare const useMessageGroup: (options: {
26590
26935
  status?: MessageStatus | undefined;
26591
26936
  uid?: string | undefined;
26592
26937
  property?: {
26938
+ artifacts?: {
26939
+ name: string;
26940
+ outputId: string;
26941
+ size: number;
26942
+ type: string;
26943
+ }[] | undefined;
26593
26944
  extra?: {
26594
26945
  cite: string | {
26595
26946
  data: {
@@ -27120,6 +27471,7 @@ export declare const useMessageGroup: (options: {
27120
27471
  type: MessageContentType.Function;
27121
27472
  }[] | undefined;
27122
27473
  content: string;
27474
+ createdAt?: number | string | undefined;
27123
27475
  id: number | string;
27124
27476
  messageId: number | string;
27125
27477
  name?: string | undefined;
@@ -27127,6 +27479,12 @@ export declare const useMessageGroup: (options: {
27127
27479
  status: MessageStatus;
27128
27480
  uid?: string | undefined;
27129
27481
  property?: {
27482
+ artifacts?: {
27483
+ name: string;
27484
+ outputId: string;
27485
+ size: number;
27486
+ type: string;
27487
+ }[] | undefined;
27130
27488
  extra?: {
27131
27489
  cite: string | {
27132
27490
  data: {
@@ -27655,6 +28013,7 @@ export declare const useMessageGroup: (options: {
27655
28013
  } | undefined;
27656
28014
  } | {
27657
28015
  content: string;
28016
+ createdAt?: number | string | undefined;
27658
28017
  id: number | string;
27659
28018
  messageId: number | string;
27660
28019
  name?: string | undefined;
@@ -27662,6 +28021,12 @@ export declare const useMessageGroup: (options: {
27662
28021
  status: MessageStatus;
27663
28022
  uid?: string | undefined;
27664
28023
  property?: {
28024
+ artifacts?: {
28025
+ name: string;
28026
+ outputId: string;
28027
+ size: number;
28028
+ type: string;
28029
+ }[] | undefined;
27665
28030
  extra?: {
27666
28031
  cite: string | {
27667
28032
  data: {
@@ -28190,6 +28555,7 @@ export declare const useMessageGroup: (options: {
28190
28555
  } | undefined;
28191
28556
  } | {
28192
28557
  content: string;
28558
+ createdAt?: number | string | undefined;
28193
28559
  id: number | string;
28194
28560
  messageId: number | string;
28195
28561
  name?: string | undefined;
@@ -28197,6 +28563,12 @@ export declare const useMessageGroup: (options: {
28197
28563
  status: MessageStatus;
28198
28564
  uid?: string | undefined;
28199
28565
  property?: {
28566
+ artifacts?: {
28567
+ name: string;
28568
+ outputId: string;
28569
+ size: number;
28570
+ type: string;
28571
+ }[] | undefined;
28200
28572
  extra?: {
28201
28573
  cite: string | {
28202
28574
  data: {
@@ -28725,6 +29097,7 @@ export declare const useMessageGroup: (options: {
28725
29097
  } | undefined;
28726
29098
  } | {
28727
29099
  content: string;
29100
+ createdAt?: number | string | undefined;
28728
29101
  id: number | string;
28729
29102
  messageId: number | string;
28730
29103
  name?: string | undefined;
@@ -28732,6 +29105,12 @@ export declare const useMessageGroup: (options: {
28732
29105
  status: MessageStatus;
28733
29106
  uid?: string | undefined;
28734
29107
  property?: {
29108
+ artifacts?: {
29109
+ name: string;
29110
+ outputId: string;
29111
+ size: number;
29112
+ type: string;
29113
+ }[] | undefined;
28735
29114
  extra?: {
28736
29115
  cite: string | {
28737
29116
  data: {
@@ -29260,6 +29639,7 @@ export declare const useMessageGroup: (options: {
29260
29639
  } | undefined;
29261
29640
  } | {
29262
29641
  content: string;
29642
+ createdAt?: number | string | undefined;
29263
29643
  id: number | string;
29264
29644
  messageId: number | string;
29265
29645
  name?: string | undefined;
@@ -29267,6 +29647,12 @@ export declare const useMessageGroup: (options: {
29267
29647
  status: MessageStatus;
29268
29648
  uid?: string | undefined;
29269
29649
  property?: {
29650
+ artifacts?: {
29651
+ name: string;
29652
+ outputId: string;
29653
+ size: number;
29654
+ type: string;
29655
+ }[] | undefined;
29270
29656
  extra?: {
29271
29657
  cite: string | {
29272
29658
  data: {
@@ -29795,6 +30181,7 @@ export declare const useMessageGroup: (options: {
29795
30181
  } | undefined;
29796
30182
  } | {
29797
30183
  content: string;
30184
+ createdAt?: number | string | undefined;
29798
30185
  id: number | string;
29799
30186
  messageId: number | string;
29800
30187
  name?: string | undefined;
@@ -29802,6 +30189,12 @@ export declare const useMessageGroup: (options: {
29802
30189
  status: MessageStatus;
29803
30190
  uid?: string | undefined;
29804
30191
  property?: {
30192
+ artifacts?: {
30193
+ name: string;
30194
+ outputId: string;
30195
+ size: number;
30196
+ type: string;
30197
+ }[] | undefined;
29805
30198
  extra?: {
29806
30199
  cite: string | {
29807
30200
  data: {
@@ -30330,6 +30723,7 @@ export declare const useMessageGroup: (options: {
30330
30723
  } | undefined;
30331
30724
  } | {
30332
30725
  content: string;
30726
+ createdAt?: number | string | undefined;
30333
30727
  id: number | string;
30334
30728
  messageId: number | string;
30335
30729
  name?: string | undefined;
@@ -30337,6 +30731,12 @@ export declare const useMessageGroup: (options: {
30337
30731
  status: MessageStatus;
30338
30732
  uid?: string | undefined;
30339
30733
  property?: {
30734
+ artifacts?: {
30735
+ name: string;
30736
+ outputId: string;
30737
+ size: number;
30738
+ type: string;
30739
+ }[] | undefined;
30340
30740
  extra?: {
30341
30741
  cite: string | {
30342
30742
  data: {
@@ -30865,6 +31265,7 @@ export declare const useMessageGroup: (options: {
30865
31265
  } | undefined;
30866
31266
  } | {
30867
31267
  content: string;
31268
+ createdAt?: number | string | undefined;
30868
31269
  id: number | string;
30869
31270
  messageId: number | string;
30870
31271
  name?: string | undefined;
@@ -30872,6 +31273,12 @@ export declare const useMessageGroup: (options: {
30872
31273
  status: MessageStatus;
30873
31274
  uid?: string | undefined;
30874
31275
  property?: {
31276
+ artifacts?: {
31277
+ name: string;
31278
+ outputId: string;
31279
+ size: number;
31280
+ type: string;
31281
+ }[] | undefined;
30875
31282
  extra?: {
30876
31283
  cite: string | {
30877
31284
  data: {
@@ -31400,6 +31807,7 @@ export declare const useMessageGroup: (options: {
31400
31807
  } | undefined;
31401
31808
  } | {
31402
31809
  content: string;
31810
+ createdAt?: number | string | undefined;
31403
31811
  id: number | string;
31404
31812
  messageId: number | string;
31405
31813
  name?: string | undefined;
@@ -31407,6 +31815,12 @@ export declare const useMessageGroup: (options: {
31407
31815
  status: MessageStatus;
31408
31816
  uid?: string | undefined;
31409
31817
  property?: {
31818
+ artifacts?: {
31819
+ name: string;
31820
+ outputId: string;
31821
+ size: number;
31822
+ type: string;
31823
+ }[] | undefined;
31410
31824
  extra?: {
31411
31825
  cite: string | {
31412
31826
  data: {
@@ -31935,6 +32349,7 @@ export declare const useMessageGroup: (options: {
31935
32349
  } | undefined;
31936
32350
  } | {
31937
32351
  content: string;
32352
+ createdAt?: number | string | undefined;
31938
32353
  id: number | string;
31939
32354
  messageId: number | string;
31940
32355
  name?: string | undefined;
@@ -31942,6 +32357,12 @@ export declare const useMessageGroup: (options: {
31942
32357
  status: MessageStatus;
31943
32358
  uid?: string | undefined;
31944
32359
  property?: {
32360
+ artifacts?: {
32361
+ name: string;
32362
+ outputId: string;
32363
+ size: number;
32364
+ type: string;
32365
+ }[] | undefined;
31945
32366
  extra?: {
31946
32367
  cite: string | {
31947
32368
  data: {
@@ -32556,6 +32977,7 @@ export declare const useMessageGroup: (options: {
32556
32977
  runId?: string | undefined;
32557
32978
  threadId?: string | undefined;
32558
32979
  };
32980
+ createdAt?: number | string | undefined;
32559
32981
  id: number | string;
32560
32982
  messageId: number | string;
32561
32983
  name?: string | undefined;
@@ -32563,6 +32985,12 @@ export declare const useMessageGroup: (options: {
32563
32985
  status: MessageStatus;
32564
32986
  uid?: string | undefined;
32565
32987
  property?: {
32988
+ artifacts?: {
32989
+ name: string;
32990
+ outputId: string;
32991
+ size: number;
32992
+ type: string;
32993
+ }[] | undefined;
32566
32994
  extra?: {
32567
32995
  cite: string | {
32568
32996
  data: {
@@ -33091,6 +33519,7 @@ export declare const useMessageGroup: (options: {
33091
33519
  } | undefined;
33092
33520
  } | {
33093
33521
  content: string;
33522
+ createdAt?: number | string | undefined;
33094
33523
  id: number | string;
33095
33524
  messageId: number | string;
33096
33525
  name?: string | undefined;
@@ -33098,6 +33527,12 @@ export declare const useMessageGroup: (options: {
33098
33527
  status: MessageStatus;
33099
33528
  uid?: string | undefined;
33100
33529
  property?: {
33530
+ artifacts?: {
33531
+ name: string;
33532
+ outputId: string;
33533
+ size: number;
33534
+ type: string;
33535
+ }[] | undefined;
33101
33536
  extra?: {
33102
33537
  cite: string | {
33103
33538
  data: {
@@ -33626,6 +34061,7 @@ export declare const useMessageGroup: (options: {
33626
34061
  } | undefined;
33627
34062
  } | {
33628
34063
  content: string;
34064
+ createdAt?: number | string | undefined;
33629
34065
  id: number | string;
33630
34066
  messageId: number | string;
33631
34067
  name?: string | undefined;
@@ -33633,6 +34069,12 @@ export declare const useMessageGroup: (options: {
33633
34069
  status: MessageStatus;
33634
34070
  uid?: string | undefined;
33635
34071
  property?: {
34072
+ artifacts?: {
34073
+ name: string;
34074
+ outputId: string;
34075
+ size: number;
34076
+ type: string;
34077
+ }[] | undefined;
33636
34078
  extra?: {
33637
34079
  cite: string | {
33638
34080
  data: {
@@ -34162,6 +34604,7 @@ export declare const useMessageGroup: (options: {
34162
34604
  } | {
34163
34605
  duration?: number | undefined;
34164
34606
  content: string[];
34607
+ createdAt?: number | string | undefined;
34165
34608
  id: number | string;
34166
34609
  messageId: number | string;
34167
34610
  name?: string | undefined;
@@ -34169,6 +34612,12 @@ export declare const useMessageGroup: (options: {
34169
34612
  status: MessageStatus;
34170
34613
  uid?: string | undefined;
34171
34614
  property?: {
34615
+ artifacts?: {
34616
+ name: string;
34617
+ outputId: string;
34618
+ size: number;
34619
+ type: string;
34620
+ }[] | undefined;
34172
34621
  extra?: {
34173
34622
  cite: string | {
34174
34623
  data: {
@@ -34697,6 +35146,7 @@ export declare const useMessageGroup: (options: {
34697
35146
  } | undefined;
34698
35147
  } | {
34699
35148
  content: string;
35149
+ createdAt?: number | string | undefined;
34700
35150
  id: number | string;
34701
35151
  messageId: number | string;
34702
35152
  name?: string | undefined;
@@ -34704,6 +35154,12 @@ export declare const useMessageGroup: (options: {
34704
35154
  status: MessageStatus;
34705
35155
  uid?: string | undefined;
34706
35156
  property?: {
35157
+ artifacts?: {
35158
+ name: string;
35159
+ outputId: string;
35160
+ size: number;
35161
+ type: string;
35162
+ }[] | undefined;
34707
35163
  extra?: {
34708
35164
  cite: string | {
34709
35165
  data: {
@@ -35232,6 +35688,7 @@ export declare const useMessageGroup: (options: {
35232
35688
  } | undefined;
35233
35689
  } | {
35234
35690
  content: string;
35691
+ createdAt?: number | string | undefined;
35235
35692
  id: number | string;
35236
35693
  messageId: number | string;
35237
35694
  name?: string | undefined;
@@ -35239,6 +35696,12 @@ export declare const useMessageGroup: (options: {
35239
35696
  status: MessageStatus;
35240
35697
  uid?: string | undefined;
35241
35698
  property?: {
35699
+ artifacts?: {
35700
+ name: string;
35701
+ outputId: string;
35702
+ size: number;
35703
+ type: string;
35704
+ }[] | undefined;
35242
35705
  extra?: {
35243
35706
  cite: string | {
35244
35707
  data: {
@@ -35767,6 +36230,7 @@ export declare const useMessageGroup: (options: {
35767
36230
  } | undefined;
35768
36231
  } | {
35769
36232
  content: string;
36233
+ createdAt?: number | string | undefined;
35770
36234
  id: number | string;
35771
36235
  messageId: number | string;
35772
36236
  name?: string | undefined;
@@ -35774,6 +36238,12 @@ export declare const useMessageGroup: (options: {
35774
36238
  status: MessageStatus;
35775
36239
  uid?: string | undefined;
35776
36240
  property?: {
36241
+ artifacts?: {
36242
+ name: string;
36243
+ outputId: string;
36244
+ size: number;
36245
+ type: string;
36246
+ }[] | undefined;
35777
36247
  extra?: {
35778
36248
  cite: string | {
35779
36249
  data: {
@@ -36302,6 +36772,7 @@ export declare const useMessageGroup: (options: {
36302
36772
  } | undefined;
36303
36773
  } | {
36304
36774
  content: string;
36775
+ createdAt?: number | string | undefined;
36305
36776
  id: number | string;
36306
36777
  messageId: number | string;
36307
36778
  name?: string | undefined;
@@ -36309,6 +36780,12 @@ export declare const useMessageGroup: (options: {
36309
36780
  status: MessageStatus;
36310
36781
  uid?: string | undefined;
36311
36782
  property?: {
36783
+ artifacts?: {
36784
+ name: string;
36785
+ outputId: string;
36786
+ size: number;
36787
+ type: string;
36788
+ }[] | undefined;
36312
36789
  extra?: {
36313
36790
  cite: string | {
36314
36791
  data: {
@@ -36837,6 +37314,7 @@ export declare const useMessageGroup: (options: {
36837
37314
  } | undefined;
36838
37315
  } | {
36839
37316
  content: string;
37317
+ createdAt?: number | string | undefined;
36840
37318
  id: number | string;
36841
37319
  messageId: number | string;
36842
37320
  name?: string | undefined;
@@ -36844,6 +37322,12 @@ export declare const useMessageGroup: (options: {
36844
37322
  status: MessageStatus;
36845
37323
  uid?: string | undefined;
36846
37324
  property?: {
37325
+ artifacts?: {
37326
+ name: string;
37327
+ outputId: string;
37328
+ size: number;
37329
+ type: string;
37330
+ }[] | undefined;
36847
37331
  extra?: {
36848
37332
  cite: string | {
36849
37333
  data: {
@@ -37372,6 +37856,7 @@ export declare const useMessageGroup: (options: {
37372
37856
  } | undefined;
37373
37857
  } | {
37374
37858
  content: string;
37859
+ createdAt?: number | string | undefined;
37375
37860
  id: number | string;
37376
37861
  messageId: number | string;
37377
37862
  name?: string | undefined;
@@ -37379,6 +37864,12 @@ export declare const useMessageGroup: (options: {
37379
37864
  status: MessageStatus;
37380
37865
  uid?: string | undefined;
37381
37866
  property?: {
37867
+ artifacts?: {
37868
+ name: string;
37869
+ outputId: string;
37870
+ size: number;
37871
+ type: string;
37872
+ }[] | undefined;
37382
37873
  extra?: {
37383
37874
  cite: string | {
37384
37875
  data: {
@@ -37910,6 +38401,7 @@ export declare const useMessageGroup: (options: {
37910
38401
  error?: boolean | string | undefined;
37911
38402
  toolCallId: string;
37912
38403
  content: string;
38404
+ createdAt?: number | string | undefined;
37913
38405
  id: number | string;
37914
38406
  messageId: number | string;
37915
38407
  name?: string | undefined;
@@ -37917,6 +38409,12 @@ export declare const useMessageGroup: (options: {
37917
38409
  status: MessageStatus;
37918
38410
  uid?: string | undefined;
37919
38411
  property?: {
38412
+ artifacts?: {
38413
+ name: string;
38414
+ outputId: string;
38415
+ size: number;
38416
+ type: string;
38417
+ }[] | undefined;
37920
38418
  extra?: {
37921
38419
  cite: string | {
37922
38420
  data: {
@@ -38455,6 +38953,7 @@ export declare const useMessageGroup: (options: {
38455
38953
  text: string;
38456
38954
  type: MessageContentType.Text;
38457
38955
  })[];
38956
+ createdAt?: number | string | undefined;
38458
38957
  id: number | string;
38459
38958
  messageId: number | string;
38460
38959
  name?: string | undefined;
@@ -38462,6 +38961,12 @@ export declare const useMessageGroup: (options: {
38462
38961
  status: MessageStatus;
38463
38962
  uid?: string | undefined;
38464
38963
  property?: {
38964
+ artifacts?: {
38965
+ name: string;
38966
+ outputId: string;
38967
+ size: number;
38968
+ type: string;
38969
+ }[] | undefined;
38465
38970
  extra?: {
38466
38971
  cite: string | {
38467
38972
  data: {