freeGPT is a Python package that gives free access to GPT3 and GPT4 and more models.
Project description
freeGPT
A Python package that gives access to GPT3 & GPT4 models for free.
Get started by installing the package:
py -m pip install --upgrade freeGPT
Source:
Both GPT models have internet access.
Models | Websites |
---|---|
gpt3 | you.com |
gpt4 | forefront.ai |
alpaca_7b | chatllama.baseten.co |
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.
- Make GPT-3 & GPT-4 models with web access.
- Add a non-GPT model.
- 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
while True:
prompt = input("👦 > ")
resp = gpt3.Completion.create(prompt=prompt)
print(f"🤖 > {resp['text']}")
GPT-4:
# Uhh, sorry but gpt4 is kinda broken currently, will maybe get fixed in the next update.
from freeGPT import gpt4
while True:
token = Account.create(logging=True)
prompt = input("👦 > ")
resp = gpt4.Completion.create(prompt=prompt, token=token)
print(f"🤖 > {resp.text}")
Alpaca-7b:
from freeGPT import alpaca_7b
while True:
prompt = input("👦 > ")
resp = alpaca_7b.Completion.create(prompt=prompt)
print(f"🤖 > {resp}")
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.1.6.tar.gz
(20.6 kB
view details)
Built Distribution
freeGPT-1.1.6-py3-none-any.whl
(20.4 kB
view details)
File details
Details for the file freeGPT-1.1.6.tar.gz
.
File metadata
- Download URL: freeGPT-1.1.6.tar.gz
- Upload date:
- Size: 20.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8499d88f4eeb5d06b7422f68c0a4369ea89260610c6da64f559b4801568757d0 |
|
MD5 | 0264d871bd3dd018371d4f6f61a574a3 |
|
BLAKE2b-256 | 1059969ef36b74c9d59ad896a6b2d8044cebe19028c381e0dca3a6cc2858d574 |
Provenance
File details
Details for the file freeGPT-1.1.6-py3-none-any.whl
.
File metadata
- Download URL: freeGPT-1.1.6-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d85641907fe1efd8864bd1caaa621676b358acc7c337eb294fec70964daca73f |
|
MD5 | cd283ebaad6fd67fe002b5b67ea6a85e |
|
BLAKE2b-256 | 16694432d9a23b632757da38a996f927e875c1cf2f7514fa24f76fc5196c9b92 |