Update app.py
Browse files
app.py
CHANGED
@@ -80,7 +80,10 @@ with gr.Blocks(title="LLM with TTS",head=head) as demo:
|
|
80 |
|
81 |
msg.submit(call_generate_text, [msg, chatbot], [msg, chatbot])
|
82 |
|
83 |
-
|
84 |
-
|
85 |
-
print(
|
86 |
-
|
|
|
|
|
|
|
|
80 |
|
81 |
msg.submit(call_generate_text, [msg, chatbot], [msg, chatbot])
|
82 |
|
83 |
+
import os
|
84 |
+
pwd = os.getcwd()
|
85 |
+
#print(pwd)
|
86 |
+
path=(os.path.join(pwd,"models"))
|
87 |
+
print(path)
|
88 |
+
|
89 |
+
demo.launch(allowed_paths=[path])
|