Signed-off-by: yihong0618 <zouzou0208@gmail.com>tags/1.4.3
| @@ -6,7 +6,6 @@ from pydantic import BaseModel, Field | |||
| from core.model_runtime.entities.llm_entities import LLMUsage | |||
| from core.rag.entities.citation_metadata import RetrievalSourceMetadata | |||
| from core.workflow.entities.node_entities import NodeRunResult | |||
| from core.workflow.entities.workflow_node_execution import WorkflowNodeExecutionStatus | |||
| class RunCompletedEvent(BaseModel): | |||
| @@ -39,11 +38,3 @@ class RunRetryEvent(BaseModel): | |||
| error: str = Field(..., description="error") | |||
| retry_index: int = Field(..., description="Retry attempt number") | |||
| start_at: datetime = Field(..., description="Retry start time") | |||
| class SingleStepRetryEvent(NodeRunResult): | |||
| """Single step retry event""" | |||
| status: WorkflowNodeExecutionStatus = WorkflowNodeExecutionStatus.RETRY | |||
| elapsed_time: float = Field(..., description="elapsed time") | |||
| @@ -39,10 +39,6 @@ from core.variables.variables import ( | |||
| from core.workflow.constants import CONVERSATION_VARIABLE_NODE_ID, ENVIRONMENT_VARIABLE_NODE_ID | |||
| class InvalidSelectorError(ValueError): | |||
| pass | |||
| class UnsupportedSegmentTypeError(Exception): | |||
| pass | |||
| @@ -4,7 +4,6 @@ from . import ( | |||
| app_model_config, | |||
| audio, | |||
| base, | |||
| completion, | |||
| conversation, | |||
| dataset, | |||
| document, | |||
| @@ -19,7 +18,6 @@ __all__ = [ | |||
| "app_model_config", | |||
| "audio", | |||
| "base", | |||
| "completion", | |||
| "conversation", | |||
| "dataset", | |||
| "document", | |||
| @@ -55,7 +55,3 @@ class MemberNotInTenantError(BaseServiceError): | |||
| class RoleAlreadyAssignedError(BaseServiceError): | |||
| pass | |||
| class RateLimitExceededError(BaseServiceError): | |||
| pass | |||
| @@ -1,5 +0,0 @@ | |||
| from services.errors.base import BaseServiceError | |||
| class CompletionStoppedError(BaseServiceError): | |||
| pass | |||