summaryrefslogtreecommitdiffhomepage
path: root/packages/sdk/openapi.json
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2026-04-02 10:38:30 -0500
committerGitHub <[email protected]>2026-04-02 15:38:30 +0000
commit510a1e81403c2438498a5d48b61ce4aa998dfcc9 (patch)
tree265852f5fc6e2d4f3b9ee84cf290e5a0fa8b8bc2 /packages/sdk/openapi.json
parent159ede2d5c68ce0e2c2662cc1f89cc9d01a0299e (diff)
downloadopencode-510a1e81403c2438498a5d48b61ce4aa998dfcc9.tar.gz
opencode-510a1e81403c2438498a5d48b61ce4aa998dfcc9.zip
ignore: fix typecheck in dev (#20702)
Diffstat (limited to 'packages/sdk/openapi.json')
-rw-r--r--packages/sdk/openapi.json35
1 files changed, 34 insertions, 1 deletions
diff --git a/packages/sdk/openapi.json b/packages/sdk/openapi.json
index 549fcc4fe..8e41f9deb 100644
--- a/packages/sdk/openapi.json
+++ b/packages/sdk/openapi.json
@@ -4744,10 +4744,29 @@
},
"required": ["input", "output"]
},
+ "experimental": {
+ "type": "boolean"
+ },
"status": {
"type": "string",
"enum": ["alpha", "beta", "deprecated"]
},
+ "options": {
+ "type": "object",
+ "propertyNames": {
+ "type": "string"
+ },
+ "additionalProperties": {}
+ },
+ "headers": {
+ "type": "object",
+ "propertyNames": {
+ "type": "string"
+ },
+ "additionalProperties": {
+ "type": "string"
+ }
+ },
"provider": {
"type": "object",
"properties": {
@@ -4758,6 +4777,19 @@
"type": "string"
}
}
+ },
+ "variants": {
+ "type": "object",
+ "propertyNames": {
+ "type": "string"
+ },
+ "additionalProperties": {
+ "type": "object",
+ "propertyNames": {
+ "type": "string"
+ },
+ "additionalProperties": {}
+ }
}
},
"required": [
@@ -4768,7 +4800,8 @@
"reasoning",
"temperature",
"tool_call",
- "limit"
+ "limit",
+ "options"
]
}
}