daniloedu commited on
Commit
249285c
·
1 Parent(s): 2ca96d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -30,14 +30,14 @@ def respond(message):
30
 
31
  iface = gr.Interface(
32
  respond,
33
- gr.Markdown(
 
 
34
  """
35
  # Chat With different LLM models in HugginFace. 🤗
36
  ## Models used are Falcon, Guanaco and Pythia.
37
  The purpose is to show the interaction of different models so you can make rapid comparisons 🖥️💡
38
  """),
39
- inputs=gr.inputs.Textbox(label="Prompt for all the different models"),
40
- outputs=[
41
  gr.outputs.Textbox(label="Falcon Response"),
42
  gr.outputs.Textbox(label="Guanaco Response"),
43
  gr.outputs.Textbox(label="Pythia Response")
 
30
 
31
  iface = gr.Interface(
32
  respond,
33
+ inputs=gr.inputs.Textbox(label="Prompt for all the different models"),
34
+ outputs=[
35
+ gr.Markdown(
36
  """
37
  # Chat With different LLM models in HugginFace. 🤗
38
  ## Models used are Falcon, Guanaco and Pythia.
39
  The purpose is to show the interaction of different models so you can make rapid comparisons 🖥️💡
40
  """),
 
 
41
  gr.outputs.Textbox(label="Falcon Response"),
42
  gr.outputs.Textbox(label="Guanaco Response"),
43
  gr.outputs.Textbox(label="Pythia Response")