mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
8 lines
184 B
Python
8 lines
184 B
Python
from typing import Final
|
|
|
|
DIFY_CLI_PATH: Final[str] = ".dify/bin/dify"
|
|
|
|
DIFY_CLI_PATH_PATTERN: Final[str] = "dify-cli-{os}-{arch}"
|
|
|
|
DIFY_CLI_CONFIG_PATH: Final[str] = ".dify_cli.json"
|