mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-23 18:38:11 +00:00
- IO abstraction layer with OutputChannel routing and capability validation - Three-layer memory (Context-Document-Graph) with TF-IDF relevance pruning - OneBot V11 QQ protocol plugin with Reverse WebSocket client - Plugin system with hot-reload (SKILL.md + native factories) - Knowledge system with TF-IDF vector indexing - Personality system (personal.md) - Text memory (JSONL with rotation) - Change tracker (overlayfs) with rollback - Lua adapter VM - Design document (DESIGN.md) Module: gitcode.com/JianFeeeee/HomeAgent
35 lines
703 B
YAML
35 lines
703 B
YAML
daemon:
|
|
listen_addr: ":8080"
|
|
data_dir: "/var/lib/homeagent"
|
|
heartbeat_interval: 15s
|
|
check_interval: 30s
|
|
log_level: "info"
|
|
|
|
defaults:
|
|
image: "homeagent/agent-base:latest"
|
|
llm_endpoints:
|
|
- "https://api.openai.com/v1"
|
|
snapshot_policy:
|
|
interval: 10m
|
|
max_snapshots: 20
|
|
pre_action: true
|
|
post_action: false
|
|
rollback_policy:
|
|
max_retries: 3
|
|
health_threshold: 3
|
|
cooldown_period: 30s
|
|
auto_rollback: true
|
|
resource_limit:
|
|
cpu: "2"
|
|
memory: "2g"
|
|
disk: "10g"
|
|
network: true
|
|
openclaw_enabled: true
|
|
|
|
agents:
|
|
- id: "default"
|
|
name: "Default Agent"
|
|
image: "homeagent/agent-base:latest"
|
|
llm_endpoints:
|
|
- "https://api.openai.com/v1"
|