16 lines
292 B
Python
16 lines
292 B
Python
|
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)
|