mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-19 20:57:54 +00:00
feat(swagger): update swagger (#4155)
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
de2b5748c3
commit
62d0d004fa
@ -279,6 +279,25 @@ const docTemplate = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/tokenMetrics": {
|
||||||
|
"get": {
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"audio/x-wav"
|
||||||
|
],
|
||||||
|
"summary": "Get TokenMetrics for Active Slot.",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "generated audio/wav file",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/tts": {
|
"/tts": {
|
||||||
"post": {
|
"post": {
|
||||||
"consumes": [
|
"consumes": [
|
||||||
@ -723,6 +742,38 @@ const docTemplate = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"/v1/tokenMetrics": {
|
||||||
|
"get": {
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"audio/x-wav"
|
||||||
|
],
|
||||||
|
"summary": "Get TokenMetrics for Active Slot.",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "generated audio/wav file",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/v1/tokenize": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Tokenize the input.",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Response",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/schema.TokenizeResponse"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"definitions": {
|
"definitions": {
|
||||||
@ -972,14 +1023,6 @@ const docTemplate = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"model.Model": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"id": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"openai.Assistant": {
|
"openai.Assistant": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1682,6 +1725,14 @@ const docTemplate = `{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"schema.SysInfoModel": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"schema.SystemInformationResponse": {
|
"schema.SystemInformationResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1694,7 +1745,7 @@ const docTemplate = `{
|
|||||||
"loaded_models": {
|
"loaded_models": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"$ref": "#/definitions/model.Model"
|
"$ref": "#/definitions/schema.SysInfoModel"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1718,14 +1769,25 @@ const docTemplate = `{
|
|||||||
"description": "model name or full path",
|
"description": "model name or full path",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"response_format": {
|
||||||
|
"description": "(optional) output format",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"voice": {
|
"voice": {
|
||||||
"description": "voice audio file or speaker id",
|
"description": "voice audio file or speaker id",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
}
|
||||||
"response_format": {
|
}
|
||||||
"description": "(optional) output format of generated audio file, defaults to wav, accept wav, mp3, flac, aac, opus",
|
},
|
||||||
"type": "string"
|
"schema.TokenizeResponse": {
|
||||||
},
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"tokens": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"schema.ToolCall": {
|
"schema.ToolCall": {
|
||||||
|
@ -272,6 +272,25 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/tokenMetrics": {
|
||||||
|
"get": {
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"audio/x-wav"
|
||||||
|
],
|
||||||
|
"summary": "Get TokenMetrics for Active Slot.",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "generated audio/wav file",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/tts": {
|
"/tts": {
|
||||||
"post": {
|
"post": {
|
||||||
"consumes": [
|
"consumes": [
|
||||||
@ -716,6 +735,38 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"/v1/tokenMetrics": {
|
||||||
|
"get": {
|
||||||
|
"consumes": [
|
||||||
|
"application/json"
|
||||||
|
],
|
||||||
|
"produces": [
|
||||||
|
"audio/x-wav"
|
||||||
|
],
|
||||||
|
"summary": "Get TokenMetrics for Active Slot.",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "generated audio/wav file",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"/v1/tokenize": {
|
||||||
|
"post": {
|
||||||
|
"summary": "Tokenize the input.",
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "Response",
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/definitions/schema.TokenizeResponse"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"definitions": {
|
"definitions": {
|
||||||
@ -965,14 +1016,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"model.Model": {
|
|
||||||
"type": "object",
|
|
||||||
"properties": {
|
|
||||||
"id": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"openai.Assistant": {
|
"openai.Assistant": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1675,6 +1718,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"schema.SysInfoModel": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"schema.SystemInformationResponse": {
|
"schema.SystemInformationResponse": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -1687,7 +1738,7 @@
|
|||||||
"loaded_models": {
|
"loaded_models": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"$ref": "#/definitions/model.Model"
|
"$ref": "#/definitions/schema.SysInfoModel"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1711,13 +1762,24 @@
|
|||||||
"description": "model name or full path",
|
"description": "model name or full path",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
|
"response_format": {
|
||||||
|
"description": "(optional) output format",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"voice": {
|
"voice": {
|
||||||
"description": "voice audio file or speaker id",
|
"description": "voice audio file or speaker id",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
}
|
||||||
"response_format": {
|
}
|
||||||
"description": "(optional) output format of generated audio file, defaults to wav, accept wav, mp3, flac, aac, opus",
|
},
|
||||||
"type": "string"
|
"schema.TokenizeResponse": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"tokens": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -1746,4 +1808,4 @@
|
|||||||
"in": "header"
|
"in": "header"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -168,11 +168,6 @@ definitions:
|
|||||||
type: string
|
type: string
|
||||||
type: array
|
type: array
|
||||||
type: object
|
type: object
|
||||||
model.Model:
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: string
|
|
||||||
type: object
|
|
||||||
openai.Assistant:
|
openai.Assistant:
|
||||||
properties:
|
properties:
|
||||||
created:
|
created:
|
||||||
@ -651,6 +646,11 @@ definitions:
|
|||||||
$ref: '#/definitions/p2p.NodeData'
|
$ref: '#/definitions/p2p.NodeData'
|
||||||
type: array
|
type: array
|
||||||
type: object
|
type: object
|
||||||
|
schema.SysInfoModel:
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
schema.SystemInformationResponse:
|
schema.SystemInformationResponse:
|
||||||
properties:
|
properties:
|
||||||
backends:
|
backends:
|
||||||
@ -659,7 +659,7 @@ definitions:
|
|||||||
type: array
|
type: array
|
||||||
loaded_models:
|
loaded_models:
|
||||||
items:
|
items:
|
||||||
$ref: '#/definitions/model.Model'
|
$ref: '#/definitions/schema.SysInfoModel'
|
||||||
type: array
|
type: array
|
||||||
type: object
|
type: object
|
||||||
schema.TTSRequest:
|
schema.TTSRequest:
|
||||||
@ -676,12 +676,19 @@ definitions:
|
|||||||
model:
|
model:
|
||||||
description: model name or full path
|
description: model name or full path
|
||||||
type: string
|
type: string
|
||||||
|
response_format:
|
||||||
|
description: (optional) output format
|
||||||
|
type: string
|
||||||
voice:
|
voice:
|
||||||
description: voice audio file or speaker id
|
description: voice audio file or speaker id
|
||||||
type: string
|
type: string
|
||||||
response_format:
|
type: object
|
||||||
description: (optional) output format of generated audio file, defaults to wav, accept wav, mp3, flac, aac, opus
|
schema.TokenizeResponse:
|
||||||
type: string
|
properties:
|
||||||
|
tokens:
|
||||||
|
items:
|
||||||
|
type: integer
|
||||||
|
type: array
|
||||||
type: object
|
type: object
|
||||||
schema.ToolCall:
|
schema.ToolCall:
|
||||||
properties:
|
properties:
|
||||||
@ -867,6 +874,18 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
$ref: '#/definitions/schema.SystemInformationResponse'
|
$ref: '#/definitions/schema.SystemInformationResponse'
|
||||||
summary: Show the LocalAI instance information
|
summary: Show the LocalAI instance information
|
||||||
|
/tokenMetrics:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
produces:
|
||||||
|
- audio/x-wav
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: generated audio/wav file
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
summary: Get TokenMetrics for Active Slot.
|
||||||
/tts:
|
/tts:
|
||||||
post:
|
post:
|
||||||
consumes:
|
consumes:
|
||||||
@ -1149,6 +1168,26 @@ paths:
|
|||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
summary: Generates audio from the input text.
|
summary: Generates audio from the input text.
|
||||||
|
/v1/tokenMetrics:
|
||||||
|
get:
|
||||||
|
consumes:
|
||||||
|
- application/json
|
||||||
|
produces:
|
||||||
|
- audio/x-wav
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: generated audio/wav file
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
summary: Get TokenMetrics for Active Slot.
|
||||||
|
/v1/tokenize:
|
||||||
|
post:
|
||||||
|
responses:
|
||||||
|
"200":
|
||||||
|
description: Response
|
||||||
|
schema:
|
||||||
|
$ref: '#/definitions/schema.TokenizeResponse'
|
||||||
|
summary: Tokenize the input.
|
||||||
securityDefinitions:
|
securityDefinitions:
|
||||||
BearerAuth:
|
BearerAuth:
|
||||||
in: header
|
in: header
|
||||||
|
Loading…
Reference in New Issue
Block a user