mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 17:38:10 +00:00
- Output channels generate per-channel tools: output_send__{name} (type=output) + output_send__{name}_help
- content is JSON string transparently passed to plugin handler for routing
- EventAgentLLMChain: full LLM response forwarded after each turn for webui/logs
- sdk.New refactored to SDKConfig struct (no more 13 positional args)
- RegisterOutputChannel adds desc param for JSON format documentation
- channelDevice simplified (no Tools method), desc field added
- Child agent permission updated for output_send__ prefix
- System prompt: output gates, multi-call, long messages split
- WebUI: subscribes to EventAgentLLMChain in SSE, no output channel
- Tests updated for new naming convention
16 lines
390 B
Modula-2
16 lines
390 B
Modula-2
module gitcode.com/JianFeeeee/HomeAgent
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/yuin/gopher-lua v1.1.2
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require github.com/yanyiwu/gojieba v1.4.7 // indirect
|
|
|
|
require gitcode.com/JianFeeeee/homeagent-sdk v0.0.0-20260708004841-e9bdcf9304b0 // direct
|
|
|
|
replace gitcode.com/JianFeeeee/homeagent-sdk => /tmp/opencode/homeagent-sdk-repo
|