freeGPT is a Python package that gives free access to GPT3 and GPT4 models.
Reason this release was yanked:
Broken
Project description
freeGPT
A Python package that gives access to GPT3 & GPT4 models for free.
Get started by doing: pip install freeGPT
Source:
Models with .web have internet access on.
Models | Websites |
---|---|
gpt3 | theb.ai |
gpt3web | you.com |
gpt4 | usesless.com |
gpt4web | forefront.ai |
TODO-List:
- Add GPT-4.
- Make the library well-documented.
- Make the over-all library easier to use.
- Make the over-all library easier to understand.
- Replace you.com with theb.ai for less failed responses.
- Add a internet search model for GPT-3 & GPT-4
- Add a text to image generation model
- Make a discord bot
Support me:
- Join my Discord Server :D
- Star this repository :D
Examples:
GPT-3:
from freeGPT import gpt3 # If you want to use web just replace `gpt3` with `gpt3web as gpt3` and no other changes needed.
prompt = input("👦 > ")
resp = gpt3.Completion.create(prompt=prompt)
print(f"🤖 > {resp.text}")
GPT-4:
from freeGPT import gpt4 # If you want to use web just replace `gpt4` with `gpt4web as gpt4` and no other changes needed.
token = gpt4.Account.create(logging=True) # Don't forget to remove this if you want to use web.
prompt = input("👦 > ")
resp = gpt4.Completion.create(prompt=prompt, token=token) # Don't forget to remove the token parameter here if you want to use web.
print(f"🤖 > {resp.text}")
Star History:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
freeGPT-1.0.6.tar.gz
(21.3 kB
view details)
Built Distribution
freeGPT-1.0.6-py3-none-any.whl
(21.4 kB
view details)
File details
Details for the file freeGPT-1.0.6.tar.gz
.
File metadata
- Download URL: freeGPT-1.0.6.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05efe183185e5c84adc0c129c1c5ecbcbf04197c64cd09183775ec95b924f7ea |
|
MD5 | 6610463f1e0815f47cb3b457fffa63aa |
|
BLAKE2b-256 | 55f44aef3cd35f4f6b5d4ec815011e942139e8abbb38552930a756d5f9aa63bc |
Provenance
File details
Details for the file freeGPT-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: freeGPT-1.0.6-py3-none-any.whl
- Upload date:
- Size: 21.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9512fc9640d84e0068fdf7c5367f248967552da75ae49f3af3359567214df4c0 |
|
MD5 | 733b910ff5ab367a5d4222a849d1b97a |
|
BLAKE2b-256 | 22e30c4483bd608edbfce96dbe9855bbcb98d0612c68cc182dbbdc808b5110c0 |