Akjava commited on
Commit
a1b89ce
·
verified ·
1 Parent(s): 9e121ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
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
- from pathlib import Path
84
- DATA_PATH = Path("./models")
85
- print(DATA_PATH)
86
- demo.launch(allowed_paths=[str(DATA_PATH)])
 
 
 
 
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])