ai-gateway/types/audio.go

10 lines
275 B
Go
Raw Normal View History

2023-11-28 10:32:26 +00:00
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"`
}