Skip to content

Commit e5615e6

Browse files
authored
📦 NEW: meta-llama/Llama-3.3-70B-Instruct-Turbo model (#143)
1 parent 064c7c1 commit e5615e6

File tree

5 files changed

+66
-6
lines changed

5 files changed

+66
-6
lines changed

‎packages/baseai/src/data/models.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
253253
}
254254
],
255255
[TOGETHER_AI]: [
256+
{
257+
id: 'meta-llama/Llama-3.3-70B-Instruct-Turbo',
258+
provider: TOGETHER_AI,
259+
promptCost: 0.88,
260+
completionCost: 0.88,
261+
},
256262
{
257263
id: 'meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo',
258264
provider: TOGETHER_AI,
@@ -427,6 +433,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
427433
}
428434
],
429435
[GROQ]: [
436+
{
437+
id: 'llama-3.3-70b-versatile',
438+
provider: GROQ,
439+
promptCost: 0.59,
440+
completionCost: 0.79,
441+
},
430442
{
431443
id: 'llama-3.1-70b-versatile',
432444
provider: GROQ,
@@ -527,6 +539,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
527539
}
528540
],
529541
[FIREWORKS_AI]: [
542+
{
543+
id: 'llama-v3p3-70b-instruct',
544+
provider: FIREWORKS_AI,
545+
promptCost: 0.88,
546+
completionCost: 0.88,
547+
},
530548
{
531549
id: 'llama-v3p1-405b-instruct',
532550
provider: FIREWORKS_AI,

‎packages/baseai/src/dev/data/models.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
173173
}
174174
],
175175
[TOGETHER_AI]: [
176+
{
177+
id: 'meta-llama/Llama-3.3-70B-Instruct-Turbo',
178+
provider: TOGETHER_AI,
179+
promptCost: 0.88,
180+
completionCost: 0.88,
181+
},
176182
{
177183
id: 'meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo',
178184
provider: TOGETHER_AI,
@@ -347,6 +353,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
347353
}
348354
],
349355
[GROQ]: [
356+
{
357+
id: 'llama-3.3-70b-versatile',
358+
provider: GROQ,
359+
promptCost: 0.59,
360+
completionCost: 0.79,
361+
},
350362
{
351363
id: 'llama-3.1-70b-versatile',
352364
provider: GROQ,
@@ -447,6 +459,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
447459
}
448460
],
449461
[FIREWORKS_AI]: [
462+
{
463+
id: 'llama-v3p3-70b-instruct',
464+
provider: FIREWORKS_AI,
465+
promptCost: 0.88,
466+
completionCost: 0.88,
467+
},
450468
{
451469
id: 'llama-v3p1-405b-instruct',
452470
provider: FIREWORKS_AI,

‎packages/baseai/types/model.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export type TogetherModels =
2929
| 'together:mistralai/Mistral-7B-Instruct-v0.2'
3030
| 'together:mistralai/Mixtral-8x7B-Instruct-v0.1'
3131
| 'together:mistralai/Mixtral-8x22B-Instruct-v0.1'
32-
| 'together:databricks/dbrx-instruct';
32+
| 'together:databricks/dbrx-instruct'
33+
| 'together:meta-llama/Llama-3.3-70B-Instruct-Turbo';
3334

3435
export type AnthropicModels =
3536
| 'anthropic:claude-3-5-sonnet-latest'
@@ -46,7 +47,8 @@ export type GroqModels =
4647
| 'groq:llama3-8b-8192'
4748
| 'groq:mixtral-8x7b-32768'
4849
| 'groq:gemma2-9b-it'
49-
| 'groq:gemma-7b-it';
50+
| 'groq:gemma-7b-it'
51+
| 'groq:llama-3.3-70b-versatile';
5052

5153
export type GoogleModels =
5254
| 'google:gemini-1.5-pro-latest'
@@ -61,7 +63,8 @@ export type FireworksAIModels =
6163
| 'fireworks:llama-v3p1-8b-instruct'
6264
| 'fireworks:llama-v3p1-70b-instruct'
6365
| 'fireworks:llama-v3-70b-instruct'
64-
| 'fireworks:yi-large';
66+
| 'fireworks:yi-large'
67+
| 'fireworks:llama-v3p3-70b-instruct';
6568

6669
export type PerplexityModels =
6770
| 'perplexity:llama-3.1-sonar-huge-128k-online'

‎packages/core/src/data/models.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
113113
},
114114
],
115115
[TOGETHER_AI]: [
116+
{
117+
id: 'meta-llama/Llama-3.3-70B-Instruct-Turbo',
118+
provider: TOGETHER_AI,
119+
promptCost: 0.88,
120+
completionCost: 0.88,
121+
},
116122
{
117123
id: 'meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo',
118124
provider: TOGETHER_AI,
@@ -243,6 +249,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
243249
},
244250
],
245251
[GROQ]: [
252+
{
253+
id: 'llama-3.3-70b-versatile',
254+
provider: GROQ,
255+
promptCost: 0.59,
256+
completionCost: 0.79,
257+
},
246258
{
247259
id: 'llama-3.1-70b-versatile',
248260
provider: GROQ,
@@ -327,6 +339,12 @@ export const modelsByProvider: ModelsByProviderInclCosts = {
327339
},
328340
],
329341
[FIREWORKS_AI]: [
342+
{
343+
id: 'llama-v3p3-70b-instruct',
344+
provider: FIREWORKS_AI,
345+
promptCost: 0.88,
346+
completionCost: 0.88,
347+
},
330348
{
331349
id: 'llama-v3p1-405b-instruct',
332350
provider: FIREWORKS_AI,

‎packages/core/types/model.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export type TogetherModels =
2929
| 'together:mistralai/Mistral-7B-Instruct-v0.2'
3030
| 'together:mistralai/Mixtral-8x7B-Instruct-v0.1'
3131
| 'together:mistralai/Mixtral-8x22B-Instruct-v0.1'
32-
| 'together:databricks/dbrx-instruct';
32+
| 'together:databricks/dbrx-instruct'
33+
| 'together:meta-llama/Llama-3.3-70B-Instruct-Turbo';
3334

3435
export type AnthropicModels =
3536
| 'anthropic:claude-3-5-sonnet-latest'
@@ -46,7 +47,8 @@ export type GroqModels =
4647
| 'groq:llama3-8b-8192'
4748
| 'groq:mixtral-8x7b-32768'
4849
| 'groq:gemma2-9b-it'
49-
| 'groq:gemma-7b-it';
50+
| 'groq:gemma-7b-it'
51+
| 'groq:llama-3.3-70b-versatile';
5052

5153
export type GoogleModels =
5254
| 'google:gemini-1.5-pro-latest'
@@ -61,7 +63,8 @@ export type FireworksAIModels =
6163
| 'fireworks:llama-v3p1-8b-instruct'
6264
| 'fireworks:llama-v3p1-70b-instruct'
6365
| 'fireworks:llama-v3-70b-instruct'
64-
| 'fireworks:yi-large';
66+
| 'fireworks:yi-large'
67+
| 'fireworks:llama-v3p3-70b-instruct';
6568

6669
export type PerplexityModels =
6770
| 'perplexity:llama-3.1-sonar-huge-128k-online'

0 commit comments

Comments
 (0)