initiate_chats

initiate_chats(chat_queue: list[dict[str, typing.Any]]) -> list[autogen.ChatResult]

Initiate a list of chats.

Parameters:
NameDescription
chat_queueA list of dictionaries containing the information about the chats.

Each dictionary should contain the input arguments for ConversableAgent.initiate_chat.

Type: list[dict[str, typing.Any]]
Returns:
TypeDescription
list[autogen.ChatResult](list): a list of ChatResult objects corresponding to the finished chats in the chat_queue.