daniloedu commited on
Commit
de177cf
·
1 Parent(s): 94a4897

Putting more context into the App.

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