From 5cbc3da9ae550ddb913e101cb984e962a3984e84 Mon Sep 17 00:00:00 2001 From: hiroki osame Date: Sat, 1 Apr 2023 10:57:47 -0400 Subject: [PATCH] docs: recommend `gpt-4` as a tip --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8ae1d06..4fe998e 100644 --- a/README.md +++ b/README.md @@ -186,6 +186,9 @@ Default: `gpt-3.5-turbo` The Chat Completions (`/v1/chat/completions`) model to use. Consult the list of models available in the [OpenAI Documentation](https://platform.openai.com/docs/models/model-endpoint-compatibility). +> Tip: If you have access, try upgrading to [`gpt-4`](https://platform.openai.com/docs/models/gpt-4) for next-level code analysis. It can handle double the input size, but comes at a higher cost. Check out OpenAI's website to learn more. + + ## How it works This CLI tool runs `git diff` to grab all your latest code changes, sends them to OpenAI's GPT-3, then returns the AI generated commit message.