Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -30,14 +30,14 @@ def respond(message):
|
|
30 |
|
31 |
iface = gr.Interface(
|
32 |
respond,
|
33 |
-
gr.
|
|
|
|
|
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")
|