ChatBlob is for user/AI messages. Memobase will automatically understand and extract the messages into structured profiles.

An example of ChatBlob is below:

The message format is OpenAI Message format:

{
  "role": "user" | "assistant",
  "content": "string",
  "alias": "string, optional",
  "created_at": "string, optional"
}
  • role: user or assistant
  • content: message content
  • alias: optional. You can set the name of the character(user or assistant), it will reflect in the memory profile.
  • created_at: optional. You can set the date of the message.