Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.camel-ai.org/llms.txt

Use this file to discover all available pages before exploring further.

ChatAgentResponse

class ChatAgentResponse(BaseModel):
Response of a ChatAgent. Parameters:
  • 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):