Skip to content

RedPiarOfficial/FreeGPTFix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 

Repository files navigation

FreeGPTFix

Status

DOCS

Version: 1.3.0

Author: RedPiar

freeGPT provides free access to text and image generation models.

Contents

  1. Description
  2. Models
  3. Examples
    1. TextGen
    2. ImageGen
  4. Contacts

Getting Started:

pip install freeGPTFix

description

This project is a direct fix for FreeGPT. In FreeGPT, GPT-3 and GPT-3.5 do not work, and Python crashes with GPT-4, but it generates images correctly. I also plan to improve this project and make it much better. An update will be released soon that will significantly distinguish FreeGPTFix from FreeGPT.

Sources:

Model Website
gpt3 chat9.yqcloud.top
gpt4 you.com
gpt3_5 vitalentum.net
gpt4_omni aichatonline.org
gemini editee.com
prodia prodia.com
pollinations pollinations.ai

Examples:

Completion:

from freeGPTFix import Client

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

Generation:

from freeGPTFix 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}")

Contacts

Category Description Link
Contacts
Telegram Telegram
TG Channel TG Channel
TikTok TikTok

About

freeGPTFix provides free access to text and image generation models

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages