diff options
Diffstat (limited to 'schema/json/LLM.json')
-rw-r--r-- | schema/json/LLM.json | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/schema/json/LLM.json b/schema/json/LLM.json index b5b48d6b..30d4d684 100644 --- a/schema/json/LLM.json +++ b/schema/json/LLM.json @@ -1,8 +1,8 @@ { "title": "LLM", - "$ref": "#/definitions/src__continuedev__libs__llm__LLM", + "$ref": "#/definitions/continuedev__libs__llm__LLM", "definitions": { - "src__continuedev__libs__llm__LLM": { + "continuedev__libs__llm__LLM": { "title": "LLM", "type": "object", "properties": { @@ -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.", |