Skip to content

Commit

Permalink
run update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikKaum committed Jul 26, 2024
1 parent 8eaaa7f commit 496d851
Showing 1 changed file with 24 additions and 9 deletions.
33 changes: 24 additions & 9 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,14 @@
"nullable": true,
"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": {
"type": "number",
"format": "float",
Expand Down Expand Up @@ -1140,6 +1148,14 @@
"example": "mistralai/Mistral-7B-Instruct-v0.2",
"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": {
"$ref": "#/components/schemas/Prompt"
},
Expand Down Expand Up @@ -1379,15 +1395,6 @@
"nullable": true,
"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": {
"allOf": [
{
Expand All @@ -1406,6 +1413,14 @@
"nullable": true,
"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": {
"type": "number",
"format": "float",
Expand Down

0 comments on commit 496d851

Please sign in to comment.