katara / app.py
dkdaniz's picture
Update app.py
88ad66e
raw
history blame
No virus
242 Bytes
# import ingest
import sys
import os
data_path = os.path.join(os.path.dirname(__file__), 'localGPTUI')
# Add the data directory to sys.path
sys.path.append(data_path)
from localGPTUI import localGPTUI
localGPTUI.main()
# ingest.main()