https://github.com/redpiarofficial/freegptfix
freeGPTFix provides free access to text and image generation models
https://github.com/redpiarofficial/freegptfix
ai freegpt freegpt4 gpt gpt-3 gpt-3-5-turbo gpt-4 prodia
Last synced: about 2 months ago
JSON representation
freeGPTFix provides free access to text and image generation models
- Host: GitHub
- URL: https://github.com/redpiarofficial/freegptfix
- Owner: RedPiarOfficial
- License: mit
- Created: 2024-08-06T13:56:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-17T13:10:45.000Z (about 1 year ago)
- Last Synced: 2025-06-20T22:54:19.571Z (4 months ago)
- Topics: ai, freegpt, freegpt4, gpt, gpt-3, gpt-3-5-turbo, gpt-4, prodia
- Language: Python
- Homepage: https://pypi.org/project/freeGPTFix/
- Size: 91.8 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FreeGPTFix

[DOCS](https://red-3.gitbook.io/freegptfix/getting-started/quickstart)
Version: 1.3.0
Author: RedPiar
freeGPT provides free access to text and image generation models.
# Contents
1. [Description](#description)
2. [Models](#sources)
3. [Examples](#examples)
1. [TextGen](#completion)
2. [ImageGen](#generation)
4. [Contacts](#contacts)## Getting Started:
pip install freeGPTFix
## description
This project is a direct fix for [FreeGPT](https://pypi.org/project/freeGPT/).
In [FreeGPT](https://pypi.org/project/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](https://github.com/RedPiarOfficial/FreeGPTFix) from [FreeGPT](https://pypi.org/project/freeGPT/).
## Sources:| Model | Website |
| ------------ | ------------------------------------------------------ |
| gpt3 | [chat9.yqcloud.top](https://chat9.yqcloud.top/) |
| gpt4 | [you.com](https://you.com/) |
| gpt3_5 | [vitalentum.net](https://vitalentum.net/free-chat-gpt) |
| gpt4_omni | [aichatonline.org](https://aichatonline.org/) |
| gemini | [editee.com](https://editee.com/chat-gpt) |
| prodia | [prodia.com](https://prodia.com/) |
| pollinations | [pollinations.ai](https://pollinations.ai/) |## Examples:
### Completion:
```python
from freeGPTFix import Clientwhile True:
prompt = input("> ")
try:
resp = Client.create_completion("MODEL", prompt)
print(resp)
except Exception as e:
print(f"🤖: {e}")
```### Generation:
```python
from freeGPTFix import Client
from PIL import Image
from io import BytesIOwhile 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](https://t.me/Redpiar) |
| TG Channel | | [TG Channel](https://t.me/BotesForTelegram) |
| TikTok | | [TikTok](https://www.tiktok.com/@redpiar) |