@swiss-ai-hub/web 0.301.7 → 0.302.0

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.
@@ -1024,6 +1024,12 @@ export type AgentSelector = {
1024
1024
  * Render with a sibling toggle that sets this field to null when off
1025
1025
  */
1026
1026
  nullable?: boolean;
1027
+ /**
1028
+ * Defaultenabled
1029
+ *
1030
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
1031
+ */
1032
+ defaultEnabled?: boolean | null;
1027
1033
  /**
1028
1034
  * Formkit
1029
1035
  *
@@ -1882,6 +1888,12 @@ export type CascadeSelect = {
1882
1888
  * Render with a sibling toggle that sets this field to null when off
1883
1889
  */
1884
1890
  nullable?: boolean;
1891
+ /**
1892
+ * Defaultenabled
1893
+ *
1894
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
1895
+ */
1896
+ defaultEnabled?: boolean | null;
1885
1897
  /**
1886
1898
  * Formkit
1887
1899
  *
@@ -2921,6 +2933,12 @@ export type Checkbox = {
2921
2933
  * Render with a sibling toggle that sets this field to null when off
2922
2934
  */
2923
2935
  nullable?: boolean;
2936
+ /**
2937
+ * Defaultenabled
2938
+ *
2939
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
2940
+ */
2941
+ defaultEnabled?: boolean | null;
2924
2942
  /**
2925
2943
  * Formkit
2926
2944
  *
@@ -3057,6 +3075,12 @@ export type ChipsInput = {
3057
3075
  * Render with a sibling toggle that sets this field to null when off
3058
3076
  */
3059
3077
  nullable?: boolean;
3078
+ /**
3079
+ * Defaultenabled
3080
+ *
3081
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
3082
+ */
3083
+ defaultEnabled?: boolean | null;
3060
3084
  /**
3061
3085
  * Formkit
3062
3086
  *
@@ -3320,6 +3344,12 @@ export type ColorPicker = {
3320
3344
  * Render with a sibling toggle that sets this field to null when off
3321
3345
  */
3322
3346
  nullable?: boolean;
3347
+ /**
3348
+ * Defaultenabled
3349
+ *
3350
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
3351
+ */
3352
+ defaultEnabled?: boolean | null;
3323
3353
  /**
3324
3354
  * Formkit
3325
3355
  *
@@ -3653,6 +3683,8 @@ export type ContextualizedAgentEvent = {
3653
3683
  | LlmCostEvent
3654
3684
  | ChunkEvent
3655
3685
  | ThoughtEvent
3686
+ | ConversationTitleEvent
3687
+ | FollowUpQuestionsEvent
3656
3688
  | GuardEvent
3657
3689
  | RouterEvent
3658
3690
  | GuardRejectionEvent
@@ -3732,6 +3764,57 @@ export type ControlEvent = {
3732
3764
  [key: string]: unknown;
3733
3765
  };
3734
3766
 
3767
+ /**
3768
+ * ConversationTitleEvent
3769
+ *
3770
+ * Carries a generated title for the whole conversation (thread), produced by the agent once a
3771
+ * topic becomes identifiable. The agent has the richest context about the conversation, so it
3772
+ * owns this metadata instead of leaving it to the chat UI's task model.
3773
+ *
3774
+ * A thread receives a single, stable title: the agent emits this event only on the turn where a
3775
+ * title is first determined and never again for that thread.
3776
+ */
3777
+ export type ConversationTitleEvent = {
3778
+ /**
3779
+ * Event Id
3780
+ */
3781
+ event_id?: string;
3782
+ /**
3783
+ * Created At
3784
+ *
3785
+ * The time (in ns since epoch) the event was stored in the event store
3786
+ */
3787
+ created_at?: number;
3788
+ /**
3789
+ * Display name for the event
3790
+ */
3791
+ display_name?: LocaleString | null;
3792
+ /**
3793
+ * Display description for the event
3794
+ */
3795
+ display_description?: LocaleString | null;
3796
+ /**
3797
+ * Title
3798
+ *
3799
+ * The generated title for the conversation.
3800
+ */
3801
+ title: string;
3802
+ /**
3803
+ * Event Name
3804
+ *
3805
+ * The event type name, usually the class name. If unknown, uses _unknown_event_name.
3806
+ * Used during deserialization to decide which subclass to instantiate.
3807
+ */
3808
+ readonly _event_name: string;
3809
+ /**
3810
+ * Parent Event Names
3811
+ *
3812
+ * Contains the names of all parent classes up until BaseEvent, ordered from deepest to least deep inheritance.
3813
+ */
3814
+ readonly _parent_event_names: Array<string>;
3815
+ [key: string]: unknown;
3816
+ };
3817
+
3735
3818
  /**
3736
3819
  * CreateAgentInstanceRequest
3737
3820
  *
@@ -4197,6 +4280,12 @@ export type DatePicker = {
4197
4280
  * Render with a sibling toggle that sets this field to null when off
4198
4281
  */
4199
4282
  nullable?: boolean;
4283
+ /**
4284
+ * Defaultenabled
4285
+ *
4286
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
4287
+ */
4288
+ defaultEnabled?: boolean | null;
4200
4289
  /**
4201
4290
  * Formkit
4202
4291
  *
@@ -5266,6 +5355,56 @@ export type FileFile = {
5266
5355
  [key: string]: unknown;
5267
5356
  };
5268
5357
 
5358
+ /**
5359
+ * FollowUpQuestionsEvent
5360
+ *
5361
+ * Carries follow-up questions the user might want to ask next, produced by the agent after each
5362
+ * answer. These are non-blocking UI suggestions — unlike the namespace-selection
5363
+ * ``FollowUpQuestion`` HITL events, the user is never required to answer them.
5364
+ *
5365
+ * Regenerated every turn since they depend on the latest answer.
5366
+ */
5367
+ export type FollowUpQuestionsEvent = {
5368
+ /**
5369
+ * Event Id
5370
+ */
5371
+ event_id?: string;
5372
+ /**
5373
+ * Created At
5374
+ *
5375
+ * The time (in ns since epoch) the event was stored in the event store
5376
+ */
5377
+ created_at?: number;
5378
+ /**
5379
+ * Display name for the event
5380
+ */
5381
+ display_name?: LocaleString | null;
5382
+ /**
5383
+ * Display description for the event
5384
+ */
5385
+ display_description?: LocaleString | null;
5386
+ /**
5387
+ * Questions
5388
+ *
5389
+ * The suggested follow-up questions for the user.
5390
+ */
5391
+ questions: Array<string>;
5392
+ /**
5393
+ * Event Name
5394
+ *
5395
+ * The event type name, usually the class name. If unknown, uses _unknown_event_name.
5396
+ * Used during deserialization to decide which subclass to instantiate.
5397
+ */
5398
+ readonly _event_name: string;
5399
+ /**
5400
+ * Parent Event Names
5401
+ *
5402
+ * Contains the names of all parent classes up until BaseEvent, ordered from deepest to least deep inheritance.
5403
+ */
5404
+ readonly _parent_event_names: Array<string>;
5405
+ [key: string]: unknown;
5406
+ };
5407
+
5269
5408
  /**
5270
5409
  * FullAgentInstanceDTO
5271
5410
  *
@@ -5556,6 +5695,12 @@ export type Group = {
5556
5695
  * Render with a sibling toggle that sets this field to null when off
5557
5696
  */
5558
5697
  nullable?: boolean;
5698
+ /**
5699
+ * Defaultenabled
5700
+ *
5701
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
5702
+ */
5703
+ defaultEnabled?: boolean | null;
5559
5704
  /**
5560
5705
  * $Formkit
5561
5706
  *
@@ -5846,6 +5991,12 @@ export type HtmlElement = {
5846
5991
  * Render with a sibling toggle that sets this field to null when off
5847
5992
  */
5848
5993
  nullable?: boolean;
5994
+ /**
5995
+ * Defaultenabled
5996
+ *
5997
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
5998
+ */
5999
+ defaultEnabled?: boolean | null;
5849
6000
  /**
5850
6001
  * $El
5851
6002
  *
@@ -6723,6 +6874,12 @@ export type IconSelector = {
6723
6874
  * Render with a sibling toggle that sets this field to null when off
6724
6875
  */
6725
6876
  nullable?: boolean;
6877
+ /**
6878
+ * Defaultenabled
6879
+ *
6880
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
6881
+ */
6882
+ defaultEnabled?: boolean | null;
6726
6883
  /**
6727
6884
  * Formkit
6728
6885
  *
@@ -7206,6 +7363,12 @@ export type InputMask = {
7206
7363
  * Render with a sibling toggle that sets this field to null when off
7207
7364
  */
7208
7365
  nullable?: boolean;
7366
+ /**
7367
+ * Defaultenabled
7368
+ *
7369
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
7370
+ */
7371
+ defaultEnabled?: boolean | null;
7209
7372
  /**
7210
7373
  * Formkit
7211
7374
  *
@@ -7348,6 +7511,12 @@ export type InputNumber = {
7348
7511
  * Render with a sibling toggle that sets this field to null when off
7349
7512
  */
7350
7513
  nullable?: boolean;
7514
+ /**
7515
+ * Defaultenabled
7516
+ *
7517
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
7518
+ */
7519
+ defaultEnabled?: boolean | null;
7351
7520
  /**
7352
7521
  * Formkit
7353
7522
  *
@@ -7446,13 +7615,13 @@ export type InputNumber = {
7446
7615
  *
7447
7616
  * Minimum number of fraction digits
7448
7617
  */
7449
- minFractionDigits?: number | null;
7618
+ minFractionDigits?: number;
7450
7619
  /**
7451
7620
  * Maxfractiondigits
7452
7621
  *
7453
7622
  * Maximum number of fraction digits
7454
7623
  */
7455
- maxFractionDigits?: number | null;
7624
+ maxFractionDigits?: number;
7456
7625
  /**
7457
7626
  * Locale
7458
7627
  *
@@ -7532,6 +7701,12 @@ export type InputOtp = {
7532
7701
  * Render with a sibling toggle that sets this field to null when off
7533
7702
  */
7534
7703
  nullable?: boolean;
7704
+ /**
7705
+ * Defaultenabled
7706
+ *
7707
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
7708
+ */
7709
+ defaultEnabled?: boolean | null;
7535
7710
  /**
7536
7711
  * Formkit
7537
7712
  *
@@ -7656,6 +7831,12 @@ export type InputText = {
7656
7831
  * Render with a sibling toggle that sets this field to null when off
7657
7832
  */
7658
7833
  nullable?: boolean;
7834
+ /**
7835
+ * Defaultenabled
7836
+ *
7837
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
7838
+ */
7839
+ defaultEnabled?: boolean | null;
7659
7840
  /**
7660
7841
  * Formkit
7661
7842
  *
@@ -7813,6 +7994,12 @@ export type Knob = {
7813
7994
  * Render with a sibling toggle that sets this field to null when off
7814
7995
  */
7815
7996
  nullable?: boolean;
7997
+ /**
7998
+ * Defaultenabled
7999
+ *
8000
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
8001
+ */
8002
+ defaultEnabled?: boolean | null;
7816
8003
  /**
7817
8004
  * Formkit
7818
8005
  *
@@ -7999,6 +8186,12 @@ export type KnowledgeDatabaseSelector = {
7999
8186
  * Render with a sibling toggle that sets this field to null when off
8000
8187
  */
8001
8188
  nullable?: boolean;
8189
+ /**
8190
+ * Defaultenabled
8191
+ *
8192
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
8193
+ */
8194
+ defaultEnabled?: boolean | null;
8002
8195
  /**
8003
8196
  * Formkit
8004
8197
  *
@@ -8478,6 +8671,12 @@ export type Listbox = {
8478
8671
  * Render with a sibling toggle that sets this field to null when off
8479
8672
  */
8480
8673
  nullable?: boolean;
8674
+ /**
8675
+ * Defaultenabled
8676
+ *
8677
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
8678
+ */
8679
+ defaultEnabled?: boolean | null;
8481
8680
  /**
8482
8681
  * Formkit
8483
8682
  *
@@ -8648,6 +8847,12 @@ export type LocaleInput = {
8648
8847
  * Render with a sibling toggle that sets this field to null when off
8649
8848
  */
8650
8849
  nullable?: boolean;
8850
+ /**
8851
+ * Defaultenabled
8852
+ *
8853
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
8854
+ */
8855
+ defaultEnabled?: boolean | null;
8651
8856
  /**
8652
8857
  * Formkit
8653
8858
  *
@@ -9789,6 +9994,12 @@ export type ModelSelect = {
9789
9994
  * Render with a sibling toggle that sets this field to null when off
9790
9995
  */
9791
9996
  nullable?: boolean;
9997
+ /**
9998
+ * Defaultenabled
9999
+ *
10000
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
10001
+ */
10002
+ defaultEnabled?: boolean | null;
9792
10003
  /**
9793
10004
  * Formkit
9794
10005
  *
@@ -9925,6 +10136,12 @@ export type MultiSelect = {
9925
10136
  * Render with a sibling toggle that sets this field to null when off
9926
10137
  */
9927
10138
  nullable?: boolean;
10139
+ /**
10140
+ * Defaultenabled
10141
+ *
10142
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
10143
+ */
10144
+ defaultEnabled?: boolean | null;
9928
10145
  /**
9929
10146
  * Formkit
9930
10147
  *
@@ -10381,6 +10598,12 @@ export type OrgMemoryTenantInput = {
10381
10598
  * Render with a sibling toggle that sets this field to null when off
10382
10599
  */
10383
10600
  nullable?: boolean;
10601
+ /**
10602
+ * Defaultenabled
10603
+ *
10604
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
10605
+ */
10606
+ defaultEnabled?: boolean | null;
10384
10607
  /**
10385
10608
  * Formkit
10386
10609
  *
@@ -10768,6 +10991,12 @@ export type Password = {
10768
10991
  * Render with a sibling toggle that sets this field to null when off
10769
10992
  */
10770
10993
  nullable?: boolean;
10994
+ /**
10995
+ * Defaultenabled
10996
+ *
10997
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
10998
+ */
10999
+ defaultEnabled?: boolean | null;
10771
11000
  /**
10772
11001
  * Formkit
10773
11002
  *
@@ -11597,6 +11826,12 @@ export type RadioButton = {
11597
11826
  * Render with a sibling toggle that sets this field to null when off
11598
11827
  */
11599
11828
  nullable?: boolean;
11829
+ /**
11830
+ * Defaultenabled
11831
+ *
11832
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
11833
+ */
11834
+ defaultEnabled?: boolean | null;
11600
11835
  /**
11601
11836
  * Formkit
11602
11837
  *
@@ -11723,6 +11958,12 @@ export type Rating = {
11723
11958
  * Render with a sibling toggle that sets this field to null when off
11724
11959
  */
11725
11960
  nullable?: boolean;
11961
+ /**
11962
+ * Defaultenabled
11963
+ *
11964
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
11965
+ */
11966
+ defaultEnabled?: boolean | null;
11726
11967
  /**
11727
11968
  * Formkit
11728
11969
  *
@@ -11875,6 +12116,12 @@ export type Repeater = {
11875
12116
  * Render with a sibling toggle that sets this field to null when off
11876
12117
  */
11877
12118
  nullable?: boolean;
12119
+ /**
12120
+ * Defaultenabled
12121
+ *
12122
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
12123
+ */
12124
+ defaultEnabled?: boolean | null;
11878
12125
  /**
11879
12126
  * $Formkit
11880
12127
  *
@@ -12585,6 +12832,12 @@ export type Select = {
12585
12832
  * Render with a sibling toggle that sets this field to null when off
12586
12833
  */
12587
12834
  nullable?: boolean;
12835
+ /**
12836
+ * Defaultenabled
12837
+ *
12838
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
12839
+ */
12840
+ defaultEnabled?: boolean | null;
12588
12841
  /**
12589
12842
  * Formkit
12590
12843
  *
@@ -12735,6 +12988,12 @@ export type SelectButton = {
12735
12988
  * Render with a sibling toggle that sets this field to null when off
12736
12989
  */
12737
12990
  nullable?: boolean;
12991
+ /**
12992
+ * Defaultenabled
12993
+ *
12994
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
12995
+ */
12996
+ defaultEnabled?: boolean | null;
12738
12997
  /**
12739
12998
  * Formkit
12740
12999
  *
@@ -13118,6 +13377,12 @@ export type Slider = {
13118
13377
  * Render with a sibling toggle that sets this field to null when off
13119
13378
  */
13120
13379
  nullable?: boolean;
13380
+ /**
13381
+ * Defaultenabled
13382
+ *
13383
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
13384
+ */
13385
+ defaultEnabled?: boolean | null;
13121
13386
  /**
13122
13387
  * Formkit
13123
13388
  *
@@ -13754,6 +14019,12 @@ export type Textarea = {
13754
14019
  * Render with a sibling toggle that sets this field to null when off
13755
14020
  */
13756
14021
  nullable?: boolean;
14022
+ /**
14023
+ * Defaultenabled
14024
+ *
14025
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
14026
+ */
14027
+ defaultEnabled?: boolean | null;
13757
14028
  /**
13758
14029
  * Formkit
13759
14030
  *
@@ -14144,6 +14415,12 @@ export type ToggleButton = {
14144
14415
  * Render with a sibling toggle that sets this field to null when off
14145
14416
  */
14146
14417
  nullable?: boolean;
14418
+ /**
14419
+ * Defaultenabled
14420
+ *
14421
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
14422
+ */
14423
+ defaultEnabled?: boolean | null;
14147
14424
  /**
14148
14425
  * Formkit
14149
14426
  *
@@ -14274,6 +14551,12 @@ export type ToggleSwitch = {
14274
14551
  * Render with a sibling toggle that sets this field to null when off
14275
14552
  */
14276
14553
  nullable?: boolean;
14554
+ /**
14555
+ * Defaultenabled
14556
+ *
14557
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
14558
+ */
14559
+ defaultEnabled?: boolean | null;
14277
14560
  /**
14278
14561
  * Formkit
14279
14562
  *
@@ -15324,6 +15607,12 @@ export type VectorStoreInput = {
15324
15607
  * Render with a sibling toggle that sets this field to null when off
15325
15608
  */
15326
15609
  nullable?: boolean;
15610
+ /**
15611
+ * Defaultenabled
15612
+ *
15613
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
15614
+ */
15615
+ defaultEnabled?: boolean | null;
15327
15616
  /**
15328
15617
  * Formkit
15329
15618
  *
@@ -16199,6 +16488,12 @@ export type AgentSelectorWritable = {
16199
16488
  * Render with a sibling toggle that sets this field to null when off
16200
16489
  */
16201
16490
  nullable?: boolean;
16491
+ /**
16492
+ * Defaultenabled
16493
+ *
16494
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
16495
+ */
16496
+ defaultEnabled?: boolean | null;
16202
16497
  /**
16203
16498
  * Formkit
16204
16499
  *
@@ -16658,6 +16953,12 @@ export type CascadeSelectWritable = {
16658
16953
  * Render with a sibling toggle that sets this field to null when off
16659
16954
  */
16660
16955
  nullable?: boolean;
16956
+ /**
16957
+ * Defaultenabled
16958
+ *
16959
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
16960
+ */
16961
+ defaultEnabled?: boolean | null;
16661
16962
  /**
16662
16963
  * Formkit
16663
16964
  *
@@ -16837,6 +17138,12 @@ export type CheckboxWritable = {
16837
17138
  * Render with a sibling toggle that sets this field to null when off
16838
17139
  */
16839
17140
  nullable?: boolean;
17141
+ /**
17142
+ * Defaultenabled
17143
+ *
17144
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
17145
+ */
17146
+ defaultEnabled?: boolean | null;
16840
17147
  /**
16841
17148
  * Formkit
16842
17149
  *
@@ -16969,6 +17276,12 @@ export type ChipsInputWritable = {
16969
17276
  * Render with a sibling toggle that sets this field to null when off
16970
17277
  */
16971
17278
  nullable?: boolean;
17279
+ /**
17280
+ * Defaultenabled
17281
+ *
17282
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
17283
+ */
17284
+ defaultEnabled?: boolean | null;
16972
17285
  /**
16973
17286
  * Formkit
16974
17287
  *
@@ -17106,6 +17419,12 @@ export type ColorPickerWritable = {
17106
17419
  * Render with a sibling toggle that sets this field to null when off
17107
17420
  */
17108
17421
  nullable?: boolean;
17422
+ /**
17423
+ * Defaultenabled
17424
+ *
17425
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
17426
+ */
17427
+ defaultEnabled?: boolean | null;
17109
17428
  /**
17110
17429
  * Formkit
17111
17430
  *
@@ -17361,6 +17680,8 @@ export type ContextualizedAgentEventWritable = {
17361
17680
  | LlmCostEventWritable
17362
17681
  | ChunkEventWritable
17363
17682
  | ThoughtEventWritable
17683
+ | ConversationTitleEventWritable
17684
+ | FollowUpQuestionsEventWritable
17364
17685
  | GuardEventWritable
17365
17686
  | RouterEventWritable
17366
17687
  | GuardRejectionEventWritable
@@ -17427,6 +17748,44 @@ export type ControlEventWritable = {
17427
17748
  [key: string]: unknown;
17428
17749
  };
17429
17750
 
17751
+ /**
17752
+ * ConversationTitleEvent
17753
+ *
17754
+ * Carries a generated title for the whole conversation (thread), produced by the agent once a
17755
+ * topic becomes identifiable. The agent has the richest context about the conversation, so it
17756
+ * owns this metadata instead of leaving it to the chat UI's task model.
17757
+ *
17758
+ * A thread receives a single, stable title: the agent emits this event only on the turn where a
17759
+ * title is first determined and never again for that thread.
17760
+ */
17761
+ export type ConversationTitleEventWritable = {
17762
+ /**
17763
+ * Event Id
17764
+ */
17765
+ event_id?: string;
17766
+ /**
17767
+ * Created At
17768
+ *
17769
+ * The time (in ns since epoch) the event was stored in the event store
17770
+ */
17771
+ created_at?: number;
17772
+ /**
17773
+ * Display name for the event
17774
+ */
17775
+ display_name?: LocaleString | null;
17776
+ /**
17777
+ * Display description for the event
17778
+ */
17779
+ display_description?: LocaleString | null;
17780
+ /**
17781
+ * Title
17782
+ *
17783
+ * The generated title for the conversation.
17784
+ */
17785
+ title: string;
17786
+ [key: string]: unknown;
17787
+ };
17788
+
17430
17789
  /**
17431
17790
  * DatePicker
17432
17791
  *
@@ -17457,6 +17816,12 @@ export type DatePickerWritable = {
17457
17816
  * Render with a sibling toggle that sets this field to null when off
17458
17817
  */
17459
17818
  nullable?: boolean;
17819
+ /**
17820
+ * Defaultenabled
17821
+ *
17822
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
17823
+ */
17824
+ defaultEnabled?: boolean | null;
17460
17825
  /**
17461
17826
  * Formkit
17462
17827
  *
@@ -17859,6 +18224,43 @@ export type FewShotRejectEventWritable = {
17859
18224
  [key: string]: unknown;
17860
18225
  };
17861
18226
 
18227
+ /**
18228
+ * FollowUpQuestionsEvent
18229
+ *
18230
+ * Carries follow-up questions the user might want to ask next, produced by the agent after each
18231
+ * answer. These are non-blocking UI suggestions — unlike the namespace-selection
18232
+ * ``FollowUpQuestion`` HITL events, the user is never required to answer them.
18233
+ *
18234
+ * Regenerated every turn since they depend on the latest answer.
18235
+ */
18236
+ export type FollowUpQuestionsEventWritable = {
18237
+ /**
18238
+ * Event Id
18239
+ */
18240
+ event_id?: string;
18241
+ /**
18242
+ * Created At
18243
+ *
18244
+ * The time (in ns since epoch) the event was stored in the event store
18245
+ */
18246
+ created_at?: number;
18247
+ /**
18248
+ * Display name for the event
18249
+ */
18250
+ display_name?: LocaleString | null;
18251
+ /**
18252
+ * Display description for the event
18253
+ */
18254
+ display_description?: LocaleString | null;
18255
+ /**
18256
+ * Questions
18257
+ *
18258
+ * The suggested follow-up questions for the user.
18259
+ */
18260
+ questions: Array<string>;
18261
+ [key: string]: unknown;
18262
+ };
18263
+
17862
18264
  /**
17863
18265
  * FullAgentInstanceDTO
17864
18266
  *
@@ -18088,6 +18490,12 @@ export type GroupWritable = {
18088
18490
  * Render with a sibling toggle that sets this field to null when off
18089
18491
  */
18090
18492
  nullable?: boolean;
18493
+ /**
18494
+ * Defaultenabled
18495
+ *
18496
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
18497
+ */
18498
+ defaultEnabled?: boolean | null;
18091
18499
  /**
18092
18500
  * $Formkit
18093
18501
  *
@@ -18813,6 +19221,12 @@ export type IconSelectorWritable = {
18813
19221
  * Render with a sibling toggle that sets this field to null when off
18814
19222
  */
18815
19223
  nullable?: boolean;
19224
+ /**
19225
+ * Defaultenabled
19226
+ *
19227
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
19228
+ */
19229
+ defaultEnabled?: boolean | null;
18816
19230
  /**
18817
19231
  * Formkit
18818
19232
  *
@@ -18909,6 +19323,12 @@ export type InputMaskWritable = {
18909
19323
  * Render with a sibling toggle that sets this field to null when off
18910
19324
  */
18911
19325
  nullable?: boolean;
19326
+ /**
19327
+ * Defaultenabled
19328
+ *
19329
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
19330
+ */
19331
+ defaultEnabled?: boolean | null;
18912
19332
  /**
18913
19333
  * Formkit
18914
19334
  *
@@ -19047,6 +19467,12 @@ export type InputNumberWritable = {
19047
19467
  * Render with a sibling toggle that sets this field to null when off
19048
19468
  */
19049
19469
  nullable?: boolean;
19470
+ /**
19471
+ * Defaultenabled
19472
+ *
19473
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
19474
+ */
19475
+ defaultEnabled?: boolean | null;
19050
19476
  /**
19051
19477
  * Formkit
19052
19478
  *
@@ -19145,13 +19571,13 @@ export type InputNumberWritable = {
19145
19571
  *
19146
19572
  * Minimum number of fraction digits
19147
19573
  */
19148
- minFractionDigits?: number | null;
19574
+ minFractionDigits?: number;
19149
19575
  /**
19150
19576
  * Maxfractiondigits
19151
19577
  *
19152
19578
  * Maximum number of fraction digits
19153
19579
  */
19154
- maxFractionDigits?: number | null;
19580
+ maxFractionDigits?: number;
19155
19581
  /**
19156
19582
  * Locale
19157
19583
  *
@@ -19227,6 +19653,12 @@ export type InputOtpWritable = {
19227
19653
  * Render with a sibling toggle that sets this field to null when off
19228
19654
  */
19229
19655
  nullable?: boolean;
19656
+ /**
19657
+ * Defaultenabled
19658
+ *
19659
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
19660
+ */
19661
+ defaultEnabled?: boolean | null;
19230
19662
  /**
19231
19663
  * Formkit
19232
19664
  *
@@ -19347,6 +19779,12 @@ export type InputTextWritable = {
19347
19779
  * Render with a sibling toggle that sets this field to null when off
19348
19780
  */
19349
19781
  nullable?: boolean;
19782
+ /**
19783
+ * Defaultenabled
19784
+ *
19785
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
19786
+ */
19787
+ defaultEnabled?: boolean | null;
19350
19788
  /**
19351
19789
  * Formkit
19352
19790
  *
@@ -19473,6 +19911,12 @@ export type KnobWritable = {
19473
19911
  * Render with a sibling toggle that sets this field to null when off
19474
19912
  */
19475
19913
  nullable?: boolean;
19914
+ /**
19915
+ * Defaultenabled
19916
+ *
19917
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
19918
+ */
19919
+ defaultEnabled?: boolean | null;
19476
19920
  /**
19477
19921
  * Formkit
19478
19922
  *
@@ -19655,6 +20099,12 @@ export type KnowledgeDatabaseSelectorWritable = {
19655
20099
  * Render with a sibling toggle that sets this field to null when off
19656
20100
  */
19657
20101
  nullable?: boolean;
20102
+ /**
20103
+ * Defaultenabled
20104
+ *
20105
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
20106
+ */
20107
+ defaultEnabled?: boolean | null;
19658
20108
  /**
19659
20109
  * Formkit
19660
20110
  *
@@ -20078,6 +20528,12 @@ export type ListboxWritable = {
20078
20528
  * Render with a sibling toggle that sets this field to null when off
20079
20529
  */
20080
20530
  nullable?: boolean;
20531
+ /**
20532
+ * Defaultenabled
20533
+ *
20534
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
20535
+ */
20536
+ defaultEnabled?: boolean | null;
20081
20537
  /**
20082
20538
  * Formkit
20083
20539
  *
@@ -20244,6 +20700,12 @@ export type LocaleInputWritable = {
20244
20700
  * Render with a sibling toggle that sets this field to null when off
20245
20701
  */
20246
20702
  nullable?: boolean;
20703
+ /**
20704
+ * Defaultenabled
20705
+ *
20706
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
20707
+ */
20708
+ defaultEnabled?: boolean | null;
20247
20709
  /**
20248
20710
  * Formkit
20249
20711
  *
@@ -20530,6 +20992,12 @@ export type ModelSelectWritable = {
20530
20992
  * Render with a sibling toggle that sets this field to null when off
20531
20993
  */
20532
20994
  nullable?: boolean;
20995
+ /**
20996
+ * Defaultenabled
20997
+ *
20998
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
20999
+ */
21000
+ defaultEnabled?: boolean | null;
20533
21001
  /**
20534
21002
  * Formkit
20535
21003
  *
@@ -20662,6 +21130,12 @@ export type MultiSelectWritable = {
20662
21130
  * Render with a sibling toggle that sets this field to null when off
20663
21131
  */
20664
21132
  nullable?: boolean;
21133
+ /**
21134
+ * Defaultenabled
21135
+ *
21136
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
21137
+ */
21138
+ defaultEnabled?: boolean | null;
20665
21139
  /**
20666
21140
  * Formkit
20667
21141
  *
@@ -20814,6 +21288,12 @@ export type OrgMemoryTenantInputWritable = {
20814
21288
  * Render with a sibling toggle that sets this field to null when off
20815
21289
  */
20816
21290
  nullable?: boolean;
21291
+ /**
21292
+ * Defaultenabled
21293
+ *
21294
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
21295
+ */
21296
+ defaultEnabled?: boolean | null;
20817
21297
  /**
20818
21298
  * Formkit
20819
21299
  *
@@ -21014,6 +21494,12 @@ export type PasswordWritable = {
21014
21494
  * Render with a sibling toggle that sets this field to null when off
21015
21495
  */
21016
21496
  nullable?: boolean;
21497
+ /**
21498
+ * Defaultenabled
21499
+ *
21500
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
21501
+ */
21502
+ defaultEnabled?: boolean | null;
21017
21503
  /**
21018
21504
  * Formkit
21019
21505
  *
@@ -21484,6 +21970,12 @@ export type RadioButtonWritable = {
21484
21970
  * Render with a sibling toggle that sets this field to null when off
21485
21971
  */
21486
21972
  nullable?: boolean;
21973
+ /**
21974
+ * Defaultenabled
21975
+ *
21976
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
21977
+ */
21978
+ defaultEnabled?: boolean | null;
21487
21979
  /**
21488
21980
  * Formkit
21489
21981
  *
@@ -21606,6 +22098,12 @@ export type RatingWritable = {
21606
22098
  * Render with a sibling toggle that sets this field to null when off
21607
22099
  */
21608
22100
  nullable?: boolean;
22101
+ /**
22102
+ * Defaultenabled
22103
+ *
22104
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
22105
+ */
22106
+ defaultEnabled?: boolean | null;
21609
22107
  /**
21610
22108
  * Formkit
21611
22109
  *
@@ -21754,6 +22252,12 @@ export type RepeaterWritable = {
21754
22252
  * Render with a sibling toggle that sets this field to null when off
21755
22253
  */
21756
22254
  nullable?: boolean;
22255
+ /**
22256
+ * Defaultenabled
22257
+ *
22258
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
22259
+ */
22260
+ defaultEnabled?: boolean | null;
21757
22261
  /**
21758
22262
  * $Formkit
21759
22263
  *
@@ -22241,6 +22745,12 @@ export type SelectWritable = {
22241
22745
  * Render with a sibling toggle that sets this field to null when off
22242
22746
  */
22243
22747
  nullable?: boolean;
22748
+ /**
22749
+ * Defaultenabled
22750
+ *
22751
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
22752
+ */
22753
+ defaultEnabled?: boolean | null;
22244
22754
  /**
22245
22755
  * Formkit
22246
22756
  *
@@ -22387,6 +22897,12 @@ export type SelectButtonWritable = {
22387
22897
  * Render with a sibling toggle that sets this field to null when off
22388
22898
  */
22389
22899
  nullable?: boolean;
22900
+ /**
22901
+ * Defaultenabled
22902
+ *
22903
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
22904
+ */
22905
+ defaultEnabled?: boolean | null;
22390
22906
  /**
22391
22907
  * Formkit
22392
22908
  *
@@ -22665,6 +23181,12 @@ export type SliderWritable = {
22665
23181
  * Render with a sibling toggle that sets this field to null when off
22666
23182
  */
22667
23183
  nullable?: boolean;
23184
+ /**
23185
+ * Defaultenabled
23186
+ *
23187
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
23188
+ */
23189
+ defaultEnabled?: boolean | null;
22668
23190
  /**
22669
23191
  * Formkit
22670
23192
  *
@@ -23028,6 +23550,12 @@ export type TextareaWritable = {
23028
23550
  * Render with a sibling toggle that sets this field to null when off
23029
23551
  */
23030
23552
  nullable?: boolean;
23553
+ /**
23554
+ * Defaultenabled
23555
+ *
23556
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
23557
+ */
23558
+ defaultEnabled?: boolean | null;
23031
23559
  /**
23032
23560
  * Formkit
23033
23561
  *
@@ -23334,6 +23862,12 @@ export type ToggleButtonWritable = {
23334
23862
  * Render with a sibling toggle that sets this field to null when off
23335
23863
  */
23336
23864
  nullable?: boolean;
23865
+ /**
23866
+ * Defaultenabled
23867
+ *
23868
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
23869
+ */
23870
+ defaultEnabled?: boolean | null;
23337
23871
  /**
23338
23872
  * Formkit
23339
23873
  *
@@ -23460,6 +23994,12 @@ export type ToggleSwitchWritable = {
23460
23994
  * Render with a sibling toggle that sets this field to null when off
23461
23995
  */
23462
23996
  nullable?: boolean;
23997
+ /**
23998
+ * Defaultenabled
23999
+ *
24000
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
24001
+ */
24002
+ defaultEnabled?: boolean | null;
23463
24003
  /**
23464
24004
  * Formkit
23465
24005
  *
@@ -23755,6 +24295,12 @@ export type VectorStoreInputWritable = {
23755
24295
  * Render with a sibling toggle that sets this field to null when off
23756
24296
  */
23757
24297
  nullable?: boolean;
24298
+ /**
24299
+ * Defaultenabled
24300
+ *
24301
+ * For a nullable element, whether its toggle should start enabled on a fresh form (i.e. the field's data default is non-null). Ignored for non-nullable elements.
24302
+ */
24303
+ defaultEnabled?: boolean | null;
23758
24304
  /**
23759
24305
  * Formkit
23760
24306
  *