This commit is contained in:
jyong
2025-06-06 17:14:43 +08:00
parent 1aa13bd20d
commit 21a3509bef
4 changed files with 153 additions and 2 deletions

View File

@ -304,4 +304,6 @@ class GetWebsiteCrawlResponse(BaseModel):
Get website crawl response
"""
result: list[WebSiteInfo]
result: Optional[list[WebSiteInfo]] = []
job_id: str = Field(..., description="The job id")
status: str = Field(..., description="The status of the job")