added temperature and token count to ai config

This commit is contained in:
wea_ondara
2024-05-29 18:36:17 +02:00
parent 3a78660883
commit bc0712ba11
14 changed files with 197 additions and 15 deletions

View File

@@ -232,6 +232,18 @@
"discordToken": {
"type": "string",
"maxLength": 255
},
"tokenCount": {
"type": "integer",
"format": "int32",
"minimum": 0,
"maximum": 1000
},
"temperature": {
"type": "number",
"format": "double",
"minimum": 0,
"maximum": 1
}
},
"required": [
@@ -242,7 +254,9 @@
"updatedBy",
"name",
"modelIdOrPath",
"discordToken"
"discordToken",
"tokenCount",
"temperature"
],
"type": "object",
"additionalProperties": false