15 lines
359 B
Go
15 lines
359 B
Go
package model
|
|
|
|
type Message struct {
|
|
Role string `json:"role"`
|
|
Content string `json:"content"`
|
|
ToolCalls []ToolCall `json:"tool_calls,omitempty"`
|
|
}
|
|
|
|
type ToolCall struct {
|
|
ID string `json:"id"`
|
|
Type string `json:"type"`
|
|
FunctionName string `json:"function"`
|
|
FunctionArguments string `json:"arguments"`
|
|
}
|