mirror of https://github.com/langgenius/dify.git
feat(datasource): change datasource result type to event-stream
This commit is contained in:
parent
739ebf2117
commit
cf66d111ba
|
|
@ -9,8 +9,8 @@ class DatasourceStreamEvent(Enum):
|
|||
"""
|
||||
Datasource Stream event
|
||||
"""
|
||||
PROCESSING = "processing"
|
||||
COMPLETED = "completed"
|
||||
PROCESSING = "datasource_processing"
|
||||
COMPLETED = "datasource_completed"
|
||||
|
||||
|
||||
class BaseDatasourceEvent(BaseModel):
|
||||
|
|
|
|||
Loading…
Reference in New Issue