OpenAI recently made the ChatGPT model accessible anonymously. You can access it without authentication. Read more about it in the official docs
pip install anonymous-chatgpt
chatgpt --prompt "hello world"
OR
chatgpt --chat
from anonymous_chatgpt import chat_prompt, ChatGPT
message = chat_promt(prompt="hello world")
print(message)
# For chat
chatgpt = ChatGPT()
resp1 = chatgpt.chat(prompt="hello, my name is John")
resp2 = chatgpt.chat(prompt="what is my name?")
chat.openai.com
/backend-anon/sentinel/chat-requirements
sentinel-token
which is the token used for authentication and authorization of the requests (not users)./backend-anon/conversation