├── .gitignore ├── README.md ├── Summarize.shortcut └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Summarize - Apple Shortcut Open AI 4 | 5 | Apple shortcut to quickly and easily summarize the content of images or texts. 6 | 7 | 😎 Demo: https://www.youtube.com/shorts/lPM0GsUeLGY 8 | 9 | > 🚨 10 | > Do not blindly trust the results and always double-check the output for accuracy, especially when using it on letters. 11 | > 12 | > Remember to always remove any private information before using the shortcut. 13 | 14 | --- 15 | 16 | ## Installation 17 | 18 | 1. Download the [`shortcut`](./Summarize.shortcut) on your iOS device (Mac, iPhone or iPad); 19 | 1. Create an API token on https://beta.openai.com 20 | 1. Edit the shortcut, replace API_TOKEN with the new token. 21 | 22 | ## How it works 23 | 24 | 1. You'll be able to select a photo from your library or take a new photo. 25 | 1. Review and edit the extract text (remove private information) 26 | 1. Wait for the result. 27 | 28 | ## Author 29 | 30 | [Eduardo Stuart](https://s.tuart.dev) 31 | 32 | Idea shared by [Jelle Prins](https://twitter.com/jelleprins/status/1616732334514122752) on [Twitter](https://twitter.com/eduardostuart/status/1616737195423059968). 33 | -------------------------------------------------------------------------------- /Summarize.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardostuart/ios-shortcut-openai-summarize/03a6209f2f768260c6947ae0211ca79d34c8857a/Summarize.shortcut -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardostuart/ios-shortcut-openai-summarize/03a6209f2f768260c6947ae0211ca79d34c8857a/screenshot.png --------------------------------------------------------------------------------