Unverified Commit 3b03c4ea authored by OlivierDehaene's avatar OlivierDehaene Committed by GitHub
Browse files

fix(docs): fix openapi schema (#86)

parent 0ac184ce
......@@ -11,7 +11,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
},
"version": "0.3.0"
"version": "0.3.1"
},
"paths": {
"/generate": {
......@@ -228,7 +228,7 @@
"prefill": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Token"
"$ref": "#/components/schemas/PrefillToken"
}
},
"seed": {
......@@ -361,6 +361,31 @@
}
}
},
"PrefillToken": {
"type": "object",
"required": [
"id",
"text",
"logprob"
],
"properties": {
"id": {
"type": "integer",
"format": "int32",
"example": 0
},
"logprob": {
"type": "number",
"format": "float",
"example": -0.34,
"nullable": true
},
"text": {
"type": "string",
"example": "test"
}
}
},
"StreamDetails": {
"type": "object",
"required": [
......@@ -408,7 +433,8 @@
"required": [
"id",
"text",
"logprob"
"logprob",
"special"
],
"properties": {
"id": {
......@@ -422,6 +448,10 @@
"example": -0.34,
"nullable": true
},
"special": {
"type": "boolean",
"example": "false"
},
"text": {
"type": "string",
"example": "test"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment