mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
export enum ChatCompletionRequestMessageRoleEnum {
|
|
'System' = 'system',
|
|
'User' = 'user',
|
|
'Assistant' = 'assistant',
|
|
'Function' = 'function'
|
|
}
|