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 @@ ...@@ -11,7 +11,7 @@
"name": "Apache 2.0", "name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0" "url": "https://www.apache.org/licenses/LICENSE-2.0"
}, },
"version": "0.3.0" "version": "0.3.1"
}, },
"paths": { "paths": {
"/generate": { "/generate": {
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
"prefill": { "prefill": {
"type": "array", "type": "array",
"items": { "items": {
"$ref": "#/components/schemas/Token" "$ref": "#/components/schemas/PrefillToken"
} }
}, },
"seed": { "seed": {
...@@ -361,6 +361,31 @@ ...@@ -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": { "StreamDetails": {
"type": "object", "type": "object",
"required": [ "required": [
...@@ -408,7 +433,8 @@ ...@@ -408,7 +433,8 @@
"required": [ "required": [
"id", "id",
"text", "text",
"logprob" "logprob",
"special"
], ],
"properties": { "properties": {
"id": { "id": {
...@@ -422,6 +448,10 @@ ...@@ -422,6 +448,10 @@
"example": -0.34, "example": -0.34,
"nullable": true "nullable": true
}, },
"special": {
"type": "boolean",
"example": "false"
},
"text": { "text": {
"type": "string", "type": "string",
"example": "test" "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