/todo_react_app_gpt

Implementing GPT to automate todo list steps generation.

Primary LanguageJavaScript

Todo React App W/GPT Autocompletion 📝

🖊️ A Tweaked Todo App built using React, Mantine UI, and ChatGPT.

I have tweaked javascriptbear's original app to have GPT-3.5 autocompletion of unfilled summaries.

Check out the video demo below.

ToDo.GPT.Demo-small.mp4

😃 Features:

  • ➕ Add todos
  • 🗑️ Delete todos
  • ⏸ Save todos to Local Storage when the state changes
  • ▶️ Load the todos from Local Storage when the site is loaded again
  • 🌙 Light \ dark mode toggle
  • 🧠 Smart summary autofill using GPT-3.5

❤️ Feel free to create issues and contributions for features or bugs to this project.

Installation

  • git clone github.com/epicgazel/todo_react_app_gpt
  • npm install
  • configure .env with api key
  • npm start

Note:

If you have issues realted to 'fs', 'os', 'path', 'crypto', edit webpack.config.js with:

resolve: {
  ...
  fallback: {
          "fs": false,
          "os": false,
          "path": false
        },
}

Issue Link