diff options
Diffstat (limited to 'schema/json/Models.json')
-rw-r--r-- | schema/json/Models.json | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/schema/json/Models.json b/schema/json/Models.json index 9a7bd310..19044d93 100644 --- a/schema/json/Models.json +++ b/schema/json/Models.json @@ -1,6 +1,6 @@ { "title": "Models", - "$ref": "#/definitions/src__continuedev__core__models__Models", + "$ref": "#/definitions/continuedev__core__models__Models", "definitions": { "LLM": { "title": "LLM", @@ -32,6 +32,12 @@ "description": "The name of the model to be used (e.g. gpt-4, codellama)", "type": "string" }, + "max_tokens": { + "title": "Max Tokens", + "description": "The maximum number of tokens to generate.", + "default": 1024, + "type": "integer" + }, "stop_tokens": { "title": "Stop Tokens", "description": "Tokens that will stop the completion.", @@ -82,7 +88,7 @@ "type": "object", "properties": {} }, - "src__continuedev__core__models__Models": { + "continuedev__core__models__Models": { "title": "Models", "description": "Main class that holds the current model configuration", "type": "object", |