├── .streamlit └── config.toml ├── README.md ├── app.py ├── data ├── employees.csv └── purchases.csv ├── groqcloud_darkmode.png ├── prompts └── base_prompt.txt └── requirements.txt /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/app.py -------------------------------------------------------------------------------- /data/employees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/data/employees.csv -------------------------------------------------------------------------------- /data/purchases.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/data/purchases.csv -------------------------------------------------------------------------------- /groqcloud_darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/groqcloud_darkmode.png -------------------------------------------------------------------------------- /prompts/base_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/prompts/base_prompt.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/definitive-io/duckdb-text2sql/HEAD/requirements.txt --------------------------------------------------------------------------------