mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
15 lines
370 B
Go
15 lines
370 B
Go
package vo
|
|
|
|
type HistoryMessage struct {
|
|
BaseVo
|
|
ChatId string `json:"chat_id"`
|
|
UserId uint `json:"user_id"`
|
|
RoleId uint `json:"role_id"`
|
|
Model string `json:"model"`
|
|
Type string `json:"type"`
|
|
Icon string `json:"icon"`
|
|
Tokens int `json:"tokens"`
|
|
Content string `json:"content"`
|
|
UseContext bool `json:"use_context"`
|
|
}
|