mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 17:38:10 +00:00
- Embed sdk/, example/, meta/, go.mod from homeagent-sdk (no .git)
- Core .gitignore excludes SDK toolchain: bin/, tools/, package/
- RegisterInputChannel + ChannelDef(NoMemory, Cleaner) in SDK
- IOManager input channel registry with GetInputChannelDef
- eventloop: apply channel Cleaner/NoMemory to interrupt text
- context engine: channelDefLookup applied in textForVector
- document store: ChannelCleaner param for archive functions
- All callers/adapters updated with ChannelDef{} default
9 lines
172 B
Go
9 lines
172 B
Go
package sdk
|
|
|
|
// LLMAPI provides access to the LLM provider manager.
|
|
type LLMAPI interface {
|
|
ListSources() []string
|
|
SetSource(name string) error
|
|
CurrentSource() string
|
|
}
|