| 1 | export type SpeechScope = 'all' | 'single' |
| 2 | export type SpeechLength = 'short' | 'medium' | 'long' |
| 3 | export type SpeechStyle = 'formal' | 'conversational' | 'storytelling' | 'custom' |
| 4 | |
| 5 | export interface SpeechConfig { |
| 6 | scope: SpeechScope |
| 7 | length: SpeechLength |
| 8 | style: SpeechStyle |
| 9 | customStyle?: string |
| 10 | modelConfigId?: string |
| 11 | } |
| 12 |