Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,14 @@
|
|
1 |
# import ingest
|
2 |
import sys
|
|
|
3 |
|
4 |
sys.path.append(os.path.join(os.path.dirname(__file__), "./localGPTUI"))
|
5 |
|
6 |
# importing the hello
|
7 |
from localGPTUI import run
|
8 |
|
|
|
|
|
9 |
# ingest.main()
|
10 |
|
11 |
|
|
|
1 |
# import ingest
|
2 |
import sys
|
3 |
+
import os
|
4 |
|
5 |
sys.path.append(os.path.join(os.path.dirname(__file__), "./localGPTUI"))
|
6 |
|
7 |
# importing the hello
|
8 |
from localGPTUI import run
|
9 |
|
10 |
+
run()
|
11 |
+
|
12 |
# ingest.main()
|
13 |
|
14 |
|