Text2Sql application using llama-index and Snowflake with Streamlit.
Python 3.11 and Poetry
Run:
-
If you do not have Python 3.11, use
conda
to create a new environment or install it from the official website, and then runpoetry env use
command so that poetry uses it as context. -
poetry config virtualenvs.in-project true
-
poetry install
- Rename
.env.example
to.env
and complete the variables according your Snowflake credentials:
USER=
PASSWORD=
SCHEMA=
DATABASE_NAME=
ACCOUNT=
ROLE_NAME=
WAREHOUSE_NAME=
TABLE_NAME=
OPENAI_API_KEY=<openai-api-key>
- Start the app:
python -m streamlit run src/main.py
Run:
ruff format .
ruff check . --fix