pollinations

Pollinations - Also generates images like Prodia, but Pollinations is more of an acquired taste. However, it all depends on the quality of the prompt!

Example 1
Example
from freeGPTFix import Client
from PIL import Image
from io import BytesIO

while True:
    prompt = input("> ")
    try:
        resp = Client.create_generation("pollinations", prompt)
        Image.open(BytesIO(resp)).show()
        print(f"🤖: Image shown.")
    except Exception as e:
        print(f"🤖: {e}")
Pollinations

Last updated