/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ /** * The role of the message sender. */ export type AiChatMessageSchemaRole = (typeof AiChatMessageSchemaRole)[keyof typeof AiChatMessageSchemaRole]; // eslint-disable-next-line @typescript-eslint/no-redeclare export const AiChatMessageSchemaRole = { system: 'system', user: 'user', assistant: 'assistant', } as const;