Skip to main content

No project description provided

Project description

revChatGPTAuth

Authenticate using your browser's cookies - no need to inconveniently copy and paste from your browser!

Getting Started

Prerequisites

  • <= Python 3.9

Installing

pip install revChatGPTAuth

Usage

from revChatGPTAuth import get_access_token
access_token = get_access_token('brave') # your browser

With revChatGPT

The following example codes are from the revChatGPT README.

Basic example (streamed)

from revChatGPT.V1 import Chatbot
from revChatGPTAuth import get_access_token

chatbot = Chatbot(config={
  "access_token": get_access_token('brave')
})

print("Chatbot: ")
prev_text = ""
for data in chatbot.ask(
    "Hello world",
):
    message = data["message"][len(prev_text) :]
    print(message, end="", flush=True)
    prev_text = data["message"]
print()

Basic example (single result)

from revChatGPT.V1 import Chatbot
from revChatGPTAuth import get_access_token

chatbot = Chatbot(config={
  "access_token": get_access_token('brave')
})

prompt = "how many beaches does portugal have?"
response = ""

for data in chatbot.ask(
  prompt
):
    response = data["message"]

print(response)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

revchatgptauth-2023.4.16.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

revchatgptauth-2023.4.16-py3-none-any.whl (6.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page