drizzlezyk's picture
Upload deepdiver_v2/src/utils/status_codes.py with huggingface_hub
2da1872 verified
raw
history blame contribute delete
318 Bytes
# Copyright (c) 2025 Huawei Technologies Co., Ltd. All rights reserved.
#!/usr/bin/env python3
from enum import IntEnum
class JsonRpcErr(IntEnum):
PARSE_ERROR = -32700
INVALID_REQUEST = -32600
METHOD_NOT_FOUND = -32601
INVALID_PARAMS = -32602
INTERNAL_ERROR = -32603
REQUEST_TIMEOUT = -32000