tykiww commited on
Commit
df7a162
1 Parent(s): d374d8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -3,7 +3,6 @@
3
  ###########################
4
 
5
  ##################### Imports #####################
6
- import time
7
  import gradio as gr
8
  from utilities.setup import get_files
9
  from server import EmbeddingService, QAService
@@ -12,7 +11,7 @@ from server import EmbeddingService, QAService
12
  #################### Functions ####################
13
  def process_transcripts(files, context):
14
 
15
- time.sleep(15)
16
  with EmbeddingService(conf) as e:
17
  f = e.run(files)
18
  # some way to wait or a progress bar?
 
3
  ###########################
4
 
5
  ##################### Imports #####################
 
6
  import gradio as gr
7
  from utilities.setup import get_files
8
  from server import EmbeddingService, QAService
 
11
  #################### Functions ####################
12
  def process_transcripts(files, context):
13
 
14
+ print(files)
15
  with EmbeddingService(conf) as e:
16
  f = e.run(files)
17
  # some way to wait or a progress bar?