Archived
This project has been archived by its maintainers, and is no longer receiving any updates.
VortexGPT
VortexGPT provides free access to text and image generation models.
Getting Started:
python -m pip install -U VortexGPT
Join my Discord server for live chat, support, or if you have any issues with this package.
Sources:
| 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 |
Support this repository:
- 🎉 Join my Discord Server: Chat with me and others. Join here:
Examples:
Text Completion:
Async:
from VortexGPT 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 VortexGPT 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:
Async:
from VortexGPT 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 VortexGPT 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}")
Release files for VortexGPT 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| VortexGPT-0.1.tar.gz | 20.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| VortexGPT-0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 47.0 kB
Release files / VortexGPT-0.1.tar.gz
| Download URL | VortexGPT-0.1.tar.gz |
|---|---|
| Size | 20.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d8b4a8a5f1e915a64df02ad24a9cf6272d47b08b5d2216e5f74811a73b4997ca
|
|
BLAKE2b-256 checksum How to use checksums |
4d7488350d8e683a67b6344ae9a9aa56d910d2210c00ec79497f7d2033669d12
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.11
|
Release files / VortexGPT-0.1-py3-none-any.whl
| Download URL | VortexGPT-0.1-py3-none-any.whl |
|---|---|
| Size | 26.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2008486b6888526a44082d3bd053890d61e88f0dbb24076a98682de2c2f73c43
|
|
BLAKE2b-256 checksum How to use checksums |
4a16ff5deca013f0c0fc3ffcc15d566adb8a11a58d8a0268d1f8e4f352f0f712
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.11
|