ading2210 / poe-api

[UNMAINTAINED] A reverse engineered Python API wrapper for Quora's Poe, which provides free access to ChatGPT, GPT-4, and Claude.
https://pypi.org/project/poe-api
GNU General Public License v3.0
2.5k stars 315 forks source link

Raise "Timed out waiting for other messages to send" #162

Open CharlieCho2017 opened 1 year ago

CharlieCho2017 commented 1 year ago

After running a few hour,it will rasie error "Timed out waiting for other messages to send" . No message is waitng when I check it in the Poe website。

ichuixue commented 1 year ago

Same problem. You may comment out the following lines in poe.py:

    timer = 0
    while None in self.active_messages.values():
      time.sleep(0.01)
      timer += 0.01
      if timer > timeout:
        raise RuntimeError("Timed out waiting for other messages to send.")