LettaAPI.Model.AssistantMessage (letta_api v1.0.0)

A message sent by the LLM in response to user input. Used in the LLM context. Args: id (str): The ID of the message date (datetime): The date the message was created in ISO format name (Optional[str]): The name of the sender of the message content (Union[str, List[LettaAssistantMessageContentUnion]]): The message content sent by the agent (can be a string or an array of content parts)

Summary

Types

t()

@type t() :: %LettaAPI.Model.AssistantMessage{
  content: LettaAPI.Model.Content.t(),
  date: DateTime.t(),
  id: String.t(),
  message_type: String.t() | nil,
  name: String.t() | nil,
  otid: String.t() | nil,
  sender_id: String.t() | nil,
  step_id: String.t() | nil
}

Functions

decode(value)