Skip to content

Commit 599b318

Browse files
committed
feat(models): add openai oss models
1 parent 2bba201 commit 599b318

File tree

1 file changed

+77
-17
lines changed

1 file changed

+77
-17
lines changed

apps/sim/providers/models.ts

Lines changed: 77 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -447,44 +447,104 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
447447
id: 'groq',
448448
name: 'Groq',
449449
description: "Groq's LLM models with high-performance inference",
450-
defaultModel: 'groq/meta-llama/llama-4-scout-17b-16e-instruct',
450+
defaultModel: 'openai/gpt-oss-120b',
451451
modelPatterns: [/^groq/],
452452
icon: GroqIcon,
453453
models: [
454454
{
455-
id: 'groq/meta-llama/llama-4-scout-17b-16e-instruct',
455+
id: 'openai/gpt-oss-120b',
456456
pricing: {
457-
input: 0.4,
458-
cachedInput: 0.2,
459-
output: 0.6,
460-
updatedAt: '2025-06-17',
457+
input: 0.15,
458+
cachedInput: 0.075,
459+
output: 0.75,
460+
updatedAt: '2025-08-05',
461461
},
462462
capabilities: {
463-
toolUsageControl: false,
463+
toolUsageControl: true,
464464
},
465465
},
466466
{
467-
id: 'groq/deepseek-r1-distill-llama-70b',
467+
id: 'openai/gpt-oss-20b',
468468
pricing: {
469-
input: 0.75,
470-
cachedInput: 0.38,
471-
output: 0.99,
472-
updatedAt: '2025-06-17',
469+
input: 0.01,
470+
cachedInput: 0.005,
471+
output: 0.25,
472+
updatedAt: '2025-08-05',
473+
},
474+
capabilities: {
475+
toolUsageControl: true,
476+
},
477+
},
478+
{
479+
id: 'gemma2-9b-it',
480+
pricing: {
481+
input: 0.04,
482+
cachedInput: 0.02,
483+
output: 0.04,
484+
updatedAt: '2025-08-05',
485+
},
486+
capabilities: {
487+
toolUsageControl: true,
488+
},
489+
},
490+
{
491+
id: 'llama-3.1-8b-instant',
492+
pricing: {
493+
input: 0.05,
494+
cachedInput: 0.025,
495+
output: 0.08,
496+
updatedAt: '2025-08-05',
497+
},
498+
capabilities: {
499+
toolUsageControl: true,
500+
},
501+
},
502+
{
503+
id: 'llama-3.3-70b-versatile',
504+
pricing: {
505+
input: 0.35,
506+
cachedInput: 0.175,
507+
output: 0.61,
508+
updatedAt: '2025-08-05',
509+
},
510+
capabilities: {
511+
toolUsageControl: true,
512+
},
513+
},
514+
{
515+
id: 'meta-llama/llama-guard-4-12b',
516+
pricing: {
517+
input: 0.2,
518+
cachedInput: 0.1,
519+
output: 0.2,
520+
updatedAt: '2025-08-05',
473521
},
474522
capabilities: {
475523
toolUsageControl: false,
476524
},
477525
},
478526
{
479-
id: 'groq/qwen-qwq-32b',
527+
id: 'deepseek-r1-distill-llama-70b',
480528
pricing: {
481-
input: 0.29,
529+
input: 0.58,
482530
cachedInput: 0.29,
483-
output: 0.39,
484-
updatedAt: '2025-06-17',
531+
output: 0.99,
532+
updatedAt: '2025-08-05',
485533
},
486534
capabilities: {
487-
toolUsageControl: false,
535+
toolUsageControl: true,
536+
},
537+
},
538+
{
539+
id: 'meta-llama/llama-4-maverick-17b-128e-instruct',
540+
pricing: {
541+
input: 0.2,
542+
cachedInput: 0.1,
543+
output: 0.6,
544+
updatedAt: '2025-08-05',
545+
},
546+
capabilities: {
547+
toolUsageControl: true,
488548
},
489549
},
490550
],

0 commit comments

Comments
 (0)