https://github.com/pncnmnp/grammatical
Corrects the spelling and grammar of your text using ChatGPT
https://github.com/pncnmnp/grammatical
chatgpt grammar grammar-checker grammar-correction spelling-correction
Last synced: 4 months ago
JSON representation
Corrects the spelling and grammar of your text using ChatGPT
- Host: GitHub
- URL: https://github.com/pncnmnp/grammatical
- Owner: pncnmnp
- License: mit
- Created: 2023-03-20T13:07:34.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-20T18:53:02.000Z (over 2 years ago)
- Last Synced: 2025-06-11T19:24:34.203Z (5 months ago)
- Topics: chatgpt, grammar, grammar-checker, grammar-correction, spelling-correction
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 24
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cli-apps-in-a-csv - Grammatical - Corrects the spelling and grammar of your text using ChatGPT. (<a name="writing"></a>Writing)
README
# Grammatical

_Corrects the spelling and grammar of your text using ChatGPT._
# Motivation
I have been using this CLI tool internally for a while now. It is not only good at correcting spelling and grammar in your text, but it is also excellent at simplifying complex technical language. Additionally, it perfectly complements [Grammarly](https://www.grammarly.com/).
# Install
```bash
python3 -m pip install grammatical
```
# Usage
This tool **requires access to the [OpenAI API](https://openai.com/pricing)**. It utilizes the `gpt-3.5-turbo` model. When the spelling and grammar have been corrected, the resulting text will be automatically copied to the clipboard.
```bash
Usage: grammatical [OPTIONS]
Corrects the spelling and grammar of your text using ChatGPT.
Options:
--text TEXT Text input for grammar correction
If --text flag is used, a prompt will be displayed to enter the text.
By default, the most recent text from the clipboard will be used.
--api_key TEXT OpenAI API Key
By default, key from the OPENAI_API_KEY env var will be used.
--tone TEXT Tone of the grammar correction [default: "social media"]
This can be tuned in based on the context of the text.
E.g. "formal/informal setting", "academia", "reddit", etc.
--simplify Simplify the text
-i, --input_format TEXT Specify the input format [default: text]
Useful when working with files like LaTeX, Markdown.
-o, --output_format TEXT Specify the output format [default: text]
Useful when working with files like LaTeX, Markdown.
--help Show this message and exit.
```
## Example
Using the defaults:
```
[09:34][~] # Text in clipboard: I walk to the store and I bought milk
[09:34][~] grammatical
Modified Text:
"I walked to the store and bought milk."
Text copied to clipboard.
[09:34][~]
```
With options:
```
[14:39][~] # Text in clipboard: This tool does need access to [OpenAI's API](https://openai.com/pricing). It uses the `gpt-3.5-turbo` model.
[14:40][~] grammatical --tone "documentation" -i "markdown" -o "markdown"
Modified Text:
This tool requires access to [OpenAI's API](https://openai.com/pricing), utilizing the `gpt-3.5-turbo` model.
Text copied to clipboard.
[14:40][~]
```
# My MacOS Workflow
For my macOS workflow, I have [created a new `Application` in Automator](https://apple.stackexchange.com/questions/419767/how-to-create-a-shortcut-for-a-command-in-terminal-that-i-can-have-in-my-dock) that runs "Grammatical" for
convenience. I have also dragged it to the Dock.
Here is the AppleScript that I am using:
```applescript
tell application "Terminal"
activate
do script "grammatical"
end tell
```
If you are mostly concerned with the defaults, I highly recommend doing this.
# License
Under [MIT License](https://github.com/pncnmnp/grammatical/blob/master/LICENSE). The logo is [made using Midjourney](https://docs.midjourney.com/docs/terms-of-service) and licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/).