Files
video-gen/video-gen-api/app/schemas/captcha.py
T
2026-05-25 17:08:18 +08:00

18 lines
292 B
Python

from pydantic import BaseModel
class CaptchaResponse(BaseModel):
captcha_id: str
background_image: str
slider_image: str
slider_width: int
class CaptchaVerifyRequest(BaseModel):
captcha_id: str
x_offset: int
class CaptchaTokenResponse(BaseModel):
token: str