AnarPythonMaster's picture
Rename app to app.py
17a8141 verified
Raw
History Blame Contribute Delete
209 Bytes
import os
import sys
import subprocess
if not os.path.exists("vector_db"):
subprocess.run(
[sys.executable, "app/ingest.py"],
check=True
)
sys.path.append("app")
import streamlit_app