Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -51,12 +51,17 @@ custom_html = """
|
|
| 51 |
</div>
|
| 52 |
"""
|
| 53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
# Use the custom_html for the title
|
| 55 |
demo = gr.ChatInterface(
|
| 56 |
respond,
|
| 57 |
title=custom_html, # Use the custom HTML for the title
|
| 58 |
-
description=
|
| 59 |
-
#description="Ghar ka ai this AI does not store any data you can use as much you want without logging",
|
| 60 |
additional_inputs=[
|
| 61 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 62 |
gr.Slider(minimum=1, maximum=2048, value=2048, step=1, label="Max new tokens"),
|
|
|
|
| 51 |
</div>
|
| 52 |
"""
|
| 53 |
|
| 54 |
+
# Combined description with new lines
|
| 55 |
+
combined_description = """
|
| 56 |
+
Ghar ka ai this AI does not store any data you can use as much you want without logging<br>
|
| 57 |
+
Follow us on [Instagram](https://www.instagram.com/khellon_patel_21
|
| 58 |
+
"""
|
| 59 |
+
|
| 60 |
# Use the custom_html for the title
|
| 61 |
demo = gr.ChatInterface(
|
| 62 |
respond,
|
| 63 |
title=custom_html, # Use the custom HTML for the title
|
| 64 |
+
description=combined_description,
|
|
|
|
| 65 |
additional_inputs=[
|
| 66 |
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 67 |
gr.Slider(minimum=1, maximum=2048, value=2048, step=1, label="Max new tokens"),
|