mirror of
https://github.com/langgenius/dify.git
synced 2026-01-29 15:13:53 +08:00
10 lines
263 B
Python
10 lines
263 B
Python
from typing import Final
|
|
|
|
SANDBOX_WORK_DIR: Final[str] = "work"
|
|
|
|
DIFY_CLI_PATH: Final[str] = f"{SANDBOX_WORK_DIR}/.dify/bin/dify"
|
|
|
|
DIFY_CLI_PATH_PATTERN: Final[str] = "dify-cli-{os}-{arch}"
|
|
|
|
DIFY_CLI_CONFIG_PATH: Final[str] = f"{SANDBOX_WORK_DIR}/.dify_cli.json"
|