LocalAI/pkg/tts/generate_unsupported.go

11 lines
196 B
Go
Raw Normal View History

//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")
}