dkdaniz commited on
Commit
f5df24b
1 Parent(s): e8d6dfb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,9 +7,9 @@ data_path = os.path.join(os.path.dirname(__file__), 'localGPTUI')
7
  # Add the data directory to sys.path
8
  sys.path.append(data_path)
9
 
10
- import localGPTUI
11
 
12
- localGPTUI.main()
13
 
14
  # ingest.main()
15
 
 
7
  # Add the data directory to sys.path
8
  sys.path.append(data_path)
9
 
10
+ from localGPTUI import frontend
11
 
12
+ frontend.main()
13
 
14
  # ingest.main()
15