|
|
@@ -2048,6 +2048,9 @@
|
|
|
"system": {
|
|
|
"type": "string"
|
|
|
},
|
|
|
+ "variant": {
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
"parts": {
|
|
|
"type": "array",
|
|
|
"items": {
|
|
|
@@ -2420,6 +2423,9 @@
|
|
|
"system": {
|
|
|
"type": "string"
|
|
|
},
|
|
|
+ "variant": {
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
"parts": {
|
|
|
"type": "array",
|
|
|
"items": {
|
|
|
@@ -2541,6 +2547,9 @@
|
|
|
},
|
|
|
"command": {
|
|
|
"type": "string"
|
|
|
+ },
|
|
|
+ "variant": {
|
|
|
+ "type": "string"
|
|
|
}
|
|
|
},
|
|
|
"required": ["arguments", "command"]
|
|
|
@@ -5265,6 +5274,9 @@
|
|
|
"additionalProperties": {
|
|
|
"type": "boolean"
|
|
|
}
|
|
|
+ },
|
|
|
+ "variant": {
|
|
|
+ "type": "string"
|
|
|
}
|
|
|
},
|
|
|
"required": ["id", "sessionID", "role", "time", "agent", "model"]
|
|
|
@@ -7496,6 +7508,11 @@
|
|
|
"default": "shift+tab",
|
|
|
"type": "string"
|
|
|
},
|
|
|
+ "variant_cycle": {
|
|
|
+ "description": "Cycle model variants",
|
|
|
+ "default": "ctrl+t",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
"input_clear": {
|
|
|
"description": "Clear input field",
|
|
|
"default": "ctrl+c",
|
|
|
@@ -8914,6 +8931,16 @@
|
|
|
},
|
|
|
"required": ["name", "template"]
|
|
|
},
|
|
|
+ "Variant": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "disabled": {
|
|
|
+ "type": "boolean"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "required": ["disabled"],
|
|
|
+ "additionalProperties": {}
|
|
|
+ },
|
|
|
"Model": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
|
@@ -9103,6 +9130,15 @@
|
|
|
},
|
|
|
"release_date": {
|
|
|
"type": "string"
|
|
|
+ },
|
|
|
+ "variants": {
|
|
|
+ "type": "object",
|
|
|
+ "propertyNames": {
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "additionalProperties": {
|
|
|
+ "$ref": "#/components/schemas/Variant"
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
"required": [
|