Esml commited on
Commit
bd2ddd9
1 Parent(s): 0e77125

update type in parameter passing

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ def main_note(filepath):
13
 
14
  demo = gr.Interface(
15
  fn= main_note,
16
- input = gr.Audio(type="filepath"),
17
- output= "text"
18
  )
19
 
20
  if __name__ == "__main__":
 
13
 
14
  demo = gr.Interface(
15
  fn= main_note,
16
+ inputs = gr.Audio(type="filepath"),
17
+ outputs= "text"
18
  )
19
 
20
  if __name__ == "__main__":