mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-29 13:09:46 +00:00
chore: generate
This commit is contained in:
parent
390b0a79b3
commit
da394439a1
2 changed files with 43 additions and 0 deletions
|
|
@ -7692,6 +7692,27 @@
|
|||
"type": "string",
|
||||
"enum": ["DEBUG", "INFO", "WARN", "ERROR"]
|
||||
},
|
||||
"ServerConfig": {
|
||||
"description": "Server configuration for opencode serve and web commands",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"port": {
|
||||
"description": "Port to listen on",
|
||||
"type": "integer",
|
||||
"exclusiveMinimum": 0,
|
||||
"maximum": 9007199254740991
|
||||
},
|
||||
"hostname": {
|
||||
"description": "Hostname to listen on",
|
||||
"type": "string"
|
||||
},
|
||||
"mdns": {
|
||||
"description": "Enable mDNS service discovery",
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
},
|
||||
"AgentConfig": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
@ -8178,6 +8199,9 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"server": {
|
||||
"$ref": "#/components/schemas/ServerConfig"
|
||||
},
|
||||
"command": {
|
||||
"description": "Command configuration, see https://opencode.ai/docs/commands",
|
||||
"type": "object",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue