fix phone number format issue (#2217)

This commit is contained in:
Shuchang Zheng
2025-04-23 01:56:43 +08:00
committed by GitHub
parent 654ba03e09
commit 19e86a197a
3 changed files with 28 additions and 15 deletions

View File

@@ -12,9 +12,11 @@ LOG = structlog.get_logger()
class CheckPhoneNumberFormatResponse(BaseModel):
phone_number_format: str
page_info: str
is_phone_number_input: bool
thought: str
is_current_format_correct: bool
phone_number_format: str | None
is_current_format_correct: bool | None
recommended_phone_number: str | None