liamebs commited on
Commit
fcd36fc
1 Parent(s): a717598

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -60,10 +60,11 @@ examples = [
60
 
61
  gradio_interface = gr.Interface(
62
  fn=generate_text,
63
- inputs="text",
64
- outputs="text",
65
  examples=examples,
66
  title="Vicuna-7B",
 
67
  )
68
  gradio_interface.launch()
69
 
 
60
 
61
  gradio_interface = gr.Interface(
62
  fn=generate_text,
63
+ inputs=[gr.Textbox(label="Input", lines=2)]
64
+ outputs=[gr.Textbox(label="Result", lines=10)]
65
  examples=examples,
66
  title="Vicuna-7B",
67
+ description="Getting output from GGML-based model.",
68
  )
69
  gradio_interface.launch()
70