freeGPT provides free access to text and image generation models.
python -m pip install -U freeGPT
Join my Discord server for live chat, support, or if you have any issues with this package.
Model | Website |
---|---|
gpt3 | chat9.yqcloud.top |
gpt4 | you.com |
alpaca_7b | chatllama.baseten.co |
falcon_40b | gpt-gm.h2o.ai |
prodia | prodia.com |
pollinations | pollinations.ai |
- ⭐ Star the project: Star this and the freeGPT-discord repository. It means a lot to me! 💕
- 🎉 Join my Discord Server: Chat with me and others. Join here:
- This bot has all the models in this repository available.
- It's interactive, overall fast, and easy to use.
- And lastly, it's open-sourced.
Async:
from freeGPT import AsyncClient
from asyncio import run
async def main():
while True:
prompt = input("👦: ")
try:
resp = await AsyncClient.create_completion("MODEL", prompt)
print(f"🤖: {resp}")
except Exception as e:
print(f"🤖: {e}")
run(main())
Non-Async:
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}")
Async:
from freeGPT import AsyncClient
from PIL import Image
from io import BytesIO
from asyncio import run
async def main():
while True:
prompt = input("👦: ")
try:
resp = await AsyncClient.create_generation("MODEL", prompt)
Image.open(BytesIO(resp)).show()
print(f"🤖: Image shown.")
except Exception as e:
print(f"🤖: {e}")
run(main())
Non-Async:
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}")