mirror of
https://github.com/langgenius/dify.git
synced 2026-03-05 06:00:29 -05: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"
|