mp4 / app /exceptions.py
gitdeem's picture
Upload 34 files
a9837a2 verified
raw
history blame
191 Bytes
class LLMResponseValidationError(Exception):
"""LLM 响应验证错误"""
def __init__(self, message: str):
self.message = message
super().__init__(self.message)