prodia

Prodia - An AI for creating cool images, works very well with anime art. I don't like its results, but it only understands English well!

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

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

Last updated