mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 13:27:21 +00:00
feat(swagger): update swagger (#9075)
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com>
This commit is contained in:
parent
aea21951a2
commit
6054d2a91b
3 changed files with 39 additions and 0 deletions
|
|
@ -1613,6 +1613,10 @@ const docTemplate = `{
|
|||
"alias": {
|
||||
"type": "string"
|
||||
},
|
||||
"backend": {
|
||||
"description": "Backend is the resolved backend engine for this model (e.g. \"llama-cpp\").\nPopulated at load time from overrides, inline config, or the URL-referenced config file.",
|
||||
"type": "string"
|
||||
},
|
||||
"capabilities": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
|
|
@ -1683,6 +1687,10 @@ const docTemplate = `{
|
|||
"gallery.GalleryModel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"backend": {
|
||||
"description": "Backend is the resolved backend engine for this model (e.g. \"llama-cpp\").\nPopulated at load time from overrides, inline config, or the URL-referenced config file.",
|
||||
"type": "string"
|
||||
},
|
||||
"config_file": {
|
||||
"description": "config_file is read in the situation where URL is blank - and therefore this is a base config.",
|
||||
"type": "object",
|
||||
|
|
@ -1756,6 +1764,10 @@ const docTemplate = `{
|
|||
"localai.GalleryModel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"backend": {
|
||||
"description": "Backend is the resolved backend engine for this model (e.g. \"llama-cpp\").\nPopulated at load time from overrides, inline config, or the URL-referenced config file.",
|
||||
"type": "string"
|
||||
},
|
||||
"config_file": {
|
||||
"description": "config_file is read in the situation where URL is blank - and therefore this is a base config.",
|
||||
"type": "object",
|
||||
|
|
|
|||
|
|
@ -1606,6 +1606,10 @@
|
|||
"alias": {
|
||||
"type": "string"
|
||||
},
|
||||
"backend": {
|
||||
"description": "Backend is the resolved backend engine for this model (e.g. \"llama-cpp\").\nPopulated at load time from overrides, inline config, or the URL-referenced config file.",
|
||||
"type": "string"
|
||||
},
|
||||
"capabilities": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
|
|
@ -1676,6 +1680,10 @@
|
|||
"gallery.GalleryModel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"backend": {
|
||||
"description": "Backend is the resolved backend engine for this model (e.g. \"llama-cpp\").\nPopulated at load time from overrides, inline config, or the URL-referenced config file.",
|
||||
"type": "string"
|
||||
},
|
||||
"config_file": {
|
||||
"description": "config_file is read in the situation where URL is blank - and therefore this is a base config.",
|
||||
"type": "object",
|
||||
|
|
@ -1749,6 +1757,10 @@
|
|||
"localai.GalleryModel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"backend": {
|
||||
"description": "Backend is the resolved backend engine for this model (e.g. \"llama-cpp\").\nPopulated at load time from overrides, inline config, or the URL-referenced config file.",
|
||||
"type": "string"
|
||||
},
|
||||
"config_file": {
|
||||
"description": "config_file is read in the situation where URL is blank - and therefore this is a base config.",
|
||||
"type": "object",
|
||||
|
|
|
|||
|
|
@ -61,6 +61,11 @@ definitions:
|
|||
properties:
|
||||
alias:
|
||||
type: string
|
||||
backend:
|
||||
description: |-
|
||||
Backend is the resolved backend engine for this model (e.g. "llama-cpp").
|
||||
Populated at load time from overrides, inline config, or the URL-referenced config file.
|
||||
type: string
|
||||
capabilities:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -109,6 +114,11 @@ definitions:
|
|||
type: object
|
||||
gallery.GalleryModel:
|
||||
properties:
|
||||
backend:
|
||||
description: |-
|
||||
Backend is the resolved backend engine for this model (e.g. "llama-cpp").
|
||||
Populated at load time from overrides, inline config, or the URL-referenced config file.
|
||||
type: string
|
||||
config_file:
|
||||
additionalProperties: true
|
||||
description: config_file is read in the situation where URL is blank - and
|
||||
|
|
@ -162,6 +172,11 @@ definitions:
|
|||
type: object
|
||||
localai.GalleryModel:
|
||||
properties:
|
||||
backend:
|
||||
description: |-
|
||||
Backend is the resolved backend engine for this model (e.g. "llama-cpp").
|
||||
Populated at load time from overrides, inline config, or the URL-referenced config file.
|
||||
type: string
|
||||
config_file:
|
||||
additionalProperties: true
|
||||
description: config_file is read in the situation where URL is blank - and
|
||||
|
|
|
|||
Loading…
Reference in a new issue