Skip to content

Commit bf2a568

Browse files
Update OpenAPI to version generated from ref 7cc918b (#1089)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 7cc918b commit bf2a568

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

api/openapi.json

+42
Original file line numberDiff line numberDiff line change
@@ -1478,6 +1478,16 @@
14781478
"type": "string",
14791479
"title": "Name"
14801480
},
1481+
"config": {
1482+
"anyOf": [
1483+
{
1484+
"$ref": "#/components/schemas/WorkspaceConfig"
1485+
},
1486+
{
1487+
"type": "null"
1488+
}
1489+
]
1490+
},
14811491
"rename_to": {
14821492
"anyOf": [
14831493
{
@@ -1590,6 +1600,17 @@
15901600
},
15911601
"MuxRule": {
15921602
"properties": {
1603+
"provider_name": {
1604+
"anyOf": [
1605+
{
1606+
"type": "string"
1607+
},
1608+
{
1609+
"type": "null"
1610+
}
1611+
],
1612+
"title": "Provider Name"
1613+
},
15931614
"provider_id": {
15941615
"type": "string",
15951616
"title": "Provider Id"
@@ -1842,6 +1863,27 @@
18421863
"is_active"
18431864
],
18441865
"title": "Workspace"
1866+
},
1867+
"WorkspaceConfig": {
1868+
"properties": {
1869+
"system_prompt": {
1870+
"type": "string",
1871+
"title": "System Prompt"
1872+
},
1873+
"muxing_rules": {
1874+
"items": {
1875+
"$ref": "#/components/schemas/MuxRule"
1876+
},
1877+
"type": "array",
1878+
"title": "Muxing Rules"
1879+
}
1880+
},
1881+
"type": "object",
1882+
"required": [
1883+
"system_prompt",
1884+
"muxing_rules"
1885+
],
1886+
"title": "WorkspaceConfig"
18451887
}
18461888
}
18471889
}

0 commit comments

Comments
 (0)