SparkSum is a text summarization application.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
SparkSum is a text summarizer powered by the OpenAI API's chat completion feature. The user will enter a text they want summarized, as well as the desired word count of the outputted summarized text. This application has not been deployed.
Key Features
- Builds concise and high quality summaries
- Creates summarizes based on the user's specified word count
Install Node.JS at https://nodejs.org/en/download/current
- Install npm
npm install npm@latest -g
- Get a free OpenAPI Key by following this video: https://youtu.be/nafDyRsVnXU?si=iDQBrmgxrt5_lF9x
- Clone the repo
git clone https://github.com/ErikTsai/spark-sum
- Install NPM packages
npm install http-server -g
- Enter your API key in
env.js
OPENAI_API_KEY: 'ENTER YOUR KEY';
- Navigate to the path of the spark-sum folder and run in your terminal
http-server
- The Application should be open at localhost:8080
- To close the server, CTRL+C into the same terminal you opened the server
- Deploy Application
- Improve Current Styling
- Add Mobile Styling
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request