Update README.md
Browse files
README.md
CHANGED
@@ -178,8 +178,12 @@ class ChatBot:
|
|
178 |
bot = ChatBot()
|
179 |
|
180 |
title = "👋🏻Welcome to Tonic's StableMed Chat🚀"
|
181 |
-
description = "
|
|
|
|
|
|
|
182 |
examples = [["What is the proper treatment for buccal herpes?", "Please provide information on the most effective antiviral medications and home remedies for treating buccal herpes."]]
|
|
|
183 |
iface = gr.Interface(
|
184 |
fn=bot.predict,
|
185 |
title=title,
|
@@ -189,6 +193,7 @@ iface = gr.Interface(
|
|
189 |
outputs="text",
|
190 |
theme="ParityError/Anime"
|
191 |
)
|
|
|
192 |
iface.launch()
|
193 |
```
|
194 |
|
|
|
178 |
bot = ChatBot()
|
179 |
|
180 |
title = "👋🏻Welcome to Tonic's StableMed Chat🚀"
|
181 |
+
description = """
|
182 |
+
You can use this Space to test out the current model [StableMed](https://huggingface.co/Tonic/stablemed) or You can also use 😷StableMed⚕️ on your own data & in your own way by cloning this space. 🧬🔬🔍 Simply click here: <a style="display:inline-block" href="https://huggingface.co/spaces/Tonic/StableMed_Chat?duplicate=true"><img src="https://img.shields.io/badge/-Duplicate%20Space-blue?labelColor=white&style=flat&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAP5JREFUOE+lk7FqAkEURY+ltunEgFXS2sZGIbXfEPdLlnxJyDdYB62sbbUKpLbVNhyYFzbrrA74YJlh9r079973psed0cvUD4A+4HoCjsA85X0Dfn/RBLBgBDxnQPfAEJgBY+A9gALA4tcbamSzS4xq4FOQAJgCDwV2CPKV8tZAJcAjMMkUe1vX+U+SMhfAJEHasQIWmXNN3abzDwHUrgcRGmYcgKe0bxrblHEB4E/pndMazNpSZGcsZdBlYJcEL9Afo75molJyM2FxmPgmgPqlWNLGfwZGG6UiyEvLzHYDmoPkDDiNm9JR9uboiONcBXrpY1qmgs21x1QwyZcpvxt9NS09PlsPAAAAAElFTkSuQmCC&logoWidth=14" alt="Duplicate Space"></a></h3>
|
183 |
+
# Join us : 🌟TeamTonic🌟 is always making cool demos! Join our active builder's🛠️community on 👻Discord: [Discord](https://discord.gg/GWpVpekp) On 🤗Huggingface: [TeamTonic](https://huggingface.co/TeamTonic) & [MultiTransformer](https://huggingface.co/MultiTransformer) On 🌐Github: [Polytonic](https://github.com/tonic-ai) & contribute to 🌟 [PolyGPT](https://github.com/tonic-ai/polygpt-alpha)
|
184 |
+
"""
|
185 |
examples = [["What is the proper treatment for buccal herpes?", "Please provide information on the most effective antiviral medications and home remedies for treating buccal herpes."]]
|
186 |
+
|
187 |
iface = gr.Interface(
|
188 |
fn=bot.predict,
|
189 |
title=title,
|
|
|
193 |
outputs="text",
|
194 |
theme="ParityError/Anime"
|
195 |
)
|
196 |
+
|
197 |
iface.launch()
|
198 |
```
|
199 |
|