Next-Dining-The-Video-Game/gpt.py

12 lines
244 B
Python
Raw Permalink Normal View History

2023-01-15 04:58:03 +00:00
from revChatGPT.ChatGPT import Chatbot
session_token = # Get your own
2023-01-15 04:58:03 +00:00
chatbot = Chatbot({'session_token': session_token})
print(chatbot.ask(open('prompt').read())['message'])
2023-01-15 04:58:03 +00:00
while True:
i = input()
print(chatbot.ask(i)['message'])