Skip to content

Commit ff8fab7

Browse files
docs: update openai provider names
1 parent 0cf0206 commit ff8fab7

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

docs/docs/reference/Model Providers/azure.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can configure Azure OpenAI service through the UI, or you can configure it m
1515
```json title="~/.continue/config.json"
1616
"models": [{
1717
"title": "Azure OpenAI",
18-
"provider": "openai",
18+
"provider": "azure",
1919
"model": "<YOUR_MODEL>",
2020
"apiBase": "<YOUR_DEPLOYMENT_BASE>",
2121
"engine": "<YOUR_ENGINE>",
@@ -25,10 +25,11 @@ You can configure Azure OpenAI service through the UI, or you can configure it m
2525
}]
2626
```
2727

28-
To find out the information from *Azure AI Studio*, select the model that you would like to connect. Under the *Endpoint* section and capture the Target URI.
29-
For example, Target URI of https://just-an-example.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2023-13-15-preview
28+
To find out the information from _Azure AI Studio_, select the model that you would like to connect. Under the _Endpoint_ section and capture the Target URI.
29+
For example, Target URI of <https://just-an-example.openai.azure.com/openai/deployments/gpt-4o/chat/completions?api-version=2023-13-15-preview>
3030
Maps to:
31-
* model = gpt-4o
32-
* engine = gpt-4o
33-
* apiVersion = 2023-13-15-preview
34-
* apiBase = just-an-example.openai.azure.com
31+
32+
- model = gpt-4o
33+
- engine = gpt-4o
34+
- apiVersion = 2023-13-15-preview
35+
- apiBase = just-an-example.openai.azure.com

docs/docs/reference/Model Providers/openrouter.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
OpenRouter is a unified interface for commercial and open-source models, giving you access to the best models at the best prices. You can sign up [here](https://openrouter.ai/signup), create your API key on the [keys page](https://openrouter.ai/keys), and then choose a model from the [list of supported models](https://openrouter.ai/models).
44

5-
Change `~/.continue/config.json` to look like the following. Since OpenRouter is fully API compatible with OpenAI, it is recommended to stick with `"provider": "openai"`, even if they aren't necessarily the upstream provider.
5+
Change `~/.continue/config.json` to look like the following.
66

77
```json title="~/.continue/config.json"
88
{
99
"models": [
1010
{
1111
"title": "OpenRouter LLaMA 70 8B",
12-
"provider": "openai",
12+
"provider": "openrouter",
1313
"model": "meta-llama/llama-3-70b-instruct",
1414
"apiBase": "https://openrouter.ai/api/v1",
1515
"apiKey": "..."

docs/docs/reference/Model Providers/textgenwebui.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TextGenWebUI is a comprehensive, open-source language model UI and local server.
77
"models": [
88
{
99
"title": "Text Generation WebUI",
10-
"provider": "openai",
10+
"provider": "text-gen-webui",
1111
"apiBase": "http://localhost:5000",
1212
"model": "MODEL_NAME"
1313
}

0 commit comments

Comments
 (0)