fix(docs): fix openapi schema (#86)
This commit is contained in:
parent
0ac184ce77
commit
3b03c4ea18
|
@ -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 @@
|
||||||
"prefill": {
|
"prefill": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"$ref": "#/components/schemas/Token"
|
"$ref": "#/components/schemas/PrefillToken"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"seed": {
|
"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": {
|
"StreamDetails": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"required": [
|
"required": [
|
||||||
|
@ -408,7 +433,8 @@
|
||||||
"required": [
|
"required": [
|
||||||
"id",
|
"id",
|
||||||
"text",
|
"text",
|
||||||
"logprob"
|
"logprob",
|
||||||
|
"special"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"id": {
|
"id": {
|
||||||
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue