Created
May 13, 2023 19:59
-
-
Save Huntinex/c13cc7bffe20d2eee24873ee184404dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import poe | |
client = poe.Client(input("Enter The Token: ")) | |
F="" | |
message=input("\n\tYou: ") | |
while message != "END": | |
F=F+message | |
message=input("\n\t") | |
while F!="THEEND": | |
print("\n\tBot: \n") | |
for chunk in client.send_message("copybara", F): | |
print(chunk["text_new"], end="", flush=True) | |
message=input("\n\n\tYou: ") | |
while message != "END": | |
F=F+message | |
message=input("\n\t") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment