mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
export enum sseResponseEventEnum {
|
|
error = 'error',
|
|
answer = 'answer', // animation stream
|
|
response = 'response', // direct response, not animation
|
|
moduleStatus = 'moduleStatus',
|
|
appStreamResponse = 'appStreamResponse' // sse response request
|
|
}
|