EpicGazel / todo_react_app_gpt

Implementing GPT to automate todo list steps generation.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Implementing GPT to automate todo list steps generation.


Languages

Language:JavaScript 78.6%Language:HTML 21.4%