Skip to content

Commit 94928cc

Browse files
bene2k1RoRoJ
andauthored
Apply suggestions from code review
Co-authored-by: Rowena Jones <[email protected]>
1 parent c6af8f0 commit 94928cc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

pages/generative-apis/how-to/query-code-models.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Code models are also ideal AI assistants when **added to IDEs** (integrated deve
3333

3434
### Querying code models with Scaleway's Generative APIs
3535

36-
1. Set Up the OpenAI Python SDK:
36+
1. Set up the OpenAI Python SDK:
3737
- Install the SDK by running:
3838
```bash
3939
pip install openai
@@ -87,7 +87,7 @@ Code models are also ideal AI assistants when **added to IDEs** (integrated deve
8787

8888
### Configuration of Continue
8989

90-
1. Locate the Configuration File. The `config.json` file is typically found at:
90+
1. Locate the configuration file. The `config.json` file is typically found at:
9191
- `~/.continue/config.json` on Linux/macOS
9292
- `%USERPROFILE%\.continue\config.json` on Windows
9393

@@ -112,7 +112,7 @@ Code models are also ideal AI assistants when **added to IDEs** (integrated deve
112112
4. Open the Command Palette in VS Code by pressing `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (Mac) and type "Continue" to access the extension's features.
113113

114114
<Message type="tip">
115-
Refer our dedicated documentations for
115+
Refer our dedicated documentation for
116116
- [Integrating Continue Dev with Visual Studio Code](/generative-apis/reference-content/adding-ai-to-vscode-using-continue/)
117117
- [Integrating Continue Dev with IntelliJ IDEA](/generative-apis/reference-content/adding-ai-to-intellij-using-continue/)
118118
for detailed information how to integrate Continue in your favourite IDE.

pages/generative-apis/reference-content/adding-ai-to-intellij-using-continue.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ posted_date: 2025-02-14
1212

1313
AI-driven coding is revolutionizing software development by automating repetitive tasks, generating code snippets, improving code quality, and identifying potential bugs.
1414
By integrating AI-powered tools, developers can significantly enhance productivity and optimize workflows.
15-
This guide will help you integrating AI-powered code models into JetBrain's IntelliJ IDEA using Continue and Scaleway’s Generative APIs.
15+
This guide will help you integrate AI-powered code models into JetBrain's IntelliJ IDEA using Continue and Scaleway’s Generative APIs.
1616

1717
<Macro id="requirements" />
1818

pages/generative-apis/reference-content/adding-ai-to-vscode-using-continue.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can install Continue directly from the [Visual Studio Marketplace](https://m
2828
code --install-extension continue.continue
2929
```
3030

31-
### Configure Continue to Use Scaleway’s Generative APIs
31+
### Configure Continue to use Scaleway’s Generative APIs
3232

3333
To link Continue with Scaleway's Generative APIs, you need to configure a settings file:
3434

@@ -95,7 +95,7 @@ Refactoring is essential for maintaining clean and efficient code. Use the *"Con
9595
return result
9696
```
9797

98-
- After AI-Driven refactoring:
98+
- After AI-driven refactoring:
9999
```python
100100
def add_numbers(a, b):
101101
return a + b

pages/generative-apis/reference-content/integrating-generative-apis-with-popular-tools.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The following table compares AI tools and libraries supported by Scaleway's Gene
3030
The integration effort is subjective and may vary depending on the specific use case and requirements.
3131
</Message>
3232

33-
## OpenAI-Compatible libraries
33+
## OpenAI-compatible libraries
3434

3535
Scaleway Generative APIs follow OpenAI's API structure, making integration straightforward. To get started, you'll need to install the OpenAI library and set up your API key.
3636

@@ -146,7 +146,7 @@ print(response)
146146
Continue Dev is a library that provides AI-powered coding assistance. Scaleway's Generative APIs support Continue Dev for code completion and more.
147147

148148
<Message type="tip">
149-
Refer our dedicated documentations for
149+
Refer our dedicated documentation for
150150
- [Integrating Continue Dev with Visual Studio Code](/generative-apis/reference-content/adding-ai-to-vscode-using-continue/)
151151
- [Integrating Continue Dev with IntelliJ IDEA](/generative-apis/reference-content/adding-ai-to-intellij-using-continue/)
152152
</Message>
@@ -202,7 +202,7 @@ To use Hugging Face for text generation, you can call the `generator` function:
202202
```python
203203
print(generator("Write a short poem about the ocean"))
204204
```
205-
## API clients & custom integrations
205+
## API clients and custom integrations
206206

207207
You can interact with Scaleway's Generative APIs directly using any HTTP client.
208208

0 commit comments

Comments
 (0)