snowby666 / poe-api-wrapper

👾 A Python API wrapper for Poe.com. With this, you will have free access to GPT-4, Claude, Llama, Gemini, Mistral and more! 🚀
https://pypi.org/project/poe-api-wrapper/
GNU General Public License v3.0
858 stars 99 forks source link

About the package with Python call problem #104

Closed mazecate closed 6 months ago

mazecate commented 7 months ago

Question about Python calling suite,

When I try to make a call, this message always appears "The request to poe.com exceeded the rate limit. Please try again later."

Why is this error displayed? Just the first time to use

from poe_api_wrapper import PoeApi
token = "token"
client = PoeApi(token)
# client.chat_with_bot()
print(client)

bot = "gpt3_5   "
message = "What is reverse engineering?"

# Create new chat thread
# Streamed example:
for chunk in client.send_message(bot, message):
    print(chunk["response"], end="", flush=True)
print("\n")
snowby666 commented 6 months ago

duplicate of #93