Skip to content

Commit c0939c4

Browse files
authored
docs: Update README.md (#287)
1 parent 08a5b41 commit c0939c4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ client = AI21Client()
180180

181181
response = client.chat.completions.create(
182182
messages=messages,
183-
model="jamba-instruct",
183+
model="jamba-large",
184184
max_tokens=100,
185185
temperature=0.7,
186186
top_p=1.0,
@@ -190,7 +190,7 @@ response = client.chat.completions.create(
190190
print(response)
191191
```
192192

193-
Note that jamba-instruct supports async and streaming as well.
193+
Note that jamba-large supports async and streaming as well.
194194

195195
</details>
196196

@@ -212,7 +212,7 @@ client = AI21Client()
212212

213213
response = client.chat.completions.create(
214214
messages=messages,
215-
model="jamba-instruct",
215+
model="jamba-large",
216216
stream=True,
217217
)
218218
for chunk in response:
@@ -606,7 +606,7 @@ and `AsyncAI21AzureClient` clients.
606606

607607
The following models are supported on Azure:
608608

609-
- `jamba-instruct`
609+
- `jamba-large`
610610

611611
```python
612612
from ai21 import AI21AzureClient
@@ -647,7 +647,7 @@ messages = [
647647

648648
async def main():
649649
response = await client.chat.completions.create(
650-
model="jamba-instruct",
650+
model="jamba-large",
651651
messages=messages,
652652
)
653653

0 commit comments

Comments
 (0)