From 221dd405b0f2dfcc192520e081e7aca12e3d9e4b Mon Sep 17 00:00:00 2001 From: fynnfluegge Date: Sat, 10 Feb 2024 19:02:43 +0100 Subject: [PATCH] fix: streamlit executable path --- codeqai/app.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codeqai/app.py b/codeqai/app.py index 12de076..969abed 100644 --- a/codeqai/app.py +++ b/codeqai/app.py @@ -146,7 +146,7 @@ def run(): spinner.stop() if args.action == "app": - subprocess.run(["streamlit", "run", "codeqai/streamlit.py"]) + subprocess.run(["streamlit", "run", "streamlit.py"]) else: spinner = yaspin(text="💾 Loading vector store...", color="green") spinner.start() diff --git a/pyproject.toml b/pyproject.toml index 8129e5c..80204c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "codeqai" -version = "0.0.12" +version = "0.0.13" description = "" authors = ["fynnfluegge "] readme = "README.md"