Update gradio_app.py
Browse files- gradio_app.py +3 -2
gradio_app.py
CHANGED
@@ -18,8 +18,9 @@ DESCRIPTION = '''
|
|
18 |
<strong><span class="intro-icon">ℹ️</span> Notice:</strong> For research purposes only. AI responses may have limitations due to development, datasets, and architecture. <strong>Always consult a medical professional for health advice 🩺</strong>.
|
19 |
</div>
|
20 |
'''
|
21 |
-
CSS_PATH = "
|
22 |
-
JS_PATH = "
|
|
|
23 |
def user(message, history):
|
24 |
if not isinstance(history, list):
|
25 |
history = []
|
|
|
18 |
<strong><span class="intro-icon">ℹ️</span> Notice:</strong> For research purposes only. AI responses may have limitations due to development, datasets, and architecture. <strong>Always consult a medical professional for health advice 🩺</strong>.
|
19 |
</div>
|
20 |
'''
|
21 |
+
CSS_PATH = "gradio_app/static/style.css"
|
22 |
+
JS_PATH = "gradio_app/static/script.js"
|
23 |
+
|
24 |
def user(message, history):
|
25 |
if not isinstance(history, list):
|
26 |
history = []
|