The glamourous AI coding agent for your favourite terminal 💘
1package chat 2 3import "github.com/charmbracelet/crush/internal/message" 4 5// SendMsg represents a message to send a chat message. 6type SendMsg struct { 7 Text string 8 Attachments []message.Attachment 9}