mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
export enum ChatCompletionRequestMessageRoleEnum {
|
|
'System' = 'system',
|
|
'User' = 'user',
|
|
'Assistant' = 'assistant',
|
|
'Function' = 'function',
|
|
'Tool' = 'tool'
|
|
}
|