├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── app.py ├── imgs ├── .DS_Store ├── img1.png ├── img2.png ├── img3.png ├── img4.png └── img5.png ├── llm.py ├── querying.py ├── requirements.txt ├── table_description.py └── where_clause.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | chatdb 3 | vectors 4 | csvs 5 | __pycache__ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/app.py -------------------------------------------------------------------------------- /imgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/imgs/.DS_Store -------------------------------------------------------------------------------- /imgs/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/imgs/img1.png -------------------------------------------------------------------------------- /imgs/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/imgs/img2.png -------------------------------------------------------------------------------- /imgs/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/imgs/img3.png -------------------------------------------------------------------------------- /imgs/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/imgs/img4.png -------------------------------------------------------------------------------- /imgs/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/imgs/img5.png -------------------------------------------------------------------------------- /llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/llm.py -------------------------------------------------------------------------------- /querying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/querying.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/requirements.txt -------------------------------------------------------------------------------- /table_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/table_description.py -------------------------------------------------------------------------------- /where_clause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apurv101/chatdb/HEAD/where_clause.py --------------------------------------------------------------------------------