ai_scheduler/internal/entitys/chat_history.go

12 lines
232 B
Go

package entitys
import (
"ai_scheduler/internal/data/constants"
)
type ChatHistory struct {
SessionID string `json:"session_id"`
Role constants.Caller `json:"role"`
Content string `json:"content"`
}