This commit is contained in:
jyong
2025-04-14 18:17:17 +08:00
parent 3340775052
commit 9f8e05d9f0
16 changed files with 1522 additions and 205 deletions

View File

@ -101,3 +101,9 @@ class ChildChunkDeleteIndexError(BaseHTTPException):
error_code = "child_chunk_delete_index_error"
description = "Delete child chunk index failed: {message}"
code = 500
class PipelineNotFoundError(BaseHTTPException):
error_code = "pipeline_not_found"
description = "Pipeline not found."
code = 404