mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
import { Text2SpeechVoiceEnum } from './constant';
|
|
|
|
export type Text2SpeechProps = {
|
|
model?: string;
|
|
voice?: `${Text2SpeechVoiceEnum}`;
|
|
input: string;
|
|
speed?: number;
|
|
};
|