shukdevdatta123 commited on
Commit
b7392da
·
verified ·
1 Parent(s): b56a615

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -45,6 +45,10 @@ def generate_first(text, voice='af_heart', speed=1, use_gpu=CUDA_AVAILABLE):
45
  return (24000, audio.numpy()), ps
46
  return None, ''
47
 
 
 
 
 
48
  def tokenize_first(text, voice='af_heart'):
49
  words = text.split() # This splits the text into words based on spaces
50
  return words # Return a list of words
 
45
  return (24000, audio.numpy()), ps
46
  return None, ''
47
 
48
+ # Arena API
49
+ def predict(text, voice='af_heart', speed=1):
50
+ return generate_first(text, voice, speed, use_gpu=False)[0]
51
+
52
  def tokenize_first(text, voice='af_heart'):
53
  words = text.split() # This splits the text into words based on spaces
54
  return words # Return a list of words