mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
19 lines
435 B
TypeScript
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;
|