PoTaTo721 commited on
Commit
32cc375
·
1 Parent(s): 81e0a1c

fix numpy import

Browse files
Files changed (1) hide show
  1. app.py +0 -17
app.py CHANGED
@@ -552,23 +552,6 @@ def build_app():
552
  [stream_audio, *global_audio_list, *global_error_list],
553
  concurrency_limit=1,
554
  )
555
-
556
- generate_stream.click(
557
- inference_stream,
558
- [
559
- refined_text,
560
- enable_reference_audio,
561
- reference_audio,
562
- reference_text,
563
- max_new_tokens,
564
- chunk_length,
565
- top_p,
566
- repetition_penalty,
567
- temperature,
568
- ],
569
- [stream_audio, global_audio_list[0], global_error_list[0]],
570
- concurrency_limit=10,
571
- )
572
  return app
573
 
574
 
 
552
  [stream_audio, *global_audio_list, *global_error_list],
553
  concurrency_limit=1,
554
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
555
  return app
556
 
557