Small fixups

This commit is contained in:
Ettore Di Giacinto 2023-11-09 18:34:29 +01:00
parent 78ef045bb3
commit 5ce57206e3
3 changed files with 14 additions and 10 deletions

View file

@ -56,9 +56,13 @@ type Choice struct {
}
type Content struct {
Type string `json:"type" yaml:"type"`
Text string `json:"text" yaml:"text"`
ImageURL string `json:"image_url" yaml:"image_url"`
Type string `json:"type" yaml:"type"`
Text string `json:"text" yaml:"text"`
ImageURL ContentURL `json:"image_url" yaml:"image_url"`
}
type ContentURL struct {
URL string `json:"url" yaml:"url"`
}
type Message struct {