title | description | sidebar_label | sidebar_position |
---|---|---|---|
Use CodeGate with Aider |
Configure the Aider for CodeGate |
Use with Aider |
90 |
import AiderProviders from '../partials/_aider-providers.mdx';
Aider is an open source AI coding assistant that lets you pair program with LLMs in your terminal.
CodeGate works with the following AI model providers through Aider:
:::note
This guide assumes you have already installed Aider using their installation instructions.
:::
To configure Aider to send requests through CodeGate:
To verify that you've successfully connected Aider to CodeGate, type
/ask codegate version
into the Aider chat in your terminal. You should receive
a response like "CodeGate version 0.1.7":
Learn more about CodeGate's features:
If you decide to stop using CodeGate, follow these steps to remove it and revert your environment.
-
Stop Aider and unset the environment variables you set during the configuration process:
OpenAI:
unset OPENAI_API_BASE
(macOS/Linux) orsetx OPENAI_API_BASE ""
(Windows)Ollama:
unset OLLAMA_API_BASE
(macOS/Linux) orsetx OLLAMA_API_BASE ""
(Windows) -
Re-launch Aider.
-
Stop and remove the CodeGate container:
docker stop codegate && docker rm codegate
-
If you launched CodeGate with a persistent volume, delete it to remove the CodeGate database and other files:
docker volume rm codegate_volume