iop/configs/edge.yaml
toki 157a8a7076 feat: add console events, codex execution support and update config
- add console_events.go for edge console event handling
- add codex_exec.go for CLI codex execution
- add codex_exec_test.go for persistent CLI tests
- update console.go and oneshot.go with new features
- update config and edge.yaml for new settings
- update README files for edge and node apps
2026-05-04 07:55:08 +09:00

76 lines
1.8 KiB
YAML

server:
listen: "0.0.0.0:9090"
tls:
enabled: false
logging:
level: "info"
pretty: true
metrics:
port: 9092
console:
adapter: "cli"
model: "claude"
session_id: "default"
background: false
timeout_sec: 120
nodes:
- 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"
- "-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"
env: []
# codex exec is non-interactive; persistent mode uses codex exec
# resume per logical session instead of keeping stdin open.
persistent: true
terminal: false
output_format: "codex-json"
runtime:
concurrency: 4
workspace_root: "/tmp/iop/workspace"