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

This commit is contained in:
OlivierDehaene 2023-02-24 15:59:49 +01:00 committed by GitHub
parent 0ac184ce77
commit 3b03c4ea18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 33 additions and 3 deletions

View File

@ -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"