OpenAI Auth/Registration 流程中的页面状态。
| 16 | |
| 17 | @dataclass |
| 18 | class FlowState: |
| 19 | """OpenAI Auth/Registration 流程中的页面状态。""" |
| 20 | |
| 21 | page_type: str = "" |
| 22 | continue_url: str = "" |
| 23 | method: str = "GET" |
| 24 | current_url: str = "" |
| 25 | source: str = "" |
| 26 | payload: Dict[str, Any] = field(default_factory=dict) |
| 27 | raw: Dict[str, Any] = field(default_factory=dict) |
| 28 | |
| 29 | |
| 30 | def generate_device_id(): |
no outgoing calls
no test coverage detected