Files
mayfly-go/server/internal/ai/api/form/form.go
meilin.huang 3768cef62d feat: ai助手优化等
Co-authored-by: Copilot <copilot@github.com>
2026-04-28 22:37:10 +08:00

15 lines
364 B
Go

package form
type ChatMsgType string
const (
ChatMsgTypeText ChatMsgType = "text" // 文本消息
ChatMsgTypeInterruptResume ChatMsgType = "interruptResume" // 恢复中断
)
type ChatMsg struct {
SessionId string `json:"sessionId"`
Type ChatMsgType `json:"type"`
Content string `json:"content" binding:"required"`
}