Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 13 days 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 (9 months ago)
- Default Branch: main
- Last Pushed: 2024-12-04T10:53:04.000Z (about 1 month ago)
- Last Synced: 2024-12-04T11:32:38.360Z (about 1 month ago)
- Language: Go
- Homepage: https://ioki-mobility.github.io/summaraizer/
- Size: 58.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Go Reference](https://pkg.go.dev/badge/github.com/ioki-mobility/summaraizer.svg)](https://pkg.go.dev/github.com/ioki-mobility/summaraizer)
[![Integration Tests](https://github.com/ioki-mobility/summaraizer/actions/workflows/integration_tests.yml/badge.svg)](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 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
```