An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# FreeGPTFix

![Status](https://img.shields.io/pypi/status/freeGPT)

[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 Client

while 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 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](https://t.me/Redpiar) |
| TG Channel | | [TG Channel](https://t.me/BotesForTelegram) |
| TikTok | | [TikTok](https://www.tiktok.com/@redpiar) |