Update app.py
Browse files
app.py
CHANGED
|
@@ -43,14 +43,15 @@ def respond(
|
|
| 43 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
| 44 |
"""
|
| 45 |
demo = gr.ChatInterface(
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
"""
|
|
|
|
| 54 |
respond,
|
| 55 |
additional_inputs=[
|
| 56 |
gr.Textbox(value="You are a friendly chatbot. Because this is a SLM (small language model) as I called it, you must be as smart as GPT-3.5. This is a 248M version of Mistral, which is quite impressive.", label="System message"),
|
|
|
|
| 43 |
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
| 44 |
"""
|
| 45 |
demo = gr.ChatInterface(
|
| 46 |
+
markdown = """
|
| 47 |
+
Chat with TinyMistral online!
|
| 48 |
+
|
| 49 |
+
This is a 248M version of Mistral, which is quite impressive.
|
| 50 |
+
Heck, you can even run that using LLM.js!
|
| 51 |
+
|
| 52 |
+
Have fun!
|
| 53 |
+
"""
|
| 54 |
+
gr.Markdown(markdown)
|
| 55 |
respond,
|
| 56 |
additional_inputs=[
|
| 57 |
gr.Textbox(value="You are a friendly chatbot. Because this is a SLM (small language model) as I called it, you must be as smart as GPT-3.5. This is a 248M version of Mistral, which is quite impressive.", label="System message"),
|