Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate text and images using different providers #345

Open
xiaoWangSec opened this issue Mar 21, 2025 · 0 comments
Open

Generate text and images using different providers #345

xiaoWangSec opened this issue Mar 21, 2025 · 0 comments

Comments

@xiaoWangSec
Copy link

Hi,

since some providers may not have drawing capabilities, could we add an IMG-PROVIDERS parameter to specify the drawing model.

This way, users won't need to switch providers when they want to draw after setting up the provider's model.

# in main.go, line63
provider = flag.String("provider", os.Getenv("AI_PROVIDER"), "Choose which provider to use")
imgProvider = flag.String("imgprovider", os.Getenv("IMG_PROVIDER"), "Choose which provider to generate image")
# in helper.go, line 872
func generateImg(prompt string, imgProvider string) {	
	if imgProvider == "pollinations" || imgProvider == "" {
		generateImagePollinations(prompt)
	}  else if imgProvider == "blackboxai" {
		generateImageBlackbox(prompt)
	} else {
		fmt.Fprintln(os.Stderr, "Such a provider doesn't exist")
	}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant