daniloedu commited on
Commit
264f8d1
1 Parent(s): 249285c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -32,16 +32,17 @@ 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")
44
  ],
 
 
 
 
 
 
 
45
  )
46
 
47
  iface.launch()
 
32
  respond,
33
  inputs=gr.inputs.Textbox(label="Prompt for all the different models"),
34
  outputs=[
 
 
 
 
 
 
35
  gr.outputs.Textbox(label="Falcon Response"),
36
  gr.outputs.Textbox(label="Guanaco Response"),
37
  gr.outputs.Textbox(label="Pythia Response")
38
  ],
39
+ title = "AI Response Aggregator with different LLM models in HugginFace. 🤗",
40
+ description="The purpose is to show the interaction of different models so you can make rapid comparisons 🖥️💡",
41
+ article="<p>This interface allows users to compare real-time outputs from multiple AI models, namely Falcon, Guanaco, and Pythia. By inputting a prompt, users can observe the different ways each model responds, providing a comprehensive view of their capabilities and styles.</p>"
42
+ )
43
+
44
+
45
+
46
  )
47
 
48
  iface.launch()