File size: 274 Bytes
7def60a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
//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")
}