mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-28 17:29:44 +00:00
7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
export enum sseResponseEventEnum {
|
|
error = 'error',
|
|
answer = 'answer',
|
|
moduleStatus = 'moduleStatus',
|
|
appStreamResponse = 'appStreamResponse' // sse response request
|
|
}
|