Skip to content

Commit

Permalink
feat(swagger): update swagger (#4211)
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: mudler <[email protected]>
  • Loading branch information
localai-bot and mudler authored Nov 20, 2024
1 parent 7adbc16 commit eaf0e30
Show file tree
Hide file tree
Showing 3 changed files with 175 additions and 0 deletions.
66 changes: 66 additions & 0 deletions swagger/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,33 @@ const docTemplate = `{
}
}
}
},
"/vad": {
"post": {
"consumes": [
"application/json"
],
"summary": "Detect voice fragments in an audio stream",
"parameters": [
{
"description": "query params",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/schema.VADRequest"
}
}
],
"responses": {
"200": {
"description": "Response",
"schema": {
"$ref": "#/definitions/proto.VADResponse"
}
}
}
}
}
},
"definitions": {
Expand Down Expand Up @@ -1207,6 +1234,28 @@ const docTemplate = `{
"StatusResponse_ERROR"
]
},
"proto.VADResponse": {
"type": "object",
"properties": {
"segments": {
"type": "array",
"items": {
"$ref": "#/definitions/proto.VADSegment"
}
}
}
},
"proto.VADSegment": {
"type": "object",
"properties": {
"end": {
"type": "number"
},
"start": {
"type": "number"
}
}
},
"schema.BackendMonitorRequest": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1806,6 +1855,23 @@ const docTemplate = `{
"type": "string"
}
}
},
"schema.VADRequest": {
"description": "VAD request body",
"type": "object",
"properties": {
"audio": {
"description": "model name or full path",
"type": "array",
"items": {
"type": "number"
}
},
"model": {
"description": "model name or full path",
"type": "string"
}
}
}
},
"securityDefinitions": {
Expand Down
66 changes: 66 additions & 0 deletions swagger/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,33 @@
}
}
}
},
"/vad": {
"post": {
"consumes": [
"application/json"
],
"summary": "Detect voice fragments in an audio stream",
"parameters": [
{
"description": "query params",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/schema.VADRequest"
}
}
],
"responses": {
"200": {
"description": "Response",
"schema": {
"$ref": "#/definitions/proto.VADResponse"
}
}
}
}
}
},
"definitions": {
Expand Down Expand Up @@ -1200,6 +1227,28 @@
"StatusResponse_ERROR"
]
},
"proto.VADResponse": {
"type": "object",
"properties": {
"segments": {
"type": "array",
"items": {
"$ref": "#/definitions/proto.VADSegment"
}
}
}
},
"proto.VADSegment": {
"type": "object",
"properties": {
"end": {
"type": "number"
},
"start": {
"type": "number"
}
}
},
"schema.BackendMonitorRequest": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1799,6 +1848,23 @@
"type": "string"
}
}
},
"schema.VADRequest": {
"description": "VAD request body",
"type": "object",
"properties": {
"audio": {
"description": "model name or full path",
"type": "array",
"items": {
"type": "number"
}
},
"model": {
"description": "model name or full path",
"type": "string"
}
}
}
},
"securityDefinitions": {
Expand Down
43 changes: 43 additions & 0 deletions swagger/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,20 @@ definitions:
- StatusResponse_BUSY
- StatusResponse_READY
- StatusResponse_ERROR
proto.VADResponse:
properties:
segments:
items:
$ref: '#/definitions/proto.VADSegment'
type: array
type: object
proto.VADSegment:
properties:
end:
type: number
start:
type: number
type: object
schema.BackendMonitorRequest:
properties:
model:
Expand Down Expand Up @@ -701,6 +715,18 @@ definitions:
type:
type: string
type: object
schema.VADRequest:
description: VAD request body
properties:
audio:
description: model name or full path
items:
type: number
type: array
model:
description: model name or full path
type: string
type: object
info:
contact:
name: LocalAI
Expand Down Expand Up @@ -1188,6 +1214,23 @@ paths:
schema:
$ref: '#/definitions/schema.TokenizeResponse'
summary: Tokenize the input.
/vad:
post:
consumes:
- application/json
parameters:
- description: query params
in: body
name: request
required: true
schema:
$ref: '#/definitions/schema.VADRequest'
responses:
"200":
description: Response
schema:
$ref: '#/definitions/proto.VADResponse'
summary: Detect voice fragments in an audio stream
securityDefinitions:
BearerAuth:
in: header
Expand Down

0 comments on commit eaf0e30

Please sign in to comment.