Skip to content

Doc/ncompass docs update #4696

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/docs/customize/model-providers/more/ncompass.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import TabItem from "@theme/TabItem";

# nCompass

The nCompass Technologies API exposes an extremely fast inference engine for open-source language models. You can sign up [here](https://app.ncompass.tech/api-settings), copy your API key on the initial welcome screen, and then hit the play button on any model from the [nCompass Models list](https://console.ncompass.tech/models). Change `~/.continue/config.json` to look like this:
The nCompass Technologies API exposes an extremely fast inference engine for open-source language models. You can sign up [here](https://app.ncompass.tech/api-settings), copy your API key on the initial welcome screen, and then hit the play button on any model from the [nCompass Models list](https://ncompass.tech/models). Change `~/.continue/config.json` to look like this:

<Tabs groupId="config-example">
<TabItem value="yaml" label="YAML">
```yaml title="Package or config.yaml"
models:
- name: Ncompass Qwen2.5 Coder
- name: Ncompass Gemma 3 Coder
provider: ncompass
model: Qwen/Qwen2.5-Coder-32B-Instruct
model: google/gemma-3-27b-it
apiKey: <YOUR_NCOMPASS_API_KEY>
```
</TabItem>
Expand All @@ -20,9 +20,9 @@ The nCompass Technologies API exposes an extremely fast inference engine for ope
{
"models": [
{
"title": "Ncompass Qwen2.5 Coder",
"title": "Ncompass Gemma 3 Coder",
"provider": "ncompass",
"model": "Qwen/Qwen2.5-Coder-32B-Instruct",
"model": "google/gemma-3-27b-it",
"apiKey": "<YOUR_NCOMPASS_API_KEY>"
}
]
Expand Down
Loading