Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -118,11 +118,12 @@ 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 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
|
128 |
-
|
|
|
|
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 |
+
client = gr.Interface(
|
122 |
+
generate,
|
123 |
+
examples=EXAMPLES,
|
124 |
+
additional_inputs=additional_inputs,
|
125 |
+
theme="ParityError/Anime"
|
126 |
+
)
|
127 |
|
128 |
+
# Launch the Gradio interface
|
129 |
+
client.launch(show_api=True)
|