a_initiate_group_chat
Parameters:
Returns:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
a_initiate_group_chat(
pattern: Pattern,
messages: list[dict[str, Any]] | str,
max_rounds: int = 20
) -> tuple[ChatResult, ContextVariables, 'Agent']
| Name | Description |
|---|---|
pattern | Pattern object that encapsulates the chat configuration. Type: Pattern |
messages | Initial message(s). Type: list[dict[str, typing.Any]] | str |
max_rounds | Maximum number of conversation rounds. Type: int Default: 20 |
| Type | Description |
|---|---|
| tuple[ChatResult, ContextVariables, ‘Agent’] | ChatResult: Conversations chat history. ContextVariables: Updated Context variables. “ConversableAgent”: Last speaker. |