ltcai 5.4.0 → 5.6.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.
- package/README.md +17 -15
- package/docs/CHANGELOG.md +50 -0
- package/frontend/openapi.json +677 -3
- package/frontend/src/api/client.ts +36 -0
- package/frontend/src/api/openapi.ts +573 -4
- package/frontend/src/pages/Act.tsx +202 -5
- package/frontend/src/routes.ts +1 -0
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/review_queue.py +158 -0
- package/latticeai/app_factory.py +28 -0
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +86 -1
- package/latticeai/services/review_queue.py +255 -0
- package/latticeai/services/run_executor.py +33 -0
- package/latticeai/services/triggers.py +30 -1
- package/package.json +1 -1
- package/src-tauri/Cargo.lock +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/tauri.conf.json +1 -1
- package/static/app/asset-manifest.json +5 -5
- package/static/app/assets/index-xMFu94cX.js +16 -0
- package/static/app/assets/index-xMFu94cX.js.map +1 -0
- package/static/app/assets/index-xRn29gI8.css +2 -0
- package/static/app/index.html +2 -2
- package/static/app/assets/index-C7vzwUjU.js +0 -16
- package/static/app/assets/index-C7vzwUjU.js.map +0 -1
- package/static/app/assets/index-HN4f2wbe.css +0 -2
package/frontend/openapi.json
CHANGED
|
@@ -215,6 +215,17 @@
|
|
|
215
215
|
}
|
|
216
216
|
],
|
|
217
217
|
"title": "User Nickname"
|
|
218
|
+
},
|
|
219
|
+
"workspace_id": {
|
|
220
|
+
"anyOf": [
|
|
221
|
+
{
|
|
222
|
+
"type": "string"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": "null"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"title": "Workspace Id"
|
|
218
229
|
}
|
|
219
230
|
},
|
|
220
231
|
"required": [
|
|
@@ -358,6 +369,11 @@
|
|
|
358
369
|
},
|
|
359
370
|
"ChatRequest": {
|
|
360
371
|
"properties": {
|
|
372
|
+
"allow_file_context": {
|
|
373
|
+
"default": false,
|
|
374
|
+
"title": "Allow File Context",
|
|
375
|
+
"type": "boolean"
|
|
376
|
+
},
|
|
361
377
|
"client_url": {
|
|
362
378
|
"anyOf": [
|
|
363
379
|
{
|
|
@@ -490,6 +506,44 @@
|
|
|
490
506
|
"title": "ClearRequest",
|
|
491
507
|
"type": "object"
|
|
492
508
|
},
|
|
509
|
+
"CreateReviewItemRequest": {
|
|
510
|
+
"properties": {
|
|
511
|
+
"kind": {
|
|
512
|
+
"default": "suggestion",
|
|
513
|
+
"title": "Kind",
|
|
514
|
+
"type": "string"
|
|
515
|
+
},
|
|
516
|
+
"payload": {
|
|
517
|
+
"additionalProperties": true,
|
|
518
|
+
"title": "Payload",
|
|
519
|
+
"type": "object"
|
|
520
|
+
},
|
|
521
|
+
"provenance": {
|
|
522
|
+
"additionalProperties": true,
|
|
523
|
+
"title": "Provenance",
|
|
524
|
+
"type": "object"
|
|
525
|
+
},
|
|
526
|
+
"source": {
|
|
527
|
+
"default": "workflow_run",
|
|
528
|
+
"title": "Source",
|
|
529
|
+
"type": "string"
|
|
530
|
+
},
|
|
531
|
+
"summary": {
|
|
532
|
+
"default": "",
|
|
533
|
+
"title": "Summary",
|
|
534
|
+
"type": "string"
|
|
535
|
+
},
|
|
536
|
+
"title": {
|
|
537
|
+
"title": "Title",
|
|
538
|
+
"type": "string"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"required": [
|
|
542
|
+
"title"
|
|
543
|
+
],
|
|
544
|
+
"title": "CreateReviewItemRequest",
|
|
545
|
+
"type": "object"
|
|
546
|
+
},
|
|
493
547
|
"CuAgentRequest": {
|
|
494
548
|
"properties": {
|
|
495
549
|
"conversation_id": {
|
|
@@ -1918,6 +1972,11 @@
|
|
|
1918
1972
|
},
|
|
1919
1973
|
"PullModelRequest": {
|
|
1920
1974
|
"properties": {
|
|
1975
|
+
"allow_download": {
|
|
1976
|
+
"default": false,
|
|
1977
|
+
"title": "Allow Download",
|
|
1978
|
+
"type": "boolean"
|
|
1979
|
+
},
|
|
1921
1980
|
"model": {
|
|
1922
1981
|
"title": "Model",
|
|
1923
1982
|
"type": "string"
|
|
@@ -2034,6 +2093,127 @@
|
|
|
2034
2093
|
"title": "RestoreRequest",
|
|
2035
2094
|
"type": "object"
|
|
2036
2095
|
},
|
|
2096
|
+
"ReviewItem": {
|
|
2097
|
+
"properties": {
|
|
2098
|
+
"created_at": {
|
|
2099
|
+
"anyOf": [
|
|
2100
|
+
{
|
|
2101
|
+
"type": "string"
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"type": "null"
|
|
2105
|
+
}
|
|
2106
|
+
],
|
|
2107
|
+
"title": "Created At"
|
|
2108
|
+
},
|
|
2109
|
+
"effective_status": {
|
|
2110
|
+
"title": "Effective Status",
|
|
2111
|
+
"type": "string"
|
|
2112
|
+
},
|
|
2113
|
+
"id": {
|
|
2114
|
+
"title": "Id",
|
|
2115
|
+
"type": "string"
|
|
2116
|
+
},
|
|
2117
|
+
"kind": {
|
|
2118
|
+
"default": "suggestion",
|
|
2119
|
+
"title": "Kind",
|
|
2120
|
+
"type": "string"
|
|
2121
|
+
},
|
|
2122
|
+
"payload": {
|
|
2123
|
+
"additionalProperties": true,
|
|
2124
|
+
"title": "Payload",
|
|
2125
|
+
"type": "object"
|
|
2126
|
+
},
|
|
2127
|
+
"provenance": {
|
|
2128
|
+
"additionalProperties": true,
|
|
2129
|
+
"title": "Provenance",
|
|
2130
|
+
"type": "object"
|
|
2131
|
+
},
|
|
2132
|
+
"snoozed_until": {
|
|
2133
|
+
"anyOf": [
|
|
2134
|
+
{
|
|
2135
|
+
"type": "string"
|
|
2136
|
+
},
|
|
2137
|
+
{
|
|
2138
|
+
"type": "null"
|
|
2139
|
+
}
|
|
2140
|
+
],
|
|
2141
|
+
"title": "Snoozed Until"
|
|
2142
|
+
},
|
|
2143
|
+
"source": {
|
|
2144
|
+
"default": "workflow_run",
|
|
2145
|
+
"title": "Source",
|
|
2146
|
+
"type": "string"
|
|
2147
|
+
},
|
|
2148
|
+
"status": {
|
|
2149
|
+
"title": "Status",
|
|
2150
|
+
"type": "string"
|
|
2151
|
+
},
|
|
2152
|
+
"summary": {
|
|
2153
|
+
"default": "",
|
|
2154
|
+
"title": "Summary",
|
|
2155
|
+
"type": "string"
|
|
2156
|
+
},
|
|
2157
|
+
"title": {
|
|
2158
|
+
"title": "Title",
|
|
2159
|
+
"type": "string"
|
|
2160
|
+
},
|
|
2161
|
+
"updated_at": {
|
|
2162
|
+
"anyOf": [
|
|
2163
|
+
{
|
|
2164
|
+
"type": "string"
|
|
2165
|
+
},
|
|
2166
|
+
{
|
|
2167
|
+
"type": "null"
|
|
2168
|
+
}
|
|
2169
|
+
],
|
|
2170
|
+
"title": "Updated At"
|
|
2171
|
+
},
|
|
2172
|
+
"user_email": {
|
|
2173
|
+
"anyOf": [
|
|
2174
|
+
{
|
|
2175
|
+
"type": "string"
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
"type": "null"
|
|
2179
|
+
}
|
|
2180
|
+
],
|
|
2181
|
+
"title": "User Email"
|
|
2182
|
+
},
|
|
2183
|
+
"workspace_id": {
|
|
2184
|
+
"anyOf": [
|
|
2185
|
+
{
|
|
2186
|
+
"type": "string"
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
"type": "null"
|
|
2190
|
+
}
|
|
2191
|
+
],
|
|
2192
|
+
"title": "Workspace Id"
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
"required": [
|
|
2196
|
+
"id",
|
|
2197
|
+
"status",
|
|
2198
|
+
"effective_status",
|
|
2199
|
+
"title"
|
|
2200
|
+
],
|
|
2201
|
+
"title": "ReviewItem",
|
|
2202
|
+
"type": "object"
|
|
2203
|
+
},
|
|
2204
|
+
"ReviewItemList": {
|
|
2205
|
+
"properties": {
|
|
2206
|
+
"items": {
|
|
2207
|
+
"items": {
|
|
2208
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
2209
|
+
},
|
|
2210
|
+
"title": "Items",
|
|
2211
|
+
"type": "array"
|
|
2212
|
+
}
|
|
2213
|
+
},
|
|
2214
|
+
"title": "ReviewItemList",
|
|
2215
|
+
"type": "object"
|
|
2216
|
+
},
|
|
2037
2217
|
"SQLiteToPostgresRequest": {
|
|
2038
2218
|
"properties": {
|
|
2039
2219
|
"dry_run": {
|
|
@@ -2140,6 +2320,19 @@
|
|
|
2140
2320
|
"title": "SkillInstallRequest",
|
|
2141
2321
|
"type": "object"
|
|
2142
2322
|
},
|
|
2323
|
+
"SnoozeRequest": {
|
|
2324
|
+
"properties": {
|
|
2325
|
+
"until": {
|
|
2326
|
+
"title": "Until",
|
|
2327
|
+
"type": "string"
|
|
2328
|
+
}
|
|
2329
|
+
},
|
|
2330
|
+
"required": [
|
|
2331
|
+
"until"
|
|
2332
|
+
],
|
|
2333
|
+
"title": "SnoozeRequest",
|
|
2334
|
+
"type": "object"
|
|
2335
|
+
},
|
|
2143
2336
|
"SsoConfigUpdate": {
|
|
2144
2337
|
"properties": {
|
|
2145
2338
|
"client_id": {
|
|
@@ -3028,6 +3221,17 @@
|
|
|
3028
3221
|
"title": "WorkflowImportRequest",
|
|
3029
3222
|
"type": "object"
|
|
3030
3223
|
},
|
|
3224
|
+
"WorkflowRecipeInstallRequest": {
|
|
3225
|
+
"properties": {
|
|
3226
|
+
"enabled": {
|
|
3227
|
+
"default": false,
|
|
3228
|
+
"title": "Enabled",
|
|
3229
|
+
"type": "boolean"
|
|
3230
|
+
}
|
|
3231
|
+
},
|
|
3232
|
+
"title": "WorkflowRecipeInstallRequest",
|
|
3233
|
+
"type": "object"
|
|
3234
|
+
},
|
|
3031
3235
|
"WorkflowResumeRequest": {
|
|
3032
3236
|
"properties": {
|
|
3033
3237
|
"approved": {
|
|
@@ -3553,7 +3757,7 @@
|
|
|
3553
3757
|
},
|
|
3554
3758
|
"info": {
|
|
3555
3759
|
"title": "Lattice AI Server (local)",
|
|
3556
|
-
"version": "
|
|
3760
|
+
"version": "5.6.0"
|
|
3557
3761
|
},
|
|
3558
3762
|
"openapi": "3.1.0",
|
|
3559
3763
|
"paths": {
|
|
@@ -3756,6 +3960,84 @@
|
|
|
3756
3960
|
"/admin/audit": {
|
|
3757
3961
|
"get": {
|
|
3758
3962
|
"operationId": "admin_audit_admin_audit_get",
|
|
3963
|
+
"parameters": [
|
|
3964
|
+
{
|
|
3965
|
+
"in": "query",
|
|
3966
|
+
"name": "q",
|
|
3967
|
+
"required": false,
|
|
3968
|
+
"schema": {
|
|
3969
|
+
"anyOf": [
|
|
3970
|
+
{
|
|
3971
|
+
"type": "string"
|
|
3972
|
+
},
|
|
3973
|
+
{
|
|
3974
|
+
"type": "null"
|
|
3975
|
+
}
|
|
3976
|
+
],
|
|
3977
|
+
"title": "Q"
|
|
3978
|
+
}
|
|
3979
|
+
},
|
|
3980
|
+
{
|
|
3981
|
+
"in": "query",
|
|
3982
|
+
"name": "actor",
|
|
3983
|
+
"required": false,
|
|
3984
|
+
"schema": {
|
|
3985
|
+
"anyOf": [
|
|
3986
|
+
{
|
|
3987
|
+
"type": "string"
|
|
3988
|
+
},
|
|
3989
|
+
{
|
|
3990
|
+
"type": "null"
|
|
3991
|
+
}
|
|
3992
|
+
],
|
|
3993
|
+
"title": "Actor"
|
|
3994
|
+
}
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"in": "query",
|
|
3998
|
+
"name": "action",
|
|
3999
|
+
"required": false,
|
|
4000
|
+
"schema": {
|
|
4001
|
+
"anyOf": [
|
|
4002
|
+
{
|
|
4003
|
+
"type": "string"
|
|
4004
|
+
},
|
|
4005
|
+
{
|
|
4006
|
+
"type": "null"
|
|
4007
|
+
}
|
|
4008
|
+
],
|
|
4009
|
+
"title": "Action"
|
|
4010
|
+
}
|
|
4011
|
+
},
|
|
4012
|
+
{
|
|
4013
|
+
"in": "query",
|
|
4014
|
+
"name": "severity",
|
|
4015
|
+
"required": false,
|
|
4016
|
+
"schema": {
|
|
4017
|
+
"anyOf": [
|
|
4018
|
+
{
|
|
4019
|
+
"type": "string"
|
|
4020
|
+
},
|
|
4021
|
+
{
|
|
4022
|
+
"type": "null"
|
|
4023
|
+
}
|
|
4024
|
+
],
|
|
4025
|
+
"title": "Severity"
|
|
4026
|
+
}
|
|
4027
|
+
},
|
|
4028
|
+
{
|
|
4029
|
+
"in": "query",
|
|
4030
|
+
"name": "limit",
|
|
4031
|
+
"required": false,
|
|
4032
|
+
"schema": {
|
|
4033
|
+
"default": 50,
|
|
4034
|
+
"maximum": 250,
|
|
4035
|
+
"minimum": 1,
|
|
4036
|
+
"title": "Limit",
|
|
4037
|
+
"type": "integer"
|
|
4038
|
+
}
|
|
4039
|
+
}
|
|
4040
|
+
],
|
|
3759
4041
|
"responses": {
|
|
3760
4042
|
"200": {
|
|
3761
4043
|
"content": {
|
|
@@ -3764,6 +4046,16 @@
|
|
|
3764
4046
|
}
|
|
3765
4047
|
},
|
|
3766
4048
|
"description": "Successful Response"
|
|
4049
|
+
},
|
|
4050
|
+
"422": {
|
|
4051
|
+
"content": {
|
|
4052
|
+
"application/json": {
|
|
4053
|
+
"schema": {
|
|
4054
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
4055
|
+
}
|
|
4056
|
+
}
|
|
4057
|
+
},
|
|
4058
|
+
"description": "Validation Error"
|
|
3767
4059
|
}
|
|
3768
4060
|
},
|
|
3769
4061
|
"summary": "Admin Audit"
|
|
@@ -3819,6 +4111,22 @@
|
|
|
3819
4111
|
"summary": "Admin Invite Link"
|
|
3820
4112
|
}
|
|
3821
4113
|
},
|
|
4114
|
+
"/admin/log-retention": {
|
|
4115
|
+
"get": {
|
|
4116
|
+
"operationId": "admin_log_retention_admin_log_retention_get",
|
|
4117
|
+
"responses": {
|
|
4118
|
+
"200": {
|
|
4119
|
+
"content": {
|
|
4120
|
+
"application/json": {
|
|
4121
|
+
"schema": {}
|
|
4122
|
+
}
|
|
4123
|
+
},
|
|
4124
|
+
"description": "Successful Response"
|
|
4125
|
+
}
|
|
4126
|
+
},
|
|
4127
|
+
"summary": "Admin Log Retention"
|
|
4128
|
+
}
|
|
4129
|
+
},
|
|
3822
4130
|
"/admin/policies": {
|
|
3823
4131
|
"get": {
|
|
3824
4132
|
"operationId": "admin_policies_admin_policies_get",
|
|
@@ -7256,7 +7564,310 @@
|
|
|
7256
7564
|
"summary": "Sso Login"
|
|
7257
7565
|
}
|
|
7258
7566
|
},
|
|
7259
|
-
"/
|
|
7567
|
+
"/automation/reviews": {
|
|
7568
|
+
"get": {
|
|
7569
|
+
"operationId": "list_items_automation_reviews_get",
|
|
7570
|
+
"parameters": [
|
|
7571
|
+
{
|
|
7572
|
+
"in": "query",
|
|
7573
|
+
"name": "status",
|
|
7574
|
+
"required": false,
|
|
7575
|
+
"schema": {
|
|
7576
|
+
"anyOf": [
|
|
7577
|
+
{
|
|
7578
|
+
"type": "string"
|
|
7579
|
+
},
|
|
7580
|
+
{
|
|
7581
|
+
"type": "null"
|
|
7582
|
+
}
|
|
7583
|
+
],
|
|
7584
|
+
"title": "Status"
|
|
7585
|
+
}
|
|
7586
|
+
},
|
|
7587
|
+
{
|
|
7588
|
+
"in": "query",
|
|
7589
|
+
"name": "source",
|
|
7590
|
+
"required": false,
|
|
7591
|
+
"schema": {
|
|
7592
|
+
"anyOf": [
|
|
7593
|
+
{
|
|
7594
|
+
"type": "string"
|
|
7595
|
+
},
|
|
7596
|
+
{
|
|
7597
|
+
"type": "null"
|
|
7598
|
+
}
|
|
7599
|
+
],
|
|
7600
|
+
"title": "Source"
|
|
7601
|
+
}
|
|
7602
|
+
}
|
|
7603
|
+
],
|
|
7604
|
+
"responses": {
|
|
7605
|
+
"200": {
|
|
7606
|
+
"content": {
|
|
7607
|
+
"application/json": {
|
|
7608
|
+
"schema": {
|
|
7609
|
+
"$ref": "#/components/schemas/ReviewItemList"
|
|
7610
|
+
}
|
|
7611
|
+
}
|
|
7612
|
+
},
|
|
7613
|
+
"description": "Successful Response"
|
|
7614
|
+
},
|
|
7615
|
+
"422": {
|
|
7616
|
+
"content": {
|
|
7617
|
+
"application/json": {
|
|
7618
|
+
"schema": {
|
|
7619
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7620
|
+
}
|
|
7621
|
+
}
|
|
7622
|
+
},
|
|
7623
|
+
"description": "Validation Error"
|
|
7624
|
+
}
|
|
7625
|
+
},
|
|
7626
|
+
"summary": "List Items"
|
|
7627
|
+
},
|
|
7628
|
+
"post": {
|
|
7629
|
+
"operationId": "create_item_automation_reviews_post",
|
|
7630
|
+
"requestBody": {
|
|
7631
|
+
"content": {
|
|
7632
|
+
"application/json": {
|
|
7633
|
+
"schema": {
|
|
7634
|
+
"$ref": "#/components/schemas/CreateReviewItemRequest"
|
|
7635
|
+
}
|
|
7636
|
+
}
|
|
7637
|
+
},
|
|
7638
|
+
"required": true
|
|
7639
|
+
},
|
|
7640
|
+
"responses": {
|
|
7641
|
+
"200": {
|
|
7642
|
+
"content": {
|
|
7643
|
+
"application/json": {
|
|
7644
|
+
"schema": {
|
|
7645
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
7646
|
+
}
|
|
7647
|
+
}
|
|
7648
|
+
},
|
|
7649
|
+
"description": "Successful Response"
|
|
7650
|
+
},
|
|
7651
|
+
"422": {
|
|
7652
|
+
"content": {
|
|
7653
|
+
"application/json": {
|
|
7654
|
+
"schema": {
|
|
7655
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7656
|
+
}
|
|
7657
|
+
}
|
|
7658
|
+
},
|
|
7659
|
+
"description": "Validation Error"
|
|
7660
|
+
}
|
|
7661
|
+
},
|
|
7662
|
+
"summary": "Create Item"
|
|
7663
|
+
}
|
|
7664
|
+
},
|
|
7665
|
+
"/automation/reviews/{item_id}": {
|
|
7666
|
+
"get": {
|
|
7667
|
+
"operationId": "get_item_automation_reviews__item_id__get",
|
|
7668
|
+
"parameters": [
|
|
7669
|
+
{
|
|
7670
|
+
"in": "path",
|
|
7671
|
+
"name": "item_id",
|
|
7672
|
+
"required": true,
|
|
7673
|
+
"schema": {
|
|
7674
|
+
"title": "Item Id",
|
|
7675
|
+
"type": "string"
|
|
7676
|
+
}
|
|
7677
|
+
}
|
|
7678
|
+
],
|
|
7679
|
+
"responses": {
|
|
7680
|
+
"200": {
|
|
7681
|
+
"content": {
|
|
7682
|
+
"application/json": {
|
|
7683
|
+
"schema": {
|
|
7684
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
7685
|
+
}
|
|
7686
|
+
}
|
|
7687
|
+
},
|
|
7688
|
+
"description": "Successful Response"
|
|
7689
|
+
},
|
|
7690
|
+
"422": {
|
|
7691
|
+
"content": {
|
|
7692
|
+
"application/json": {
|
|
7693
|
+
"schema": {
|
|
7694
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7695
|
+
}
|
|
7696
|
+
}
|
|
7697
|
+
},
|
|
7698
|
+
"description": "Validation Error"
|
|
7699
|
+
}
|
|
7700
|
+
},
|
|
7701
|
+
"summary": "Get Item"
|
|
7702
|
+
}
|
|
7703
|
+
},
|
|
7704
|
+
"/automation/reviews/{item_id}/approve": {
|
|
7705
|
+
"post": {
|
|
7706
|
+
"operationId": "approve_item_automation_reviews__item_id__approve_post",
|
|
7707
|
+
"parameters": [
|
|
7708
|
+
{
|
|
7709
|
+
"in": "path",
|
|
7710
|
+
"name": "item_id",
|
|
7711
|
+
"required": true,
|
|
7712
|
+
"schema": {
|
|
7713
|
+
"title": "Item Id",
|
|
7714
|
+
"type": "string"
|
|
7715
|
+
}
|
|
7716
|
+
}
|
|
7717
|
+
],
|
|
7718
|
+
"responses": {
|
|
7719
|
+
"200": {
|
|
7720
|
+
"content": {
|
|
7721
|
+
"application/json": {
|
|
7722
|
+
"schema": {
|
|
7723
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
7724
|
+
}
|
|
7725
|
+
}
|
|
7726
|
+
},
|
|
7727
|
+
"description": "Successful Response"
|
|
7728
|
+
},
|
|
7729
|
+
"422": {
|
|
7730
|
+
"content": {
|
|
7731
|
+
"application/json": {
|
|
7732
|
+
"schema": {
|
|
7733
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7734
|
+
}
|
|
7735
|
+
}
|
|
7736
|
+
},
|
|
7737
|
+
"description": "Validation Error"
|
|
7738
|
+
}
|
|
7739
|
+
},
|
|
7740
|
+
"summary": "Approve Item"
|
|
7741
|
+
}
|
|
7742
|
+
},
|
|
7743
|
+
"/automation/reviews/{item_id}/dismiss": {
|
|
7744
|
+
"post": {
|
|
7745
|
+
"operationId": "dismiss_item_automation_reviews__item_id__dismiss_post",
|
|
7746
|
+
"parameters": [
|
|
7747
|
+
{
|
|
7748
|
+
"in": "path",
|
|
7749
|
+
"name": "item_id",
|
|
7750
|
+
"required": true,
|
|
7751
|
+
"schema": {
|
|
7752
|
+
"title": "Item Id",
|
|
7753
|
+
"type": "string"
|
|
7754
|
+
}
|
|
7755
|
+
}
|
|
7756
|
+
],
|
|
7757
|
+
"responses": {
|
|
7758
|
+
"200": {
|
|
7759
|
+
"content": {
|
|
7760
|
+
"application/json": {
|
|
7761
|
+
"schema": {
|
|
7762
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
7763
|
+
}
|
|
7764
|
+
}
|
|
7765
|
+
},
|
|
7766
|
+
"description": "Successful Response"
|
|
7767
|
+
},
|
|
7768
|
+
"422": {
|
|
7769
|
+
"content": {
|
|
7770
|
+
"application/json": {
|
|
7771
|
+
"schema": {
|
|
7772
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7773
|
+
}
|
|
7774
|
+
}
|
|
7775
|
+
},
|
|
7776
|
+
"description": "Validation Error"
|
|
7777
|
+
}
|
|
7778
|
+
},
|
|
7779
|
+
"summary": "Dismiss Item"
|
|
7780
|
+
}
|
|
7781
|
+
},
|
|
7782
|
+
"/automation/reviews/{item_id}/run_now": {
|
|
7783
|
+
"post": {
|
|
7784
|
+
"operationId": "run_now_item_automation_reviews__item_id__run_now_post",
|
|
7785
|
+
"parameters": [
|
|
7786
|
+
{
|
|
7787
|
+
"in": "path",
|
|
7788
|
+
"name": "item_id",
|
|
7789
|
+
"required": true,
|
|
7790
|
+
"schema": {
|
|
7791
|
+
"title": "Item Id",
|
|
7792
|
+
"type": "string"
|
|
7793
|
+
}
|
|
7794
|
+
}
|
|
7795
|
+
],
|
|
7796
|
+
"responses": {
|
|
7797
|
+
"200": {
|
|
7798
|
+
"content": {
|
|
7799
|
+
"application/json": {
|
|
7800
|
+
"schema": {
|
|
7801
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
7802
|
+
}
|
|
7803
|
+
}
|
|
7804
|
+
},
|
|
7805
|
+
"description": "Successful Response"
|
|
7806
|
+
},
|
|
7807
|
+
"422": {
|
|
7808
|
+
"content": {
|
|
7809
|
+
"application/json": {
|
|
7810
|
+
"schema": {
|
|
7811
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7812
|
+
}
|
|
7813
|
+
}
|
|
7814
|
+
},
|
|
7815
|
+
"description": "Validation Error"
|
|
7816
|
+
}
|
|
7817
|
+
},
|
|
7818
|
+
"summary": "Run Now Item"
|
|
7819
|
+
}
|
|
7820
|
+
},
|
|
7821
|
+
"/automation/reviews/{item_id}/snooze": {
|
|
7822
|
+
"post": {
|
|
7823
|
+
"operationId": "snooze_item_automation_reviews__item_id__snooze_post",
|
|
7824
|
+
"parameters": [
|
|
7825
|
+
{
|
|
7826
|
+
"in": "path",
|
|
7827
|
+
"name": "item_id",
|
|
7828
|
+
"required": true,
|
|
7829
|
+
"schema": {
|
|
7830
|
+
"title": "Item Id",
|
|
7831
|
+
"type": "string"
|
|
7832
|
+
}
|
|
7833
|
+
}
|
|
7834
|
+
],
|
|
7835
|
+
"requestBody": {
|
|
7836
|
+
"content": {
|
|
7837
|
+
"application/json": {
|
|
7838
|
+
"schema": {
|
|
7839
|
+
"$ref": "#/components/schemas/SnoozeRequest"
|
|
7840
|
+
}
|
|
7841
|
+
}
|
|
7842
|
+
},
|
|
7843
|
+
"required": true
|
|
7844
|
+
},
|
|
7845
|
+
"responses": {
|
|
7846
|
+
"200": {
|
|
7847
|
+
"content": {
|
|
7848
|
+
"application/json": {
|
|
7849
|
+
"schema": {
|
|
7850
|
+
"$ref": "#/components/schemas/ReviewItem"
|
|
7851
|
+
}
|
|
7852
|
+
}
|
|
7853
|
+
},
|
|
7854
|
+
"description": "Successful Response"
|
|
7855
|
+
},
|
|
7856
|
+
"422": {
|
|
7857
|
+
"content": {
|
|
7858
|
+
"application/json": {
|
|
7859
|
+
"schema": {
|
|
7860
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
7861
|
+
}
|
|
7862
|
+
}
|
|
7863
|
+
},
|
|
7864
|
+
"description": "Validation Error"
|
|
7865
|
+
}
|
|
7866
|
+
},
|
|
7867
|
+
"summary": "Snooze Item"
|
|
7868
|
+
}
|
|
7869
|
+
},
|
|
7870
|
+
"/chat": {
|
|
7260
7871
|
"get": {
|
|
7261
7872
|
"operationId": "chat_page_chat_get",
|
|
7262
7873
|
"responses": {
|
|
@@ -9632,7 +10243,7 @@
|
|
|
9632
10243
|
},
|
|
9633
10244
|
"/models/recommendations": {
|
|
9634
10245
|
"get": {
|
|
9635
|
-
"description": "Hardware-aware tri-state model recommendation for this machine.\n\
|
|
10246
|
+
"description": "Hardware-aware tri-state model recommendation for this machine.\n\n5.2.0: now includes rich capability fields (hf_repo_id, verification,\nhardware, load_strategy, license, safety_notes) from the structured registry.",
|
|
9636
10247
|
"operationId": "model_recommendations_models_recommendations_get",
|
|
9637
10248
|
"parameters": [
|
|
9638
10249
|
{
|
|
@@ -12222,6 +12833,69 @@
|
|
|
12222
12833
|
"summary": "Workflows Page"
|
|
12223
12834
|
}
|
|
12224
12835
|
},
|
|
12836
|
+
"/workflows/api/automation/recipes": {
|
|
12837
|
+
"get": {
|
|
12838
|
+
"operationId": "automation_recipes_workflows_api_automation_recipes_get",
|
|
12839
|
+
"responses": {
|
|
12840
|
+
"200": {
|
|
12841
|
+
"content": {
|
|
12842
|
+
"application/json": {
|
|
12843
|
+
"schema": {}
|
|
12844
|
+
}
|
|
12845
|
+
},
|
|
12846
|
+
"description": "Successful Response"
|
|
12847
|
+
}
|
|
12848
|
+
},
|
|
12849
|
+
"summary": "Automation Recipes"
|
|
12850
|
+
}
|
|
12851
|
+
},
|
|
12852
|
+
"/workflows/api/automation/recipes/{recipe_id}": {
|
|
12853
|
+
"post": {
|
|
12854
|
+
"operationId": "install_automation_recipe_workflows_api_automation_recipes__recipe_id__post",
|
|
12855
|
+
"parameters": [
|
|
12856
|
+
{
|
|
12857
|
+
"in": "path",
|
|
12858
|
+
"name": "recipe_id",
|
|
12859
|
+
"required": true,
|
|
12860
|
+
"schema": {
|
|
12861
|
+
"title": "Recipe Id",
|
|
12862
|
+
"type": "string"
|
|
12863
|
+
}
|
|
12864
|
+
}
|
|
12865
|
+
],
|
|
12866
|
+
"requestBody": {
|
|
12867
|
+
"content": {
|
|
12868
|
+
"application/json": {
|
|
12869
|
+
"schema": {
|
|
12870
|
+
"$ref": "#/components/schemas/WorkflowRecipeInstallRequest"
|
|
12871
|
+
}
|
|
12872
|
+
}
|
|
12873
|
+
},
|
|
12874
|
+
"required": true
|
|
12875
|
+
},
|
|
12876
|
+
"responses": {
|
|
12877
|
+
"200": {
|
|
12878
|
+
"content": {
|
|
12879
|
+
"application/json": {
|
|
12880
|
+
"schema": {}
|
|
12881
|
+
}
|
|
12882
|
+
},
|
|
12883
|
+
"description": "Successful Response"
|
|
12884
|
+
},
|
|
12885
|
+
"422": {
|
|
12886
|
+
"content": {
|
|
12887
|
+
"application/json": {
|
|
12888
|
+
"schema": {
|
|
12889
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
12890
|
+
}
|
|
12891
|
+
}
|
|
12892
|
+
},
|
|
12893
|
+
"description": "Validation Error"
|
|
12894
|
+
}
|
|
12895
|
+
},
|
|
12896
|
+
"summary": "Install Automation Recipe"
|
|
12897
|
+
}
|
|
12898
|
+
},
|
|
12225
12899
|
"/workflows/api/definitions": {
|
|
12226
12900
|
"get": {
|
|
12227
12901
|
"operationId": "list_definitions_workflows_api_definitions_get",
|