Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -114,16 +114,17 @@ additional_inputs=[
|
|
114 |
)
|
115 |
]
|
116 |
|
117 |
-
|
118 |
with gr.Blocks() as demo:
|
119 |
-
|
120 |
-
|
121 |
-
description = "You can use this Space to test out the current model [(Tonic/GaiaMiniMed)](https://huggingface.co/Tonic/GaiaMiniMed) with chat memory optimized for falcon models. or duplicate this Space and use it locally or on 🤗HuggingFace. [Join me on Discord to build together](https://discord.gg/VqTxc76K3u)."
|
122 |
|
123 |
gr.ChatInterface(
|
124 |
generate,
|
125 |
examples=EXAMPLES,
|
126 |
additional_inputs=additional_inputs,
|
|
|
127 |
)
|
128 |
|
129 |
-
|
|
|
|
|
|
114 |
)
|
115 |
]
|
116 |
|
|
|
117 |
with gr.Blocks() as demo:
|
118 |
+
title = "👋🏻Welcome to Tonic's GaiaMiniMed🦅⚕️Falcon Chat🚀"
|
119 |
+
description = "You can use this Space to test out the current model [(Tonic/GaiaMiniMed)](https://huggingface.co/Tonic/GaiaMiniMed) with chat memory optimized for falcon models or duplicate this Space and use it locally or on 🤗HuggingFace. [Join me on Discord to build together](https://discord.gg/VqTxc76K3u)."
|
|
|
120 |
|
121 |
gr.ChatInterface(
|
122 |
generate,
|
123 |
examples=EXAMPLES,
|
124 |
additional_inputs=additional_inputs,
|
125 |
+
theme="ParityError/Anime"
|
126 |
)
|
127 |
|
128 |
+
)
|
129 |
+
|
130 |
+
demo.queue(concurrency_count=100, api_open=True).launch(show_api=True)
|