10 lines
221 B
Go
10 lines
221 B
Go
package model
|
|
|
|
type Message struct {
|
|
Id string `json:"-"`
|
|
Seq int `json:"-"`
|
|
Role string `json:"role"`
|
|
Content string `json:"content"`
|
|
ToolCalls []ToolCall `json:"tool_calls,omitempty"`
|
|
}
|