13 lines
258 B
Python
13 lines
258 B
Python
"""⑥ 제목 훼손 게이트 2단(VLM 가독성) 응답 스키마."""
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class FrameLegibility(BaseModel):
|
|
index: int
|
|
legible: bool
|
|
broken: str
|
|
|
|
|
|
class TitleGateAnswer(BaseModel):
|
|
frames: list[FrameLegibility]
|