add fern sdk (#1786)

This commit is contained in:
LawyZheng
2025-02-19 00:58:48 +08:00
committed by GitHub
parent e7c3e4e37a
commit a258406a86
153 changed files with 17372 additions and 255 deletions

View File

@@ -0,0 +1,5 @@
# This file was auto-generated by Fern from our API Definition.
from .unprocessable_entity_error import UnprocessableEntityError
__all__ = ["UnprocessableEntityError"]

View File

@@ -0,0 +1,9 @@
# This file was auto-generated by Fern from our API Definition.
from ..core.api_error import ApiError
from ..types.http_validation_error import HttpValidationError
class UnprocessableEntityError(ApiError):
def __init__(self, body: HttpValidationError):
super().__init__(status_code=422, body=body)