| 123456789101112131415161718 | from pydantic import Field
from pydantic_settings import BaseSettings
class PackagingInfo(BaseSettings):
    """
    Packaging build information
    """
    CURRENT_VERSION: str = Field(
        description="Dify version",
        default="1.0.0",
    )
    COMMIT_SHA: str = Field(
        description="SHA-1 checksum of the git commit used to build the app",
        default="",
    )
 |