├── .gitignore ├── 2019.csv ├── LICENSE ├── README.md ├── app.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/ChatCSV-Streamlit-App/HEAD/.gitignore -------------------------------------------------------------------------------- /2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/ChatCSV-Streamlit-App/HEAD/2019.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/ChatCSV-Streamlit-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/ChatCSV-Streamlit-App/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIAnytime/ChatCSV-Streamlit-App/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | pandasai 3 | python-dotenv 4 | --------------------------------------------------------------------------------