llm mail integration
This commit is contained in:
23
internal/agents/actions.go
Normal file
23
internal/agents/actions.go
Normal file
@@ -0,0 +1,23 @@
|
||||
// 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"
|
||||
)
|
||||
Reference in New Issue
Block a user