Chat / pkg /tinydream /generate_unsupported.go
Baraaqasem's picture
Upload 711 files
651d019 verified
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")
}