Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sean1832/SumGPT
Bulk summarization of documents using ChatGPT API
https://github.com/sean1832/SumGPT
artificial-intelligence bulk-operation gpt-3 gpt-4 knowledgemanagement note-taking openai openai-chatgpt parallel-computing python summarization ultrafast
Last synced: 13 days ago
JSON representation
Bulk summarization of documents using ChatGPT API
- Host: GitHub
- URL: https://github.com/sean1832/SumGPT
- Owner: sean1832
- License: mit
- Created: 2023-03-10T17:37:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-28T12:42:41.000Z (16 days ago)
- Last Synced: 2024-10-28T13:22:25.688Z (16 days ago)
- Topics: artificial-intelligence, bulk-operation, gpt-3, gpt-4, knowledgemanagement, note-taking, openai, openai-chatgpt, parallel-computing, python, summarization, ultrafast
- Language: Python
- Homepage: https://sumgpt.streamlit.app/
- Size: 91.8 KB
- Stars: 118
- Watchers: 3
- Forks: 35
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SumGPT
[![python](https://img.shields.io/badge/python-3.11-blue)](https://www.python.org/downloads/release/python-3112/)Achieve detailed summarization of extensive documents through πultra-fast parallelized completion with APIs provided by [OpenAI](https://openai.com/).
π Web App: [https://sumgpt.streamlit.app](https://sumgpt.streamlit.app/)
---
*βοΈ Like this repo? please consider a star!**π‘As I am not a professional programmer and am fairly new to Python, this project may contain bugs. If you encounter any issues, please suggest them in the [Issues section](https://github.com/sean1832/SumGPT/issues).*
---
### π Features
- π Summarize document (.txt, .md).
- π€ Customizable parameters and bot persona for refined response generation.
- π Facilitates parallel processing of chunks.
- πΌ Export & import configs for easy sharing and reuse.
- π Encrypted browser cookies ensure configuration settings are preserved across sessions.
- π§ Supports multiple modles:
- `gpt-4o-mini`
- `gpt-4o`
- `gpt-4-turbo`
- `gpt-3.5-turbo`### π‘ What you need
- π OpenAI **[API keys](https://platform.openai.com/account/api-keys)**### π» Running Locally
- Make sure you have **[python 3.11](https://www.python.org/downloads)** | [python installation tutorial (YouTube)](https://youtu.be/HBxCHonP6Ro?t=105)
1. Clone the repository
```bash
git clone https://github.com/sean1832/SumGPT
cd SumGPT
```2. Create a `secrets.toml` file under `.streamlit\` directory. Replace `your_secure_key` with your own password for browser cookie encryption.
```bash
mkdir .streamlit
echo "crypto_keycrypto_key = 'your_secure_key'" > .streamlit/secrets.toml
```3. Execute `RUN.bat`
```bash
./RUN.bat
```