You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitclient.chat.completions.create({ messages: [{ role:'user', content:'Say this is a test' }], model:'mistralai/Mixtral-8x7B-Instruct-v0.1' }, {
182
+
awaitclient.chat.completions.create({ messages: [{ role:'user', content:'Say this is a test' }], model:'meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo' }, {
183
183
maxRetries:5,
184
184
});
185
185
```
@@ -196,7 +196,7 @@ const client = new Together({
196
196
});
197
197
198
198
// Override per-request:
199
-
awaitclient.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'mistralai/Mixtral-8x7B-Instruct-v0.1' }, {
199
+
awaitclient.chat.completions.create({ messages: [{ role: 'user', content: 'Say this is a test' }], model: 'meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo' }, {
200
200
timeout: 5*1000,
201
201
});
202
202
```
@@ -222,7 +222,7 @@ const client = new Together();
222
222
const response =awaitclient.chat.completions
223
223
.create({
224
224
messages: [{ role: 'user', content: 'Say this is a test' }],
0 commit comments