Seed a preview result into local session state for debugging.
| 275 | label: str = "" |
| 276 | |
| 277 | |
| 278 | class CaptchaVerifyPayloadRequest(BaseModel): |
| 279 | """Build Tencent captcha verify payload from click points.""" |
| 280 | |
| 281 | model_config = ConfigDict(extra="ignore", populate_by_name=True) |
| 282 | |
| 283 | sess: str | None = None |
| 284 | points: list[CaptchaPoint] = Field(default_factory=list) |
| 285 | collect: str | None = None |
nothing calls this directly
no outgoing calls
no test coverage detected