mirror of
https://github.com/mudler/LocalAI.git
synced 2025-06-14 04:58:08 +00:00
feat: add tts with go-piper (#649)
Signed-off-by: mudler <mudler@localai.io>
This commit is contained in:
committed by
GitHub
parent
cc31c58235
commit
a7bb029d23
@ -128,6 +128,7 @@ func App(opts ...AppOption) (*fiber.App, error) {
|
||||
|
||||
// audio
|
||||
app.Post("/v1/audio/transcriptions", transcriptEndpoint(cm, options))
|
||||
app.Post("/tts", ttsEndpoint(cm, options))
|
||||
|
||||
// images
|
||||
app.Post("/v1/images/generations", imageEndpoint(cm, options))
|
||||
@ -136,6 +137,10 @@ func App(opts ...AppOption) (*fiber.App, error) {
|
||||
app.Static("/generated-images", options.imageDir)
|
||||
}
|
||||
|
||||
if options.audioDir != "" {
|
||||
app.Static("/generated-audio", options.audioDir)
|
||||
}
|
||||
|
||||
ok := func(c *fiber.Ctx) error {
|
||||
return c.SendStatus(200)
|
||||
}
|
||||
|
Reference in New Issue
Block a user