├── .env.example ├── .gitignore ├── Makefile ├── README.md ├── app.py ├── dalle.py ├── firestore_db.py ├── gpt3.py ├── logger.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/app.py -------------------------------------------------------------------------------- /dalle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/dalle.py -------------------------------------------------------------------------------- /firestore_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/firestore_db.py -------------------------------------------------------------------------------- /gpt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/gpt3.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/logger.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunkim/book_writer/HEAD/requirements.txt --------------------------------------------------------------------------------