Jofthomas HF staff commited on
Commit
4906073
·
verified ·
1 Parent(s): ecd2215

Update TextGen/router.py

Browse files
Files changed (1) hide show
  1. TextGen/router.py +3 -19
TextGen/router.py CHANGED
@@ -69,30 +69,14 @@ def inference(input_prompt: str):
69
 
70
 
71
  @app.get("/generate_wav")
72
- async def generate_wav(request: Request):
73
  try:
74
- body = await request.json()
75
- text = body.get("text")
76
- language = body.get("language", "en")
77
- voice_choice = body.get("voice_choice", "./blacksmith.mp3")
78
-
79
- valid_voices = [
80
- "./voices/blacksmith.mp3",
81
- "./voices/female.wav",
82
- "./voices/female.mp3",
83
- "./voices/narator_out.wav",
84
- "./voices/blacksmith2.mp3"
85
- ]
86
-
87
- if voice_choice not in valid_voices:
88
- raise HTTPException(status_code=400, detail="Invalid voice choice")
89
-
90
  # Use the Gradio client to generate the wav file
91
  result = tts_client.predict(
92
  text, # str in 'Text Prompt' Textbox component
93
  language, # str in 'Language' Dropdown component
94
- voice_choice, # str (filepath on your computer (or URL) of file) in 'Reference Audio' Audio component
95
- voice_choice, # str (filepath on your computer (or URL) of file) in 'Use Microphone for Reference' Audio component
96
  False, # bool in 'Use Microphone' Checkbox component
97
  False, # bool in 'Cleanup Reference Voice' Checkbox component
98
  False, # bool in 'Do not use language auto-detect' Checkbox component
 
69
 
70
 
71
  @app.get("/generate_wav")
72
+ async def generate_wav(text: str, language: str = "en",voice:str="./voices/blacksmith.mp3):
73
  try:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  # Use the Gradio client to generate the wav file
75
  result = tts_client.predict(
76
  text, # str in 'Text Prompt' Textbox component
77
  language, # str in 'Language' Dropdown component
78
+ voice, # str (filepath on your computer (or URL) of file) in 'Reference Audio' Audio component
79
+ voice, # str (filepath on your computer (or URL) of file) in 'Use Microphone for Reference' Audio component
80
  False, # bool in 'Use Microphone' Checkbox component
81
  False, # bool in 'Cleanup Reference Voice' Checkbox component
82
  False, # bool in 'Do not use language auto-detect' Checkbox component