Skip to content

Commit ef5fa7d

Browse files
committed
feat: update spec for audio & video
1 parent a821246 commit ef5fa7d

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

spec/tracespec/model.go

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,18 +81,14 @@ type ModelFileURL struct {
8181

8282
type ModelAudioURL struct {
8383
Name string `json:"name,omitempty"`
84-
// Required. You can enter a valid audio URL or MDN Base64 data of audio.
85-
// MDN: https://developer.mozilla.org/en-US/docs/Web/URI/Reference/Schemes/data#syntax
86-
URL string `json:"url,omitempty"`
87-
Detail string `json:"detail,omitempty"`
84+
// Required. You can enter a valid audio URL of audio.
85+
URL string `json:"url,omitempty"`
8886
}
8987

9088
type ModelVideoURL struct {
9189
Name string `json:"name,omitempty"`
92-
// Required. You can enter a valid video URL or MDN Base64 data of video.
93-
// MDN: https://developer.mozilla.org/en-US/docs/Web/URI/Reference/Schemes/data#syntax
94-
URL string `json:"url,omitempty"`
95-
Detail string `json:"detail,omitempty"`
90+
// Required. You can enter a valid video URL of video.
91+
URL string `json:"url,omitempty"`
9692
}
9793
type ModelToolCall struct {
9894
ID string `json:"id,omitempty"`

0 commit comments

Comments
 (0)