dkdaniz commited on
Commit
48090f8
1 Parent(s): aa58e08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
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