wasmdashai commited on
Commit
8c46f74
·
verified ·
1 Parent(s): e363c7d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,8 +42,8 @@ def t2seq(text,namn_model):
42
 
43
  return str(out)
44
 
45
- tab1 = gr.Interface(fn=greet, inputs=["text",model_choices], outputs="text")
46
- tab2 = gr.Interface(fn=greet, inputs=["text",model_choices], outputs="text")
47
  import gradio as gr
48
 
49
 
 
42
 
43
  return str(out)
44
 
45
+ tab1 = gr.Interface(fn=t2t, inputs=["text",model_choices], outputs="text")
46
+ tab2 = gr.Interface(fn=t2seq, inputs=["text",model_choices], outputs="text")
47
  import gradio as gr
48
 
49