Skip to content

Commit 24d26ba

Browse files
authored
fix(ai): better display (#4104)
1 parent 265ea3b commit 24d26ba

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ai-data/generative-apis/how-to/query-code-models.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,30 @@ dates:
1313

1414
Scaleway's Generative APIs service allows users to interact with powerful code models hosted on the platform.
1515

16-
Code models are inherently language models specialized in **understanding code**, **generating code** and **fixing code**.
16+
Code models are inherently [language models](/ai-data/generative-apis/how-to/query-language-models/) specialized in **understanding code**, **generating code** and **fixing code**.
1717

1818
As such, they will be available through the same interfaces as language models:
1919
- The Scaleway [console](https://console.scaleway.com) provides complete [playground](/ai-data/generative-apis/how-to/query-language-models/#accessing-the-playground), aiming to test models, adapt parameters, and observe how these changes affect the output in real-time.
2020
- Via the [Chat API](/ai-data/generative-apis/how-to/query-language-models/#querying-language-models-via-api)
21+
2122
For more information on how to query language models, read [our dedicated documentation](/ai-data/generative-apis/how-to/query-language-models/).
2223

23-
Code models are also ideal AI assistants when added to IDEs (integrated development environments).
24+
Code models are also ideal AI assistants when **added to IDEs** (integrated development environments).
2425

2526
<Macro id="requirements" />
2627

2728
- A Scaleway account logged into the [console](https://console.scaleway.com)
2829
- [Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
2930
- A valid [API key](/identity-and-access-management/iam/how-to/create-api-keys/) for API authentication
30-
- An IDE such as VS Code or JetBrains
31+
- An IDE such as Visual Studio Code or JetBrains
3132

3233
## Install Continue in your IDE
3334

3435
[Continue](https://www.continue.dev/) is an [open-source code assistant](https://github.com/continuedev/continue) to connect AI models to your IDE.
3536

36-
To get Continue, simply hit `install`
37-
- on the [Continue extension page in Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue)
38-
- or on the [Continue extension page in JetBrains Marketplace](https://plugins.jetbrains.com/plugin/22707-continue)
37+
To get Continue, simply hit `install` in your IDE's marketplace:
38+
- [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=Continue.continue)
39+
- [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/22707-continue)
3940

4041
## Configure Scaleway as an API provider in Continue
4142

@@ -49,14 +50,13 @@ Here is an example configuration with Scaleway's OpenAI-compatible provider:
4950
"title": "Qwen2.5-coder",
5051
"apiBase": "https://api.scaleway.ai/v1/",
5152
"provider": "openai",
52-
"apiKey": "###SCW SECRET KEY###",
53-
"useLegacyCompletionsEndpoint": false
53+
"apiKey": "###SCW SECRET KEY###"
5454
}
5555
]
5656
```
5757

5858
<Message type="tip">
59-
The config.json file is typically stored as $HOME/.continue/config.json on Linux/macOS systems, and %USERPROFILE%\.continue\config.json on Windows.
59+
The config.json file is typically stored as `~/.continue/config.json` on Linux/macOS systems, and `%USERPROFILE%\.continue\config.json` on Windows.
6060
</Message>
6161

6262
Read more about how to set up your `config.json` on the [official Continue documentation](https://docs.continue.dev/reference).

0 commit comments

Comments
 (0)