Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
b5cb59a
1
Parent(s):
d4f953b
Fix demo.launch() for Hugging Face Spaces environment
Browse files
app.py
CHANGED
@@ -205,7 +205,7 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css) as demo:
|
|
205 |
|
206 |
gr.Markdown(
|
207 |
"""
|
208 |
-
## About
|
209 |
|
210 |
DentaInstruct-1.2B is a specialised language model fine-tuned on dental educational content.
|
211 |
It's designed to provide educational information about dental health, procedures, and oral care.
|
@@ -248,4 +248,4 @@ with gr.Blocks(theme=gr.themes.Soft(), css=custom_css) as demo:
|
|
248 |
clear.click(lambda: None, None, chatbot, queue=False)
|
249 |
|
250 |
if __name__ == "__main__":
|
251 |
-
demo.launch()
|
|
|
205 |
|
206 |
gr.Markdown(
|
207 |
"""
|
208 |
+
## About the model
|
209 |
|
210 |
DentaInstruct-1.2B is a specialised language model fine-tuned on dental educational content.
|
211 |
It's designed to provide educational information about dental health, procedures, and oral care.
|
|
|
248 |
clear.click(lambda: None, None, chatbot, queue=False)
|
249 |
|
250 |
if __name__ == "__main__":
|
251 |
+
demo.launch(server_name="0.0.0.0", server_port=7860)
|