llm mail integration

This commit is contained in:
Christoph K.
2026-03-19 21:46:12 +01:00
parent fdc7a8588d
commit 0e7aa3e7f2
19 changed files with 1707 additions and 306 deletions

View 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"
)