ambrosemcduffy commited on
Commit
47eb7f1
·
1 Parent(s): 3ec2666

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -28,11 +28,10 @@ if __name__ == "__main__":
28
  import gradio as gr
29
 
30
  gr.Interface(
31
- make_inference,
32
- [
33
- gr.inputs.Textbox(lines=2, label="Question"),
34
- gr.outputs.Textbox(label="Answer")
35
- ],
36
- title="BlackQA",
37
- description="Generated Text of Black heros",
38
- ).launch()
 
28
  import gradio as gr
29
 
30
  gr.Interface(
31
+ make_inference,
32
+ gr.inputs.Textbox(lines=2, label="Question"),
33
+ gr.outputs.Textbox(label="Answer"),
34
+ title="BlackQA",
35
+ description="Generated Text of Black heros",
36
+ ).launch()
37
+