GithubHelp home page GithubHelp logo

diezo / progpt Goto Github PK

View Code? Open in Web Editor NEW
56.0 3.0 8.0 42 KB

๐Ÿ”ฅ Free GPT-3.5 Python API

Home Page: https://buymeacoffee.com/sonii

License: MIT License

Python 100.00%
ai-chat chatbot chatgpt chatgpt-api chatgpt-api-wrapper generative-ai gpt-3 gpt-35-turbo python-ai python-chatgpt python-generative-ai python-gpt chatgpt-4 chatgpt-bot chatgpt-clone chatgpt-free chatgpt-python chatgpt3 chatgpt4 progpt

progpt's Introduction

ProGPT - Free ChatGPT API

PyPI PyPI - Python Version Downloads

ChatGPT

I reverse engineered ChatGPT's Free Web API and made this simple python package.

Both Generative & Conversation modes are supported.

๐Ÿ“ฆ Installation

$ pip install progpt

๐Ÿ”‘ How to get access_token?

In your browser:

  1. Login to chat.openai.com
  2. Open this page, and you'll see JSON data
  3. Copy value of accessToken

๐Ÿš€ Generative Mode

Answers individual prompts, doesn't remember past messages.

from ProGPT import Generative

bot = Generative(access_token)

print(bot.prompt("who invented electricity?"))

๐Ÿฟ Conversation Mode

Creates a conversation thread and remembers your chat history.

from ProGPT import Conversation

bot = Conversation(access_token)

print(bot.prompt("hello"))
print(bot.prompt("how are you?"))

โšก Rate Limits

To overcome the free tier's rate limits:

  • Add time gap between prompts
  • Use multiple accounts

โค๏ธ Support Me

If you're benefitting from my work and wish to support me, please consider visiting this link:

๐Ÿ‘ฎ Legal

This is a third party library and not associated with OpenAI or ChatGPT. It's strictly for educational purposes. You are liable for all the actions you take.

progpt's People

Contributors

diezo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

progpt's Issues

ProGPT seems to not be working.

File "/home/container/.local/lib/python3.12/site-packages/discord/ext/commands/core.py", line 235, in wrapped ret = await coro(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/container/bot.py", line 250, in chatgpt response = conversation.send(question) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/container/.local/lib/python3.12/site-packages/ProGPT/Conversation.py", line 128, in send if data["message"]["status"] != "finished_successfully": ~~~~^^^^^^^^^^^ KeyError: 'message'

access_token reqest ok 200 -What KeyError

File "C:\Program Files\JetBrains\PyCharm Community Edition 2023.2.1\plugins\python-ce\helpers\pydev\pydevd.py", line 1500, in _exec
pydev_imports.execfile(file, globals, locals) # execute the script
File "C:\Program Files\JetBrains\PyCharm Community Edition 2023.2.1\plugins\python-ce\helpers\pydev_pydev_imps_pydev_execfile.py", line 18, in execfile
exec(compile(contents+"\n", file, 'exec'), glob, loc)
File "Z:\Pyton\claimclicks_bot\gpt_temp.py", line 4, in
print(bot.prompt("hello"))
File "Z:\Pyton\claimclicks_bot\venv\lib\site-packages\ProGPT\Generative.py", line 84, in prompt
if data["message"]["status"] != "finished_successfully":
KeyError: 'message'

from ProGPT import Generative
access_token="***********"
bot = Generative(access_token)
print(bot.prompt("hello"))
print(bot.prompt("how are you?"))

JSON decode failed

I am still on 6eaeb7c and I encountered this issue.

My code is a simple loop like

    c = Conversation(token)
    while True:
        p = input('Prompt: ')
        r = c.send(p)
        print(r)
Traceback (most recent call last):
  File "C:\Users\vlna\PycharmProjects\vlna\chatgpt\main.py", line 23, in <module>
    r = c.send(p)
        ^^^^^^^^^
  File "C:\Users\vlna\AppData\Local\Programs\Python\Python312\Lib\site-packages\ProGPT\Conversation.py", line 123, in send
    try: data: dict = json.loads(chunk[6:])
                      ^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\vlna\AppData\Local\Programs\Python\Python312\Lib\json\__init__.py", line 346, in loads
    return _default_decoder.decode(s)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\vlna\AppData\Local\Programs\Python\Python312\Lib\json\decoder.py", line 337, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\vlna\AppData\Local\Programs\Python\Python312\Lib\json\decoder.py", line 355, in raw_decode
    raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 2 (char 1)

It looks like remote server returned an unexpected content and it made ProGPT code crash. It happened only one time.

Same Issue is back.

File "/home/container/.local/lib/python3.12/site-packages/discord/ext/commands/core.py", line 235, in wrapped ret = await coro(*args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/container/bot.py", line 252, in chatgpt response = conversation.prompt(question) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/container/.local/lib/python3.12/site-packages/ProGPT/Conversation.py", line 91, in prompt if data["message"]["status"] != "finished_successfully": ~~~~^^^^^^^^^^^ KeyError: 'message'

Cloudflare check blocks access

Library no more works because cloudflare blocks access and website expect to prove user is a real human.

After KeyError exception at

if data["message"]["status"] != "finished_successfully":
file progpt-response.txt contains
{"detail":{"message":"Client challenge required","code":"challenge_required"}}

As I know Cloudflare uses cookies to identify valid session.

not working

File "/home/runner/sarthakgpt/main.py", line 6, in
print(bot.prompt("who invented electricity?"))
File "/home/runner/sarthakgpt/.pythonlibs/lib/python3.10/site-packages/ProGPT/Generative.py", line 84, in prompt
if data["message"]["status"] != "finished_successfully":
KeyError: 'message'
Traceback (most recent call last):
File "/home/runner/sarthakgpt/main.py", line 6, in
print(bot.prompt("who invented electricity?"))
File "/home/runner/sarthakgpt/.pythonlibs/lib/python3.10/site-packages/ProGPT/Generative.py", line 84, in prompt
if data["message"]["status"] != "finished_successfully":
KeyError: 'message'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.