localAi / pkg /tinydream /generate_unsupported.go
eder0782's picture
inicio
7def60a
raw
history blame contribute delete
274 Bytes
//go:build !tinydream
// +build !tinydream
package tinydream
import "fmt"
func GenerateImage(height, width, step, seed int, positive_prompt, negative_prompt, dst, asset_dir string) error {
return fmt.Errorf("This version of LocalAI was built without the tinytts tag")
}