daniloedu commited on
Commit
7850e8e
·
1 Parent(s): 6847f94

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -26,6 +26,14 @@ def respond(message):
26
 
27
  return generated_text_falcon, generated_text_guanaco, generated_text_pythia
28
 
 
 
 
 
 
 
 
 
29
  iface = gr.Interface(
30
  respond,
31
  inputs=gr.inputs.Textbox(label="Prompt for all the different models"),
 
26
 
27
  return generated_text_falcon, generated_text_guanaco, generated_text_pythia
28
 
29
+ with gr.blocks as demo:
30
+ gr.Markdown(
31
+ """
32
+ # Chat With different LLM models in HugginFace. 🤗
33
+ ## Models used are Falcon, Guanaco and Pythia.
34
+ The purpose is to show the interaction of different models so you can make rapid comparisons 🖥️💡
35
+ """)
36
+
37
  iface = gr.Interface(
38
  respond,
39
  inputs=gr.inputs.Textbox(label="Prompt for all the different models"),