|
|
@@ -18,6 +18,16 @@ type AudioRequest struct {
|
|
|
Speed *float64 `json:"speed,omitempty"`
|
|
|
StreamFormat string `json:"stream_format,omitempty"`
|
|
|
Metadata json.RawMessage `json:"metadata,omitempty"`
|
|
|
+ // vllm-omini
|
|
|
+ TaskType json.RawMessage `json:"task_type,omitempty"`
|
|
|
+ Language json.RawMessage `json:"language,omitempty"`
|
|
|
+ RefAudio json.RawMessage `json:"ref_audio,omitempty"`
|
|
|
+ RefText json.RawMessage `json:"ref_text,omitempty"`
|
|
|
+ XVectorOnlyMode json.RawMessage `json:"x_vector_only_mode,omitempty"`
|
|
|
+ MaxNewTokens json.RawMessage `json:"max_new_tokens,omitempty"`
|
|
|
+ InitialCodecChunkFrames json.RawMessage `json:"initial_codec_chunk_frames,omitempty"`
|
|
|
+ // TODO:ensure that the logic remains correct after the stream is started.
|
|
|
+ //Stream json.RawMessage `json:"stream,omitempty"`
|
|
|
}
|
|
|
|
|
|
func (r *AudioRequest) GetTokenCountMeta() *types.TokenCountMeta {
|