24 lines
424 B
Go
24 lines
424 B
Go
// actions.go – Typsichere Konstanten für Agent-Actions
|
||
package agents
|
||
|
||
const (
|
||
// Research
|
||
ActionQuery = "query"
|
||
|
||
// Memory
|
||
ActionStore = "store"
|
||
ActionIngest = "ingest"
|
||
|
||
// Task
|
||
ActionAdd = "add"
|
||
ActionList = "list"
|
||
ActionDone = "done"
|
||
ActionDelete = "delete"
|
||
|
||
// Tool/Email
|
||
ActionEmail = "email"
|
||
ActionEmailSummary = "summary"
|
||
ActionEmailUnread = "unread"
|
||
ActionEmailRemind = "remind"
|
||
)
|