Replies: 1 comment 1 reply
-
I don't see you using any socketio code in the snippet you provided WebUI handles request FIFO manner, based on my assumption the server receives multiple txt2img request
if you want the request to be processed in your
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm making images with python code.
First, I run T2I and then run I2I with the resulting imageof T2I to generate the final image.
The code is modular, and the entire code is written using python-socketio. When the socket client sends a signal to the socket server, the socket server executes the module.
In this part, when the client sends signals multiple times in a row, my webui runs all of the T2I in turn and then I2I in turn. What I want is to run both the T2I and I2I of the first requests, generate the resulting image of the request, and then process the second and third requests.
How can I solve this problem?
The code below is part of the webui module.
Beta Was this translation helpful? Give feedback.
All reactions