├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── embedchain_utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkedar7/embedchain-fastdash/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkedar7/embedchain-fastdash/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkedar7/embedchain-fastdash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkedar7/embedchain-fastdash/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkedar7/embedchain-fastdash/HEAD/app.py -------------------------------------------------------------------------------- /embedchain_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkedar7/embedchain-fastdash/HEAD/embedchain_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fast-dash 2 | embedchain==0.0.65 3 | gunicorn --------------------------------------------------------------------------------