1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/openapi/models/aiChatMessageSchemaRole.ts
2024-11-05 11:04:11 +02:00

19 lines
435 B
TypeScript

/**
* 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;