mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-28 06:06:39 +08:00
10 lines
313 B
Go
10 lines
313 B
Go
package model
|
|
|
|
type TextToSpeechRequest struct {
|
|
Model string `json:"model" binding:"required"`
|
|
Input string `json:"input" binding:"required"`
|
|
Voice string `json:"voice" binding:"required"`
|
|
Speed float64 `json:"speed"`
|
|
ResponseFormat string `json:"response_format"`
|
|
}
|