File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ client = AI21Client()
180180
181181response = 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(
190190print (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
213213response = client.chat.completions.create(
214214 messages = messages,
215- model = " jamba-instruct " ,
215+ model = " jamba-large " ,
216216 stream = True ,
217217)
218218for chunk in response:
@@ -606,7 +606,7 @@ and `AsyncAI21AzureClient` clients.
606606
607607The following models are supported on Azure:
608608
609- - ` jamba-instruct `
609+ - ` jamba-large `
610610
611611``` python
612612from ai21 import AI21AzureClient
@@ -647,7 +647,7 @@ messages = [
647647
648648async def main ():
649649 response = await client.chat.completions.create(
650- model = " jamba-instruct " ,
650+ model = " jamba-large " ,
651651 messages = messages,
652652 )
653653
You can’t perform that action at this time.
0 commit comments