├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ ├── correction.yml │ ├── feature-not-covered.yml │ ├── misc.yml │ └── out-of-date-information.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── chatgpt-down-messages.txt ├── fonts.txt ├── images ├── Getting-Conversation-ID.png ├── Markdown-in-code-block-rendered.gif ├── chatgpt-plus-login-link.gif ├── markdown.png └── regenerated-response-feedback.png ├── markdown-support.csv ├── markdown-tester.txt ├── prompt-library.txt └── sample ├── chat.html ├── conversation-event-stream.txt ├── conversations.json └── model_comparisons.json /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/correction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/.github/ISSUE_TEMPLATE/correction.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-not-covered.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/.github/ISSUE_TEMPLATE/feature-not-covered.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/misc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/.github/ISSUE_TEMPLATE/misc.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/out-of-date-information.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/.github/ISSUE_TEMPLATE/out-of-date-information.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/README.md -------------------------------------------------------------------------------- /chatgpt-down-messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/chatgpt-down-messages.txt -------------------------------------------------------------------------------- /fonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/fonts.txt -------------------------------------------------------------------------------- /images/Getting-Conversation-ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/images/Getting-Conversation-ID.png -------------------------------------------------------------------------------- /images/Markdown-in-code-block-rendered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/images/Markdown-in-code-block-rendered.gif -------------------------------------------------------------------------------- /images/chatgpt-plus-login-link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/images/chatgpt-plus-login-link.gif -------------------------------------------------------------------------------- /images/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/images/markdown.png -------------------------------------------------------------------------------- /images/regenerated-response-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/images/regenerated-response-feedback.png -------------------------------------------------------------------------------- /markdown-support.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/markdown-support.csv -------------------------------------------------------------------------------- /markdown-tester.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/markdown-tester.txt -------------------------------------------------------------------------------- /prompt-library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/prompt-library.txt -------------------------------------------------------------------------------- /sample/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/sample/chat.html -------------------------------------------------------------------------------- /sample/conversation-event-stream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/sample/conversation-event-stream.txt -------------------------------------------------------------------------------- /sample/conversations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/sample/conversations.json -------------------------------------------------------------------------------- /sample/model_comparisons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terminalcommandnewsletter/everything-chatgpt/HEAD/sample/model_comparisons.json --------------------------------------------------------------------------------