https://github.com/ioki-mobility/summaraizer
Summarizes comments from a variety of sources, such as GitHub issues, Slack threads, Reddit posts, and more using AI models from different providers, such as Ollama, OpenAI, and more.
https://github.com/ioki-mobility/summaraizer
Last synced: 2 months ago
JSON representation
Summarizes comments from a variety of sources, such as GitHub issues, Slack threads, Reddit posts, and more using AI models from different providers, such as Ollama, OpenAI, and more.
- Host: GitHub
- URL: https://github.com/ioki-mobility/summaraizer
- Owner: ioki-mobility
- License: mit
- Created: 2024-04-22T11:24:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-13T09:31:07.000Z (3 months ago)
- Last Synced: 2025-03-26T19:11:15.403Z (3 months ago)
- Language: Go
- Homepage: https://ioki-mobility.github.io/summaraizer/
- Size: 66.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pkg.go.dev/github.com/ioki-mobility/summaraizer)
[](https://github.com/ioki-mobility/summaraizer/actions/workflows/integration_tests.yml)# summaraizer
Summarizes comments from a variety of sources, such as GitHub issues, GitLab issues, Slack threads, Reddit threads, and more
using AI models from different providers, such as Ollama, Anthropic, OpenAI, Mistral and Google.## Usage
Check the project website how to use it:
[https://ioki-mobility.github.io/summaraizer](https://ioki-mobility.github.io/summaraizer/)## Copy & Paste snippets
Fetch from GitHub issue and summarize using Ollama with llama3
```bash
summaraizer github --issue golang/go/66960 | summaraizer ollama --model llama3
```Fetch from Reddit post and summarize using OpenAI with gpt-4o
```bash
summaraizer reddit --post 'r/ArtificialInteligence/comments/1d16cxl/miss_ai_worlds_first_beauty_contest_with_computer/' | summaraizer openai --model gpt-4o --token SUPER_SECRET_API_TOKEN
```Fetch from GitLab issue with custom instance and summarize using Google
```bash
summaraizer gitlab --issue sre/it-support/203 --token SUPER_SECRET_API_TOKEN --url https://gitlab.url.com | summaraizer google --token SUPER_SECRET_API_TOKEN
```Fetch from Slack thread and summarize using Antrhopic
```bash
summaraizer slack --channel C07ED7YBB1P --ts 1723214080.317439 --token SUPER_SECRET_API_TOKEN | summaraizer anthropic --token SUPER_SECRET_API_TOKEN
```