https://github.com/continuedev/xai-continue-hub
https://github.com/continuedev/xai-continue-hub
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/continuedev/xai-continue-hub
- Owner: continuedev
- Created: 2025-02-25T17:51:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-10T06:13:07.000Z (8 months ago)
- Last Synced: 2025-07-10T13:25:16.937Z (8 months ago)
- Language: Makefile
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# xAI on hub.continue.dev
You will find more information in the [Continue 1.0 Partnership Guide](https://continuedev.notion.site/Continue-1-0-Partnership-Guide-1811d55165f7802686fcd0b70464e778).
# Setting up Continue at xAI
To use Continue at xAI, you can set up Continue on your local machine.
- VSCode: Install [VSCode Extension](https://marketplace.visualstudio.com/items?itemName=Continue.continue) and click on "Switch to Pre-Release Version" after installation.
- JetBrains: Install [JetBrains Plugin](https://plugins.jetbrains.com/plugin/22707-continue)
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.
# Developing
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.