mirror of
https://github.com/langgenius/dify.git
synced 2026-01-30 07:32:45 +08:00
Adds support for GPT-4.1 and Amazon Bedrock DeepSeek-R1 models. Fixes issues with app creation from template categories and DSL version checks. Updates version numbers in configuration files and Docker setup to 0.15.7 for consistency. Addresses issues #18807, #18868, #18872, #18878, and #18912. Signed-off-by: -LAN- <laipz8200@outlook.com>
19 lines
392 B
Python
19 lines
392 B
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class PackagingInfo(BaseSettings):
|
|
"""
|
|
Packaging build information
|
|
"""
|
|
|
|
CURRENT_VERSION: str = Field(
|
|
description="Dify version",
|
|
default="0.15.7",
|
|
)
|
|
|
|
COMMIT_SHA: str = Field(
|
|
description="SHA-1 checksum of the git commit used to build the app",
|
|
default="",
|
|
)
|