├── .gitignore ├── LICENSE ├── README.md ├── chat_tkinter2.py ├── default_system.txt ├── prompt_summarize_01.txt ├── prompt_summarize_02.txt ├── step01_convert_docx.ps1 ├── step02_summarize.py └── step03_write_scratchpad.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/README.md -------------------------------------------------------------------------------- /chat_tkinter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/chat_tkinter2.py -------------------------------------------------------------------------------- /default_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/default_system.txt -------------------------------------------------------------------------------- /prompt_summarize_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/prompt_summarize_01.txt -------------------------------------------------------------------------------- /prompt_summarize_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/prompt_summarize_02.txt -------------------------------------------------------------------------------- /step01_convert_docx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/step01_convert_docx.ps1 -------------------------------------------------------------------------------- /step02_summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/step02_summarize.py -------------------------------------------------------------------------------- /step03_write_scratchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/AutoMuse_Chapter_Planner/HEAD/step03_write_scratchpad.py --------------------------------------------------------------------------------