Create a class DialogueConnectorManager responsible for orchestrating the dialogues between users and agents.
In the current implementation, the platform creates a new dialogue connector and agent for each new user. The plan is to refactor this by creating a dialogue connector manager that is responsible for the creation of a UserEventHandler, a dialogue connector, and an agent for each new user.
Create a class
DialogueConnectorManagerresponsible for orchestrating the dialogues between users and agents.In the current implementation, the platform creates a new dialogue connector and agent for each new user. The plan is to refactor this by creating a dialogue connector manager that is responsible for the creation of a
UserEventHandler, a dialogue connector, and an agent for each new user.