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
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
Built Distribution
File details
Details for the file revchatgptauth-2023.4.16.tar.gz
.
File metadata
- Download URL: revchatgptauth-2023.4.16.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.9.16 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a10026844f05bda7b7a4f9ebacf39bcd8bc920f5015f26f60e665afbd5c434f |
|
MD5 | 954f53478238295bedd6334cc6c48483 |
|
BLAKE2b-256 | 719096495d6584ef36841d30475b1e6b8d37b043c47d77610fdc76458d41be1c |
File details
Details for the file revchatgptauth-2023.4.16-py3-none-any.whl
.
File metadata
- Download URL: revchatgptauth-2023.4.16-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.9.16 Linux/5.15.0-1035-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 181713e369bb2fa6848fedd8c1162caef82392dee6bb43a9c585f98773e08f7b |
|
MD5 | 42c411cd0921ab43a19c64c40598bb52 |
|
BLAKE2b-256 | 59c8ec862786c68fc9bc1704e7b6d22ad37f27f59a98f7dcf04900c0b8ea95dd |