jarvis/scratch/ai.py

16 lines
292 B
Python
Raw Normal View History

2023-06-12 16:06:24 +00:00
from revChatGPT.V1 import Chatbot
chatbot = Chatbot(config={
"email": "pushes_mouthy_0x@icloud.com",
"password": "9hCyLiGWUdr9MX2mepTk"
})
prompt = "how many beaches does portugal have?"
response = ""
for data in chatbot.ask(
prompt
):
response = data["message"]
print(response)