Skip to content

Commit e6d6157

Browse files
committed
fix
1 parent 70ce2d7 commit e6d6157

File tree

5 files changed

+43
-79
lines changed

5 files changed

+43
-79
lines changed

articles/ai-studio/how-to/deploy-models-jais.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ JAIS 30b Chat is an autoregressive bi-lingual LLM for **Arabic** & **English**.
2626

2727
::: zone pivot="programming-language-python"
2828

29-
## Jais chat models
3029

31-
None
3230

3331
You can learn more about the models in their respective model card:
3432

@@ -279,9 +277,7 @@ except HttpResponseError as ex:
279277

280278
::: zone pivot="programming-language-javascript"
281279

282-
## Jais chat models
283280

284-
None
285281

286282
You can learn more about the models in their respective model card:
287283

@@ -553,9 +549,7 @@ catch (error) {
553549
554550
::: zone pivot="programming-language-csharp"
555551
556-
## Jais chat models
557552
558-
None
559553
560554
You can learn more about the models in their respective model card:
561555
@@ -843,9 +837,7 @@ catch (RequestFailedException ex)
843837
844838
::: zone pivot="programming-language-rest"
845839
846-
## Jais chat models
847840
848-
None
849841
850842
You can learn more about the models in their respective model card:
851843

articles/ai-studio/how-to/deploy-models-jamba.md

Lines changed: 15 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,11 @@ The Jamba-Instruct model is AI21's production-grade Mamba-based large language m
2525

2626
::: zone pivot="programming-language-python"
2727

28-
## Jamba-Instruct chat models
29-
30-
The Jamba Instruct model is AI21's production-grade Mamba-based large language model (LLM) which leverages AI21's hybrid Mamba-Transformer architecture. It's an instruction-tuned version of AI21's hybrid structured state space model (SSM) transformer Jamba model. The Jamba Instruct model is built for reliable commercial use with respect to quality and performance.
3128

3229

3330
You can learn more about the models in their respective model card:
3431

35-
* [Jamba-Instruct](https://aka.ms/azureai/landing/Jamba-Instruct)
32+
* [AI21-Jamba-Instruct](https://aka.ms/azureai/landing/AI21-Jamba-Instruct)
3633

3734

3835
## Prerequisites
@@ -108,7 +105,7 @@ print("Model provider name:", model_info.model_provider)
108105
```
109106

110107
```console
111-
Model name: Jamba-Instruct
108+
Model name: AI21-Jamba-Instruct
112109
Model type: chat-completions
113110
Model provider name: AI21
114111
```
@@ -142,7 +139,7 @@ print("\tCompletion tokens:", response.usage.completion_tokens)
142139

143140
```console
144141
Response: As of now, it's estimated that there are about 7,000 languages spoken around the world. However, this number can vary as some languages become extinct and new ones develop. It's also important to note that the number of speakers can greatly vary between languages, with some having millions of speakers and others only a few hundred.
145-
Model: Jamba-Instruct
142+
Model: AI21-Jamba-Instruct
146143
Usage:
147144
Prompt tokens: 19
148145
Total tokens: 91
@@ -279,14 +276,11 @@ except HttpResponseError as ex:
279276

280277
::: zone pivot="programming-language-javascript"
281278

282-
## Jamba-Instruct chat models
283-
284-
The Jamba Instruct model is AI21's production-grade Mamba-based large language model (LLM) which leverages AI21's hybrid Mamba-Transformer architecture. It's an instruction-tuned version of AI21's hybrid structured state space model (SSM) transformer Jamba model. The Jamba Instruct model is built for reliable commercial use with respect to quality and performance.
285279

286280

287281
You can learn more about the models in their respective model card:
288282

289-
* [Jamba-Instruct](https://aka.ms/azureai/landing/Jamba-Instruct)
283+
* [AI21-Jamba-Instruct](https://aka.ms/azureai/landing/AI21-Jamba-Instruct)
290284

291285

292286
## Prerequisites
@@ -360,7 +354,7 @@ console.log("Model provider name: ", model_info.body.model_provider_name)
360354
```
361355

362356
```console
363-
Model name: Jamba-Instruct
357+
Model name: AI21-Jamba-Instruct
364358
Model type: chat-completions
365359
Model provider name: AI21
366360
```
@@ -400,7 +394,7 @@ console.log("\tCompletion tokens:", response.body.usage.completion_tokens);
400394

401395
```console
402396
Response: As of now, it's estimated that there are about 7,000 languages spoken around the world. However, this number can vary as some languages become extinct and new ones develop. It's also important to note that the number of speakers can greatly vary between languages, with some having millions of speakers and others only a few hundred.
403-
Model: Jamba-Instruct
397+
Model: AI21-Jamba-Instruct
404398
Usage:
405399
Prompt tokens: 19
406400
Total tokens: 91
@@ -554,14 +548,11 @@ catch (error) {
554548
555549
::: zone pivot="programming-language-csharp"
556550
557-
## Jamba-Instruct chat models
558-
559-
The Jamba Instruct model is AI21's production-grade Mamba-based large language model (LLM) which leverages AI21's hybrid Mamba-Transformer architecture. It's an instruction-tuned version of AI21's hybrid structured state space model (SSM) transformer Jamba model. The Jamba Instruct model is built for reliable commercial use with respect to quality and performance.
560551
561552
562553
You can learn more about the models in their respective model card:
563554
564-
* [Jamba-Instruct](https://aka.ms/azureai/landing/Jamba-Instruct)
555+
* [AI21-Jamba-Instruct](https://aka.ms/azureai/landing/AI21-Jamba-Instruct)
565556
566557
567558
## Prerequisites
@@ -654,7 +645,7 @@ Console.WriteLine($"Model provider name: {modelInfo.Value.ModelProviderName}");
654645
```
655646

656647
```console
657-
Model name: Jamba-Instruct
648+
Model name: AI21-Jamba-Instruct
658649
Model type: chat-completions
659650
Model provider name: AI21
660651
```
@@ -689,7 +680,7 @@ Console.WriteLine($"\tCompletion tokens: {response.Value.Usage.CompletionTokens}
689680
690681
```console
691682
Response: As of now, it's estimated that there are about 7,000 languages spoken around the world. However, this number can vary as some languages become extinct and new ones develop. It's also important to note that the number of speakers can greatly vary between languages, with some having millions of speakers and others only a few hundred.
692-
Model: Jamba-Instruct
683+
Model: AI21-Jamba-Instruct
693684
Usage:
694685
Prompt tokens: 19
695686
Total tokens: 91
@@ -845,14 +836,11 @@ catch (RequestFailedException ex)
845836
846837
::: zone pivot="programming-language-rest"
847838
848-
## Jamba-Instruct chat models
849-
850-
The Jamba Instruct model is AI21's production-grade Mamba-based large language model (LLM) which leverages AI21's hybrid Mamba-Transformer architecture. It's an instruction-tuned version of AI21's hybrid structured state space model (SSM) transformer Jamba model. The Jamba Instruct model is built for reliable commercial use with respect to quality and performance.
851839
852840
853841
You can learn more about the models in their respective model card:
854842
855-
* [Jamba-Instruct](https://aka.ms/azureai/landing/Jamba-Instruct)
843+
* [AI21-Jamba-Instruct](https://aka.ms/azureai/landing/AI21-Jamba-Instruct)
856844
857845
858846
## Prerequisites
@@ -904,7 +892,7 @@ The response is as follows:
904892
905893
```json
906894
{
907-
"model_name": "Jamba-Instruct",
895+
"model_name": "AI21-Jamba-Instruct",
908896
"model_type": "chat-completions",
909897
"model_provider_name": "AI21"
910898
}
@@ -937,7 +925,7 @@ The response is as follows, where you can see the model's usage statistics:
937925
"id": "0a1234b5de6789f01gh2i345j6789klm",
938926
"object": "chat.completion",
939927
"created": 1718726686,
940-
"model": "Jamba-Instruct",
928+
"model": "AI21-Jamba-Instruct",
941929
"choices": [
942930
{
943931
"index": 0,
@@ -994,7 +982,7 @@ You can visualize how streaming generates content:
994982
"id": "23b54589eba14564ad8a2e6978775a39",
995983
"object": "chat.completion.chunk",
996984
"created": 1718726371,
997-
"model": "Jamba-Instruct",
985+
"model": "AI21-Jamba-Instruct",
998986
"choices": [
999987
{
1000988
"index": 0,
@@ -1017,7 +1005,7 @@ The last message in the stream has `finish_reason` set, indicating the reason fo
10171005
"id": "23b54589eba14564ad8a2e6978775a39",
10181006
"object": "chat.completion.chunk",
10191007
"created": 1718726371,
1020-
"model": "Jamba-Instruct",
1008+
"model": "AI21-Jamba-Instruct",
10211009
"choices": [
10221010
{
10231011
"index": 0,
@@ -1068,7 +1056,7 @@ Explore other parameters that you can specify in the inference client. For a ful
10681056
"id": "0a1234b5de6789f01gh2i345j6789klm",
10691057
"object": "chat.completion",
10701058
"created": 1718726686,
1071-
"model": "Jamba-Instruct",
1059+
"model": "AI21-Jamba-Instruct",
10721060
"choices": [
10731061
{
10741062
"index": 0,

articles/ai-studio/how-to/deploy-models-mistral-nemo.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ Mistral AI offers two categories of models. Premium models including [Mistral La
2121

2222
::: zone pivot="programming-language-python"
2323

24-
## Mistral Nemo chat model
25-
2624
Mistral Nemo is a cutting-edge Language Model (LLM) boasting state-of-the-art reasoning, world knowledge, and coding capabilities within its size category.
2725

2826
Mistral Nemo is a 12B model, making it a powerful drop-in replacement for any system using Mistral 7B, which it supersedes. It supports a context length of 128K, and it accepts only text inputs and generates text outputs.
@@ -461,8 +459,6 @@ except HttpResponseError as ex:
461459

462460
::: zone pivot="programming-language-javascript"
463461

464-
## Mistral Nemo chat model
465-
466462
Mistral Nemo is a cutting-edge Language Model (LLM) boasting state-of-the-art reasoning, world knowledge, and coding capabilities within its size category.
467463

468464
Mistral Nemo is a 12B model, making it a powerful drop-in replacement for any system using Mistral 7B, which it supersedes. It supports a context length of 128K, and it accepts only text inputs and generates text outputs.
@@ -920,8 +916,6 @@ catch (error) {
920916
921917
::: zone pivot="programming-language-csharp"
922918
923-
## Mistral Nemo chat model
924-
925919
Mistral Nemo is a cutting-edge Language Model (LLM) boasting state-of-the-art reasoning, world knowledge, and coding capabilities within its size category.
926920
927921
Mistral Nemo is a 12B model, making it a powerful drop-in replacement for any system using Mistral 7B, which it supersedes. It supports a context length of 128K, and it accepts only text inputs and generates text outputs.
@@ -1401,8 +1395,6 @@ catch (RequestFailedException ex)
14011395
14021396
::: zone pivot="programming-language-rest"
14031397
1404-
## Mistral Nemo chat model
1405-
14061398
Mistral Nemo is a cutting-edge Language Model (LLM) boasting state-of-the-art reasoning, world knowledge, and coding capabilities within its size category.
14071399
14081400
Mistral Nemo is a 12B model, making it a powerful drop-in replacement for any system using Mistral 7B, which it supersedes. It supports a context length of 128K, and it accepts only text inputs and generates text outputs.

0 commit comments

Comments
 (0)