├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── env.example ├── requirements.txt ├── resource ├── data │ ├── .gitkeep │ └── deforum │ │ └── Deforum.txt └── images │ ├── request.png │ └── response.png ├── run.sh ├── scripts ├── __init__.py ├── app.py ├── create_index.py ├── retriever.py └── utils.py └── storage_deforum └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- 1 | NUM_WORKERS=4 2 | IMAGE_VERSION=0.1.0 3 | MY_OPENAI_API_KEY= 4 | EMBEDDING_MODEL=text-davinci-002 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource/data/deforum/Deforum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/resource/data/deforum/Deforum.txt -------------------------------------------------------------------------------- /resource/images/request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/resource/images/request.png -------------------------------------------------------------------------------- /resource/images/response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/resource/images/response.png -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/scripts/app.py -------------------------------------------------------------------------------- /scripts/create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/scripts/create_index.py -------------------------------------------------------------------------------- /scripts/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/scripts/retriever.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElmiraGhorbani/deforum_stable_diffusion_chatbot/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /storage_deforum/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------