You will find more information in the Continue 1.0 Partnership Guide.
To use Continue at xAI, you can set up Continue on your local machine.
- VSCode: Install VSCode Extension and click on "Switch to Pre-Release Version" after installation.
- JetBrains: Install JetBrains Plugin
First, copy the config yaml file you want to use to:
- On Mac/Linux:
~/.continue/config.yaml
- On Windows:
%USERPROFILE%\.continue\config.yaml
Replace apiKey
with the API key you get on https://console.x.ai, be sure you are on a team with the right model access permissions.
To develop, first run:
make create-venv
Then activate the Python virtual environment, install dependencies and setup pre-commit hook:
source ./venv/bin/activate
make install-deps
When you develop, use make lint
to check the yaml formatting, and make format
to fix formatting. Under the hood, it is using yamllint
and yamlfix
to enforce these rules. The configuration files are .yamlint
and .yamlfix.toml
respectively.