Skip to content

Commit 4880d34

Browse files
authored
feat(models): add openai oss models (#880)
* feat(models): add openai oss models * fix tool usage control for groq
1 parent 2bba201 commit 4880d34

File tree

1 file changed

+74
-14
lines changed

1 file changed

+74
-14
lines changed

apps/sim/providers/models.ts

Lines changed: 74 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -447,17 +447,77 @@ 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: 'groq/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: 'groq/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',
461+
},
462+
capabilities: {
463+
toolUsageControl: false,
464+
},
465+
},
466+
{
467+
id: 'groq/openai/gpt-oss-20b',
468+
pricing: {
469+
input: 0.01,
470+
cachedInput: 0.005,
471+
output: 0.25,
472+
updatedAt: '2025-08-05',
473+
},
474+
capabilities: {
475+
toolUsageControl: false,
476+
},
477+
},
478+
{
479+
id: 'groq/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: false,
488+
},
489+
},
490+
{
491+
id: 'groq/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: false,
500+
},
501+
},
502+
{
503+
id: 'groq/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: false,
512+
},
513+
},
514+
{
515+
id: 'groq/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',
461521
},
462522
capabilities: {
463523
toolUsageControl: false,
@@ -466,22 +526,22 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
466526
{
467527
id: 'groq/deepseek-r1-distill-llama-70b',
468528
pricing: {
469-
input: 0.75,
470-
cachedInput: 0.38,
529+
input: 0.58,
530+
cachedInput: 0.29,
471531
output: 0.99,
472-
updatedAt: '2025-06-17',
532+
updatedAt: '2025-08-05',
473533
},
474534
capabilities: {
475535
toolUsageControl: false,
476536
},
477537
},
478538
{
479-
id: 'groq/qwen-qwq-32b',
539+
id: 'groq/meta-llama/llama-4-maverick-17b-128e-instruct',
480540
pricing: {
481-
input: 0.29,
482-
cachedInput: 0.29,
483-
output: 0.39,
484-
updatedAt: '2025-06-17',
541+
input: 0.2,
542+
cachedInput: 0.1,
543+
output: 0.6,
544+
updatedAt: '2025-08-05',
485545
},
486546
capabilities: {
487547
toolUsageControl: false,

0 commit comments

Comments
 (0)