feat(swagger): update swagger

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
mudler 2025-04-26 20:02:52 +00:00 committed by github-actions[bot]
parent c5af5d139c
commit aa59cb1e6f
3 changed files with 63 additions and 0 deletions

View file

@ -812,6 +812,30 @@ const docTemplate = `{
}
}
}
},
"/video": {
"post": {
"summary": "Creates a video given a prompt.",
"parameters": [
{
"description": "query params",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/schema.OpenAIRequest"
}
}
],
"responses": {
"200": {
"description": "Response",
"schema": {
"$ref": "#/definitions/schema.OpenAIResponse"
}
}
}
}
}
},
"definitions": {