mirror of
https://github.com/langgenius/dify.git
synced 2026-01-22 19:52:08 +08:00
10 lines
233 B
Python
10 lines
233 B
Python
from typing import Final
|
|
|
|
SANDBOX_WORK_DIR: Final[str] = "/work"
|
|
|
|
DIFY_CLI_PATH: Final[str] = "/work/.dify/bin/dify"
|
|
|
|
DIFY_CLI_PATH_PATTERN: Final[str] = "dify-cli-{os}-{arch}"
|
|
|
|
DIFY_CLI_CONFIG_PATH: Final[str] = "/work/config.json"
|