run update docs
This commit is contained in:
parent
72cade84f9
commit
d8d3c4678e
|
@ -864,6 +864,14 @@
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
"minimum": 0
|
"minimum": 0
|
||||||
},
|
},
|
||||||
|
"no_repeat_ngram_size": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32",
|
||||||
|
"description": "n-grams are groups of \"n\" consecutive words, characters, or tokens taken from a sequence of text. Given the\nsentence: \"She runs fast\", the bi-grams (n=2) would be (\"she\", \"runs\") and (\"runs\", \"fast\"). Set this to avoid\ngenerating the same n-grams in the completion.",
|
||||||
|
"example": "12",
|
||||||
|
"nullable": true,
|
||||||
|
"minimum": 0
|
||||||
|
},
|
||||||
"presence_penalty": {
|
"presence_penalty": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "float",
|
"format": "float",
|
||||||
|
@ -1140,6 +1148,14 @@
|
||||||
"example": "mistralai/Mistral-7B-Instruct-v0.2",
|
"example": "mistralai/Mistral-7B-Instruct-v0.2",
|
||||||
"nullable": true
|
"nullable": true
|
||||||
},
|
},
|
||||||
|
"no_repeat_ngram_size": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32",
|
||||||
|
"description": "n-grams are groups of \"n\" consecutive words, characters, or tokens taken from a sequence of text. Given the\nsentence: \"She runs fast\", the bi-grams (n=2) would be (\"she\", \"runs\") and (\"runs\", \"fast\"). Set this to avoid\ngenerating the same n-grams in the completion.",
|
||||||
|
"example": "12",
|
||||||
|
"nullable": true,
|
||||||
|
"minimum": 0
|
||||||
|
},
|
||||||
"prompt": {
|
"prompt": {
|
||||||
"$ref": "#/components/schemas/Prompt"
|
"$ref": "#/components/schemas/Prompt"
|
||||||
},
|
},
|
||||||
|
@ -1379,15 +1395,6 @@
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
"exclusiveMinimum": -2
|
"exclusiveMinimum": -2
|
||||||
},
|
},
|
||||||
"no_repeat_ngram_size": {
|
|
||||||
"type": "integer",
|
|
||||||
"format": "int32",
|
|
||||||
"description": "If set to int > 0, all ngrams of that size can only occur once.",
|
|
||||||
"default": "null",
|
|
||||||
"example": 12,
|
|
||||||
"nullable": true,
|
|
||||||
"minimum": 0
|
|
||||||
},
|
|
||||||
"grammar": {
|
"grammar": {
|
||||||
"allOf": [
|
"allOf": [
|
||||||
{
|
{
|
||||||
|
@ -1406,6 +1413,14 @@
|
||||||
"nullable": true,
|
"nullable": true,
|
||||||
"minimum": 0
|
"minimum": 0
|
||||||
},
|
},
|
||||||
|
"no_repeat_ngram_size": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32",
|
||||||
|
"description": "n-grams are groups of \"n\" consecutive words, characters, or tokens taken from a sequence of text. Given the\nsentence: \"She runs fast\", the bi-grams (n=2) would be (\"she\", \"runs\") and (\"runs\", \"fast\"). Set this to avoid\ngenerating the same n-grams in the completion.",
|
||||||
|
"example": "12",
|
||||||
|
"nullable": true,
|
||||||
|
"minimum": 0
|
||||||
|
},
|
||||||
"repetition_penalty": {
|
"repetition_penalty": {
|
||||||
"type": "number",
|
"type": "number",
|
||||||
"format": "float",
|
"format": "float",
|
||||||
|
|
Loading…
Reference in New Issue