Skip to content

Commit 6e77a57

Browse files
committed
fix: typo
1 parent 30cb750 commit 6e77a57

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

articles/ai-foundry/model-inference/includes/use-image-embeddings/javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import { AzureKeyCredential } from "@azure/core-auth";
5050
const client = new ModelClient(
5151
process.env.AZURE_INFERENCE_ENDPOINT,
5252
new AzureKeyCredential(process.env.AZURE_INFERENCE_CREDENTIAL),
53-
"text-embedding-3-small"
53+
"Cohere-embed-v3-english"
5454
);
5555
```
5656

articles/ai-foundry/model-inference/includes/use-image-embeddings/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ from azure.core.credentials import AzureKeyCredential
5050
model = ImageEmbeddingsClient(
5151
endpoint=os.environ["AZURE_INFERENCE_ENDPOINT"],
5252
credential=AzureKeyCredential(os.environ["AZURE_INFERENCE_CREDENTIAL"]),
53-
model="text-embedding-3-small"
53+
model="Cohere-embed-v3-english"
5454
)
5555
```
5656

articles/ai-foundry/model-inference/includes/use-image-embeddings/rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ The response is as follows, where you can see the model's usage statistics:
8484
]
8585
}
8686
],
87-
"model": "text-embedding-3-small",
87+
"model": "Cohere-embed-v3-english",
8888
"usage": {
8989
"prompt_tokens": 9,
9090
"completion_tokens": 0,

0 commit comments

Comments
 (0)