├── .gitignore ├── README.md ├── chat.py ├── input.txt ├── output.txt ├── prompts.txt ├── system_01_chapter_first_draft.txt └── system_02_expand_chapter.txt /.gitignore: -------------------------------------------------------------------------------- 1 | key_openai.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/README.md -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/chat.py -------------------------------------------------------------------------------- /input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/input.txt -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/output.txt -------------------------------------------------------------------------------- /prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/prompts.txt -------------------------------------------------------------------------------- /system_01_chapter_first_draft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/system_01_chapter_first_draft.txt -------------------------------------------------------------------------------- /system_02_expand_chapter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/nonfiction_drafting/HEAD/system_02_expand_chapter.txt --------------------------------------------------------------------------------