You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If too many workflow-based runs are running, then this can lead to chat-based runs not getting processed. We should have a way to split the processing of runs so that this backup does not occur.
The text was updated successfully, but these errors were encountered:
Save the following tool (or an equivalent version) to your local machine:
Name: sleep
Description: Sleep for some number of seconds
Args: seconds: The number of seconds to sleep
#!/usr/bin/env sh
sleep ${SECONDS}
Add this tool in the UI.
Create a workflow.
Add a step to this workflow, adding the above tool and giving it the following instructions: Sleep for 120 seconds
Run this workflow from the UI. Optionally, in another browser tab, run the workflow again. You should see that the second workflow's run doesn't start until the first one finishes.
In another browser window, chat with any agent. This should succeed without waiting for the workflows to finish.
If too many workflow-based runs are running, then this can lead to chat-based runs not getting processed. We should have a way to split the processing of runs so that this backup does not occur.
The text was updated successfully, but these errors were encountered: