- edge node store 및 console 업데이트 - node adapters(cli, ollama, vllm, mock) 리팩토링 - node router, run_manager, store 개선 - proto 파일(control.proto, runtime.proto) 및 생성 코드 업데이트 - config 업데이트
124 lines
3.1 KiB
YAML
124 lines
3.1 KiB
YAML
edge:
|
|
id: "edge-dgx-group"
|
|
name: "DGX Group"
|
|
|
|
server:
|
|
listen: "0.0.0.0:9090"
|
|
|
|
tls:
|
|
enabled: false
|
|
|
|
logging:
|
|
level: "info"
|
|
pretty: true
|
|
|
|
metrics:
|
|
port: 9092
|
|
|
|
console:
|
|
adapter: "cli"
|
|
agent: "cline-dgx"
|
|
session_id: "default"
|
|
background: false
|
|
timeout_sec: 300
|
|
|
|
nodes:
|
|
# id is the stable node identity; omitting it falls back to an auto UUID (dev only).
|
|
- id: "node-dgx-01"
|
|
alias: "local-node"
|
|
token: "changeme"
|
|
adapters:
|
|
ollama:
|
|
enabled: false
|
|
base_url: "http://localhost:11434"
|
|
vllm:
|
|
enabled: false
|
|
endpoint: "http://localhost:8000"
|
|
cli:
|
|
enabled: true
|
|
profiles:
|
|
claude:
|
|
command: "claude"
|
|
args:
|
|
- "-p"
|
|
- "--dangerously-skip-permissions"
|
|
- "--output-format"
|
|
- "stream-json"
|
|
- "--include-partial-messages"
|
|
- "--verbose"
|
|
env: []
|
|
persistent: false
|
|
terminal: false
|
|
output_format: "claude-json"
|
|
gemini:
|
|
command: "gemini"
|
|
args:
|
|
- "--approval-mode"
|
|
- "yolo"
|
|
- "--output-format"
|
|
- "stream-json"
|
|
- "-m"
|
|
- "gemini-2.5-flash"
|
|
- "-p"
|
|
env: []
|
|
persistent: false
|
|
terminal: false
|
|
output_format: "stream-json"
|
|
codex:
|
|
command: "codex"
|
|
args:
|
|
- "exec"
|
|
- "--dangerously-bypass-approvals-and-sandbox"
|
|
- "--color"
|
|
- "never"
|
|
- "--skip-git-repo-check"
|
|
- "--json"
|
|
resume_args:
|
|
- "exec"
|
|
- "resume"
|
|
- "--json"
|
|
env: []
|
|
persistent: false
|
|
terminal: false
|
|
output_format: "codex-json"
|
|
mode: "codex-exec"
|
|
opencode:
|
|
command: "/config/.npm-global/bin/opencode"
|
|
args:
|
|
- "run"
|
|
- "--title"
|
|
- "untitle"
|
|
- "--model"
|
|
- "ollama-dgx/qwen3.6:35b-a3b-bf16"
|
|
- "--format"
|
|
- "json"
|
|
- "--dangerously-skip-permissions"
|
|
env: []
|
|
persistent: false
|
|
terminal: false
|
|
output_format: "opencode-json"
|
|
cline-dgx:
|
|
command: "/config/.npm-global/bin/cline"
|
|
args:
|
|
- "-y"
|
|
- "--json"
|
|
- "--config"
|
|
- "/config/.cline/profiles/ollama-dgx"
|
|
env: []
|
|
persistent: false
|
|
terminal: false
|
|
output_format: "cline-json"
|
|
cline-m1:
|
|
command: "/config/.npm-global/bin/cline"
|
|
args:
|
|
- "-y"
|
|
- "--json"
|
|
- "--config"
|
|
- "/config/.cline/profiles/ollama-m1"
|
|
env: []
|
|
persistent: false
|
|
terminal: false
|
|
output_format: "cline-json"
|
|
runtime:
|
|
concurrency: 4
|
|
workspace_root: "/tmp/iop/workspace"
|