Update gradio_app.py
Browse files- gradio_app.py +2 -2
gradio_app.py
CHANGED
@@ -23,11 +23,11 @@ import seedir as sd
|
|
23 |
sd.seedir(".")
|
24 |
|
25 |
# Read CSS content
|
26 |
-
with open("static/style.css", "r") as file:
|
27 |
CSS = file.read()
|
28 |
file.close()
|
29 |
|
30 |
-
JS_PATH = "static/script.js"
|
31 |
|
32 |
def user(message, history):
|
33 |
if not isinstance(history, list):
|
|
|
23 |
sd.seedir(".")
|
24 |
|
25 |
# Read CSS content
|
26 |
+
with open("gradio_app/static/style.css", "r") as file:
|
27 |
CSS = file.read()
|
28 |
file.close()
|
29 |
|
30 |
+
JS_PATH = "gradio_app/static/script.js"
|
31 |
|
32 |
def user(message, history):
|
33 |
if not isinstance(history, list):
|