Neuer Discord-Command für tiefe Recherche in 3 Phasen: 1. Initiale Qdrant-Suche mit der Originalfrage 2. LLM generiert Folgefragen, sucht erneut (max 2 Iterationen) 3. Synthese aller gesammelten Chunks zu umfassender Antwort Nutzbar via /deepask oder @bot deepask. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
903 B
Go
41 lines
903 B
Go
// actions.go – Typsichere Konstanten für Agent-Actions
|
||
package agents
|
||
|
||
const (
|
||
// Research
|
||
ActionQuery = "query"
|
||
ActionDeepAsk = "deepask"
|
||
|
||
// Memory
|
||
ActionStore = "store"
|
||
ActionIngest = "ingest"
|
||
|
||
// Task
|
||
ActionAdd = "add"
|
||
ActionList = "list"
|
||
ActionDone = "done"
|
||
ActionDelete = "delete"
|
||
|
||
// Memory
|
||
ActionIngestURL = "url"
|
||
ActionIngestPDF = "pdf"
|
||
ActionProfile = "profile"
|
||
ActionProfileShow = "profile-show"
|
||
|
||
// Knowledge
|
||
ActionKnowledgeList = "list"
|
||
ActionKnowledgeDelete = "delete"
|
||
|
||
// Tool/Email
|
||
ActionEmail = "email"
|
||
ActionEmailSummary = "summary"
|
||
ActionEmailUnread = "unread"
|
||
ActionEmailRemind = "remind"
|
||
ActionEmailIngest = "ingest"
|
||
ActionEmailMove = "move"
|
||
ActionEmailTriage = "triage"
|
||
ActionEmailTriageHistory = "triage-history"
|
||
ActionEmailTriageCorrect = "triage-correct"
|
||
ActionEmailTriageSearch = "triage-search"
|
||
)
|