10 lines
275 B
Go
10 lines
275 B
Go
|
package types
|
||
|
|
||
|
type SpeechAudioRequest struct {
|
||
|
Model string `json:"model"`
|
||
|
Input string `json:"input"`
|
||
|
Voice string `json:"voice"`
|
||
|
ResponseFormat string `json:"response_format,omitempty"`
|
||
|
Speed float64 `json:"speed,omitempty"`
|
||
|
}
|