add new tool: to_captcha
This commit is contained in:
parent
8f86dbbdac
commit
4852345bf6
12 changed files with 716 additions and 35 deletions
13
api/domain/captcha_state.py
Normal file
13
api/domain/captcha_state.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from enum import Enum
|
||||
|
||||
|
||||
class CaptchaState(str, Enum):
|
||||
"""Состояние captcha-флоу для задачи."""
|
||||
|
||||
none = "none"
|
||||
awaiting = "awaiting"
|
||||
solved = "solved"
|
||||
timeout_prompt = "timeout_prompt"
|
||||
extended = "extended"
|
||||
aborted = "aborted"
|
||||
failed = "failed"
|
||||
Loading…
Add table
Add a link
Reference in a new issue