You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
292 B
Python

1 year ago
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)