Skip to content

Commit c342a32

Browse files
authored
Fix aider naming style (#53)
1 parent 3539eb8 commit c342a32

File tree

6 files changed

+30
-29
lines changed

6 files changed

+30
-29
lines changed

STYLE-GUIDE.md

+3
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ sentence.
210210

211211
### Products/brands
212212

213+
**aider** - an open source AI pair programmer in your terminal. It's written
214+
lowercase unless it starts a sentence.
215+
213216
**Continue** - an open source AI coding assistant for IDEs that connects to many
214217
model providers. It's written as just "Continue" (not "Continue.dev", which is
215218
their website).

docs/about/changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Related: [Upgrade CodeGate](../how-to/install.md#upgrade-codegate)
1919
[Workspaces](../features/workspaces.mdx).
2020

2121
- **Aider support** - 13 Jan, 2025\
22-
CodeGate version 0.1.6 adds support for [Aider](https://aider.chat/), an LLM
22+
CodeGate version 0.1.6 adds support for [aider](https://aider.chat/), an AI
2323
pair programmer in your terminal. See the
2424
[how-to guide](../how-to/use-with-aider.mdx) to learn more.
2525

docs/how-to/install.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ application settings, see [Configure CodeGate](./configure.md)
4242

4343
### Alternative run commands {#examples}
4444

45-
Run with minimal functionality for use with **Continue** or **Aider**:
45+
Run with minimal functionality for use with **Continue** or **aider**:
4646

4747
```bash
4848
docker run -d -p 8989:8989 -p 9090:9090 --restart unless-stopped ghcr.io/stacklok/codegate:latest
@@ -151,14 +151,14 @@ persistent volume.
151151
Now that CodeGate is running, proceed to configure your IDE integration.
152152

153153
- [Use CodeGate with GitHub Copilot](./use-with-copilot.mdx)
154+
- [Use CodeGate with aider](./use-with-aider.mdx)
154155
- [Use CodeGate with Continue](./use-with-continue.mdx)
155-
- [Use CodeGate with Aider](./use-with-aider.mdx)
156156

157157
## Remove CodeGate
158158

159159
If you decide to stop using CodeGate, follow the removal steps for your IDE
160160
integration:
161161

162162
- [Remove CodeGate - GitHub Copilot](./use-with-copilot.mdx#remove-codegate)
163+
- [Remove CodeGate - aider](./use-with-aider.mdx#remove-codegate)
163164
- [Remove CodeGate - Continue](./use-with-continue.mdx#remove-codegate)
164-
- [Remove CodeGate - Aider](./use-with-aider.mdx#remove-codegate)

docs/how-to/use-with-aider.mdx

+10-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Use CodeGate with Aider
3-
description: Configure the Aider for CodeGate
4-
sidebar_label: Use with Aider
2+
title: Use CodeGate with aider
3+
description: Configure aider for CodeGate
4+
sidebar_label: Use with aider
55
sidebar_position: 90
66
---
77

@@ -10,7 +10,7 @@ import AiderProviders from '../partials/_aider-providers.mdx';
1010
[Aider](https://aider.chat/) is an open source AI coding assistant that lets you
1111
pair program with LLMs in your terminal.
1212

13-
CodeGate works with the following AI model providers through Aider:
13+
CodeGate works with the following AI model providers through aider:
1414

1515
- Local / self-managed:
1616
- [Ollama](https://ollama.com/)
@@ -19,21 +19,21 @@ CodeGate works with the following AI model providers through Aider:
1919

2020
:::note
2121

22-
This guide assumes you have already installed Aider using their
22+
This guide assumes you have already installed aider using their
2323
[installation instructions](https://aider.chat/docs/install.html).
2424

2525
:::
2626

27-
## Configure Aider to use CodeGate
27+
## Configure aider to use CodeGate
2828

29-
To configure Aider to send requests through CodeGate:
29+
To configure aider to send requests through CodeGate:
3030

3131
<AiderProviders />
3232

3333
## Verify configuration
3434

35-
To verify that you've successfully connected Aider to CodeGate, type
36-
`/ask codegate version` into the Aider chat in your terminal. You should receive
35+
To verify that you've successfully connected aider to CodeGate, type
36+
`/ask codegate version` into the aider chat in your terminal. You should receive
3737
a response like "CodeGate version 0.1.7":
3838

3939
## Next steps
@@ -48,7 +48,7 @@ Learn more about CodeGate's features:
4848
If you decide to stop using CodeGate, follow these steps to remove it and revert
4949
your environment.
5050

51-
1. Stop Aider and unset the environment variables you set during the
51+
1. Quit aider and unset the environment variables you set during the
5252
configuration process:
5353

5454
**OpenAI:** `unset OPENAI_API_BASE` (macOS/Linux) or
@@ -57,8 +57,6 @@ your environment.
5757
**Ollama:** `unset OLLAMA_API_BASE` (macOS/Linux) or
5858
`setx OLLAMA_API_BASE ""` (Windows)
5959

60-
1. Re-launch Aider.
61-
6260
1. Stop and remove the CodeGate container:
6361

6462
```bash

docs/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ sidebar_position: 1
88

99
## What is CodeGate?
1010

11-
CodeGate is local prompt gateway that sits between your AI coding assistant and
12-
LLM to enhance privacy and security. CodeGate performs code security reviews,
13-
identifies vulnerabilities in package dependencies, and prevents sensitive data
14-
like secrets from being shared with AI models.
11+
CodeGate is a local prompt gateway that sits between your AI coding assistant
12+
and LLM to enhance privacy and security. CodeGate performs code security
13+
reviews, identifies vulnerabilities in package dependencies, and prevents
14+
sensitive data like secrets from being shared with AI models.
1515

1616
```mermaid
1717
sequenceDiagram
@@ -54,7 +54,7 @@ AI coding assistants / IDEs:
5454
- Anthropic
5555
- OpenAI
5656

57-
**[Aider](./how-to/use-with-aider.mdx)** with Ollama and OpenAI
57+
- **[Aider](./how-to/use-with-aider.mdx)** with Ollama and OpenAI
5858

5959
As the project evolves, we plan to add support for more IDE assistants and AI
6060
model providers.

docs/partials/_aider-providers.mdx

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import TabItem from '@theme/TabItem';
66

77
You need an [OpenAI API](https://openai.com/api/) account to use this provider.
88

9-
Before you run Aider, set environment variables for your API key and to set the
10-
API base URL to CodeGate's API port. Alternately, use one of Aider's other
9+
Before you run aider, set environment variables for your API key and to set the
10+
API base URL to CodeGate's API port. Alternately, use one of aider's other
1111
[supported configuration methods](https://aider.chat/docs/config/api-keys.html)
1212
to set the corresponding values.
1313

@@ -47,7 +47,7 @@ Replace `<YOUR_API_KEY>` with your
4747
[OpenAI API key](https://platform.openai.com/api-keys).
4848

4949
Then run `aider` as normal. For more information, see the
50-
[Aider docs for connecting to OpenAI](https://aider.chat/docs/llms/openai.html).
50+
[aider docs for connecting to OpenAI](https://aider.chat/docs/llms/openai.html).
5151

5252
</TabItem>
5353
<TabItem value="ollama" label="Ollama">
@@ -60,8 +60,8 @@ changed the default Ollama server port or to connect to a remote Ollama
6060
instance, launch CodeGate with the `CODEGATE_OLLAMA_URL` environment variable
6161
set to the correct URL. See [Configure CodeGate](/how-to/configure.md).
6262

63-
Before you run Aider, set the Ollama base URL to CodeGate's API port using an
64-
environment variable. Alternately, use one of Aider's other
63+
Before you run aider, set the Ollama base URL to CodeGate's API port using an
64+
environment variable. Alternately, use one of aider's other
6565
[supported configuration methods](https://aider.chat/docs/config/api-keys.html)
6666
to set the corresponding values.
6767

@@ -75,7 +75,7 @@ export OLLAMA_API_BASE=http://localhost:8989/ollama
7575
:::note
7676

7777
To persist this setting, add it to your shell profile (e.g., `~/.bashrc` or
78-
`~/.zshrc`) or use one of Aider's other
78+
`~/.zshrc`) or use one of's aider's other
7979
[supported configuration methods](https://aider.chat/docs/config/api-keys.html).
8080

8181
:::
@@ -96,7 +96,7 @@ Restart your shell after running `setx`.
9696
</TabItem>
9797
</Tabs>
9898

99-
Then run Aider:
99+
Then run aider:
100100

101101
```bash
102102
aider --model ollama_chat/<MODEL_NAME>
@@ -114,7 +114,7 @@ CPU cores and 16GB of RAM. If you have more compute resources available, our
114114
experimentation shows that larger models do yield better results.
115115

116116
For more information, see the
117-
[Aider docs for connecting to Ollama](https://aider.chat/docs/llms/ollama.html).
117+
[aider docs for connecting to Ollama](https://aider.chat/docs/llms/ollama.html).
118118

119119
</TabItem>
120120
</Tabs>

0 commit comments

Comments
 (0)