Skip to content

Commit a8a5004

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

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,9 @@ 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 documentation for
115+
Refer to our dedicated documentation for detailed information on how to integrate Continue in your favourite IDE.
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/)
118-
for detailed information how to integrate Continue in your favourite IDE.
119118
</Message>
120119

121120
### Using Continue with your IDE

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ embeddings = OpenAIEmbeddings(model="bge-multilingual-gemma2")
8585
Make sure to replace `<API secret key>` with your actual API key.
8686
</Message>
8787

88-
### Using LangChain for Inference
88+
### Using LangChain for inference
8989

9090
To use LangChain for inference, you can create a `ChatOpenAI` object and call the `ask` method:
9191
```python
9292
response = llm.ask("What is the capital of France?")
9393
print(response)
9494
```
95-
### Using LangChain for Embeddings
95+
### Using LangChain for embeddings
9696

9797
To use LangChain for embeddings, you can create an `OpenAIEmbeddings` object and call the `compute_embeddings` method:
9898
```python

0 commit comments

Comments
 (0)