Skip to content

@waylis/core


@waylis/core / SystemMessageBody

Type Alias: SystemMessageBody

ts
type SystemMessageBody = Extract<MessageBody, 
  | {
  type: "text";
}
  | {
  type: "markdown";
}
  | {
  type: "file";
}
  | {
  type: "files";
}
  | {
  type: "linechart";
}
  | {
  type: "table";
}>;

Defined in: src/message/types.ts:111

Message bodies generated only by the system.

Released under the MIT License.