Skip to content

Instantly share code, notes, and snippets.

@Huntinex
Created May 13, 2023 19:59
Show Gist options
  • Save Huntinex/c13cc7bffe20d2eee24873ee184404dd to your computer and use it in GitHub Desktop.
Save Huntinex/c13cc7bffe20d2eee24873ee184404dd to your computer and use it in GitHub Desktop.
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