sort pbs downloaded files (#3496)

This commit is contained in:
LawyZheng
2025-09-22 14:41:59 +08:00
committed by GitHub
parent 38fe260d2c
commit 7e73a55046
3 changed files with 15 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
from datetime import datetime
from pydantic import BaseModel, Field
@@ -7,3 +9,4 @@ class FileInfo(BaseModel):
url: str = Field(..., description="URL to access the file")
checksum: str | None = Field(None, description="SHA-256 checksum of the file")
filename: str | None = Field(None, description="Original filename")
modified_at: datetime | None = Field(None, description="Modified time of the file")