Files
FastGPT/packages/global/core/ai/speech/api.d.ts
2023-11-09 09:46:57 +08:00

9 lines
178 B
TypeScript

import { Text2SpeechVoiceEnum } from './constant';
export type Text2SpeechProps = {
model?: string;
voice?: `${Text2SpeechVoiceEnum}`;
input: string;
speed?: number;
};