Skip to main content

freeGPT provides free access to text and image generation models.

Project description

PyPI Downloads Status

freeGPT

freeGPT provides free access to text and image generation models.

There is also an official Discord bot.

Getting Started:

python -m pip install -U freeGPT

Sources:

Model Website
gpt3 chat9.yqcloud.top
gpt4 you.com
gpt3_5 vitalentum.net
prodia prodia.com
pollinations pollinations.ai

Support this repository:

Examples:

Text Completion:

from freeGPT import Client

while True:
    prompt = input("👦: ")
    try:
        resp = Client.create_completion("MODEL", prompt)
        print(f"🤖: {resp}")
    except Exception as e:
        print(f"🤖: {e}")

Image Generation:

from freeGPT import Client
from PIL import Image
from io import BytesIO

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

Star History Chart:

Star History Chart

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

freeGPT-1.3.5.tar.gz (18.1 kB view hashes)

Uploaded Source

Built Distribution

freeGPT-1.3.5-py3-none-any.whl (19.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page