Files
souvenir/model/Message.go
T
Radu Macocian (admac) 4f989aa512 added structure for db
2026-06-12 16:44:04 +02:00

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"`
}