ChatAgentResponse

class ChatAgentResponse(BaseModel):

Response of a ChatAgent.

Attributes: msgs (List[BaseMessage]): A list of zero, one or several messages. If the list is empty, there is some error in message generation. If the list has one message, this is normal mode. If the list has several messages, this is the critic mode. terminated (bool): A boolean indicating whether the agent decided to terminate the chat session. info (Dict[str, Any]): Extra information about the chat message.

msg

def msg(self):