dkdaniz commited on
Commit
449f389
1 Parent(s): debf0e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -1,5 +1,11 @@
1
  import ingest
2
 
3
- ingest.main()
 
 
 
 
 
 
4
 
5
 
 
1
  import ingest
2
 
3
+ import sys
4
+ sys.path.insert(0, './localGPTUI')
5
+
6
+ # importing the hello
7
+ from localGPTUI import run
8
+
9
+ # ingest.main()
10
 
11