Removed the old heavy logic

This commit is contained in:
afjcjsbx
2026-03-08 18:22:15 +01:00
parent f87ab99833
commit 536e26aff1
5 changed files with 162 additions and 109 deletions
+4 -6
View File
@@ -30,12 +30,10 @@ type InboundMessage struct {
}
type OutboundMessage struct {
Channel string `json:"channel"`
ChatID string `json:"chat_id"`
Content string `json:"content"`
ReplyToMessageID string `json:"reply_to_message_id,omitempty"`
SkipPlaceholder bool `json:"skip_placeholder,omitempty"` // Tells Manager not to use Thinking
TriggerPlaceholder bool `json:"trigger_placeholder,omitempty"`
Channel string `json:"channel"`
ChatID string `json:"chat_id"`
Content string `json:"content"`
ReplyToMessageID string `json:"reply_to_message_id,omitempty"`
}
// MediaPart describes a single media attachment to send.