LocalAI/pkg/tts/generate_unsupported.go
mudler a55516956b feat: add tts with go-piper
Signed-off-by: mudler <mudler@localai.io>
2023-06-22 09:15:51 +02:00

10 lines
196 B
Go

//go:build !tts
// +build !tts
package tts
import "fmt"
func tts(text, model, assetDir, arLib, dst string) error {
return fmt.Errorf("this version of LocalAI was built without the tts tag")
}