Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```