| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- {
- "type": "object",
- "properties": {
- "$schema": {
- "type": "string"
- },
- "theme": {
- "type": "string"
- },
- "keybinds": {
- "type": "object",
- "properties": {
- "leader": {
- "type": "string"
- },
- "help": {
- "type": "string"
- },
- "editor_open": {
- "type": "string"
- },
- "session_new": {
- "type": "string"
- },
- "session_list": {
- "type": "string"
- },
- "session_share": {
- "type": "string"
- },
- "session_interrupt": {
- "type": "string"
- },
- "session_compact": {
- "type": "string"
- },
- "tool_details": {
- "type": "string"
- },
- "model_list": {
- "type": "string"
- },
- "theme_list": {
- "type": "string"
- },
- "project_init": {
- "type": "string"
- },
- "input_clear": {
- "type": "string"
- },
- "input_paste": {
- "type": "string"
- },
- "input_submit": {
- "type": "string"
- },
- "input_newline": {
- "type": "string"
- },
- "history_previous": {
- "type": "string"
- },
- "history_next": {
- "type": "string"
- },
- "messages_page_up": {
- "type": "string"
- },
- "messages_page_down": {
- "type": "string"
- },
- "messages_half_page_up": {
- "type": "string"
- },
- "messages_half_page_down": {
- "type": "string"
- },
- "messages_previous": {
- "type": "string"
- },
- "messages_next": {
- "type": "string"
- },
- "messages_first": {
- "type": "string"
- },
- "messages_last": {
- "type": "string"
- },
- "app_exit": {
- "type": "string"
- }
- },
- "additionalProperties": false
- },
- "autoshare": {
- "type": "boolean",
- "description": "Share newly created sessions automatically"
- },
- "autoupdate": {
- "type": "boolean",
- "description": "Automatically update to the latest version"
- },
- "disabled_providers": {
- "type": "array",
- "items": {
- "type": "string"
- },
- "description": "Disable providers that are loaded automatically"
- },
- "model": {
- "type": "string",
- "description": "Model to use in the format of provider/model, eg anthropic/claude-2"
- },
- "provider": {
- "type": "object",
- "additionalProperties": {
- "type": "object",
- "properties": {
- "api": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "env": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "id": {
- "type": "string"
- },
- "npm": {
- "type": "string"
- },
- "models": {
- "type": "object",
- "additionalProperties": {
- "type": "object",
- "properties": {
- "name": {
- "type": "string"
- },
- "attachment": {
- "type": "boolean"
- },
- "reasoning": {
- "type": "boolean"
- },
- "temperature": {
- "type": "boolean"
- },
- "cost": {
- "type": "object",
- "properties": {
- "input": {
- "type": "number"
- },
- "output": {
- "type": "number"
- },
- "cache_read": {
- "type": "number"
- },
- "cache_write": {
- "type": "number"
- }
- },
- "required": [
- "input",
- "output"
- ],
- "additionalProperties": false
- },
- "limit": {
- "type": "object",
- "properties": {
- "context": {
- "type": "number"
- },
- "output": {
- "type": "number"
- }
- },
- "required": [
- "context",
- "output"
- ],
- "additionalProperties": false
- },
- "id": {
- "type": "string"
- }
- },
- "additionalProperties": false
- }
- },
- "options": {
- "type": "object",
- "additionalProperties": {}
- }
- },
- "required": [
- "models"
- ],
- "additionalProperties": false
- }
- },
- "mcp": {
- "type": "object",
- "additionalProperties": {
- "anyOf": [
- {
- "type": "object",
- "properties": {
- "type": {
- "type": "string",
- "const": "local"
- },
- "command": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "environment": {
- "type": "object",
- "additionalProperties": {
- "type": "string"
- }
- }
- },
- "required": [
- "type",
- "command"
- ],
- "additionalProperties": false
- },
- {
- "type": "object",
- "properties": {
- "type": {
- "type": "string",
- "const": "remote"
- },
- "url": {
- "type": "string"
- }
- },
- "required": [
- "type",
- "url"
- ],
- "additionalProperties": false
- }
- ]
- }
- }
- },
- "additionalProperties": false,
- "$schema": "http://json-schema.org/draft-07/schema#"
- }
|