diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-08-22 13:12:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-22 13:12:58 -0700 |
commit | 5eec484dc79bb56dabf9a56af0dbe6bc95227d39 (patch) | |
tree | 07edc01475cfe0ba69372f537d36aa3294680b7d /schema/json/LLM.json | |
parent | b6435e1e479edb1e4f049098dc8522e944317f2a (diff) | |
download | sncontinue-5eec484dc79bb56dabf9a56af0dbe6bc95227d39.tar.gz sncontinue-5eec484dc79bb56dabf9a56af0dbe6bc95227d39.tar.bz2 sncontinue-5eec484dc79bb56dabf9a56af0dbe6bc95227d39.zip |
Config UI (#399)
* feat: :sparkles: UI for config!
* feat: :sparkles: (latent) edit models in settings
Diffstat (limited to 'schema/json/LLM.json')
-rw-r--r-- | schema/json/LLM.json | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/schema/json/LLM.json b/schema/json/LLM.json new file mode 100644 index 00000000..57d78928 --- /dev/null +++ b/schema/json/LLM.json @@ -0,0 +1,30 @@ +{ + "title": "LLM", + "$ref": "#/definitions/src__continuedev__libs__llm__LLM", + "definitions": { + "src__continuedev__libs__llm__LLM": { + "title": "LLM", + "type": "object", + "properties": { + "requires_api_key": { + "title": "Requires Api Key", + "type": "string" + }, + "requires_unique_id": { + "title": "Requires Unique Id", + "default": false, + "type": "boolean" + }, + "requires_write_log": { + "title": "Requires Write Log", + "default": false, + "type": "boolean" + }, + "system_message": { + "title": "System Message", + "type": "string" + } + } + } + } +}
\ No newline at end of file |