-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LLM sends a message before state transition completes #67
Comments
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Current Setup
Interview Bot with Dynamic flow handling
initial node (greet user) -> call start_interview function (only a print statement here) -> call transition function (picks question to be asked from flow manager state) -> create and set node to question_node (specifies the question to be asked in LLM context)
Expected Functionality
Actual Behaviour
As per my understanding, LLM sends a messages before the new node context is updated. Let me know if any code is needed from my end. I use the same format as in the dynamic flow example.
UPDATE: I added a 1 second sleep after setting the node and before the transition function ends, it works fine now.
The text was updated successfully, but these errors were encountered: