Does anyone have clue why Wan 2.2 animate not workin?

#50
by tqef - opened

The problem may be that some generations are never returning from the API, causing the space to hang indefinitely waiting for them. In the code:

  1. The while loop starting at line 76 will never terminate if the returned status is not either "SUCCEEDED" or "FAILED" since there is no limit on retries.
  2. The requests.get()call at line 77 will wait indefinitely for a response since there is no timeout.

Sign up or log in to comment