Many-in-one AI client.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
216 B

  1. export enum MessageRole {
  2. SYSTEM = 'system',
  3. USER = 'user',
  4. ASSISTANT = 'assistant',
  5. }
  6. export interface MessageObject {
  7. role: MessageRole;
  8. content: string;
  9. }
  10. export type Message = string | MessageObject;