Skip to content

Commit 4d6b82a

Browse files
committed
fix tool usage control for groq
1 parent 599b318 commit 4d6b82a

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

apps/sim/providers/models.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -452,67 +452,67 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
452452
icon: GroqIcon,
453453
models: [
454454
{
455-
id: 'openai/gpt-oss-120b',
455+
id: 'groq/gpt-oss-120b',
456456
pricing: {
457457
input: 0.15,
458458
cachedInput: 0.075,
459459
output: 0.75,
460460
updatedAt: '2025-08-05',
461461
},
462462
capabilities: {
463-
toolUsageControl: true,
463+
toolUsageControl: false,
464464
},
465465
},
466466
{
467-
id: 'openai/gpt-oss-20b',
467+
id: 'groq/gpt-oss-20b',
468468
pricing: {
469469
input: 0.01,
470470
cachedInput: 0.005,
471471
output: 0.25,
472472
updatedAt: '2025-08-05',
473473
},
474474
capabilities: {
475-
toolUsageControl: true,
475+
toolUsageControl: false,
476476
},
477477
},
478478
{
479-
id: 'gemma2-9b-it',
479+
id: 'groq/gemma2-9b-it',
480480
pricing: {
481481
input: 0.04,
482482
cachedInput: 0.02,
483483
output: 0.04,
484484
updatedAt: '2025-08-05',
485485
},
486486
capabilities: {
487-
toolUsageControl: true,
487+
toolUsageControl: false,
488488
},
489489
},
490490
{
491-
id: 'llama-3.1-8b-instant',
491+
id: 'groq/llama-3.1-8b-instant',
492492
pricing: {
493493
input: 0.05,
494494
cachedInput: 0.025,
495495
output: 0.08,
496496
updatedAt: '2025-08-05',
497497
},
498498
capabilities: {
499-
toolUsageControl: true,
499+
toolUsageControl: false,
500500
},
501501
},
502502
{
503-
id: 'llama-3.3-70b-versatile',
503+
id: 'groq/llama-3.3-70b-versatile',
504504
pricing: {
505505
input: 0.35,
506506
cachedInput: 0.175,
507507
output: 0.61,
508508
updatedAt: '2025-08-05',
509509
},
510510
capabilities: {
511-
toolUsageControl: true,
511+
toolUsageControl: false,
512512
},
513513
},
514514
{
515-
id: 'meta-llama/llama-guard-4-12b',
515+
id: 'groq/llama-guard-4-12b',
516516
pricing: {
517517
input: 0.2,
518518
cachedInput: 0.1,
@@ -524,27 +524,27 @@ export const PROVIDER_DEFINITIONS: Record<string, ProviderDefinition> = {
524524
},
525525
},
526526
{
527-
id: 'deepseek-r1-distill-llama-70b',
527+
id: 'groq/deepseek-r1-distill-llama-70b',
528528
pricing: {
529529
input: 0.58,
530530
cachedInput: 0.29,
531531
output: 0.99,
532532
updatedAt: '2025-08-05',
533533
},
534534
capabilities: {
535-
toolUsageControl: true,
535+
toolUsageControl: false,
536536
},
537537
},
538538
{
539-
id: 'meta-llama/llama-4-maverick-17b-128e-instruct',
539+
id: 'groq/llama-4-maverick-17b-128e-instruct',
540540
pricing: {
541541
input: 0.2,
542542
cachedInput: 0.1,
543543
output: 0.6,
544544
updatedAt: '2025-08-05',
545545
},
546546
capabilities: {
547-
toolUsageControl: true,
547+
toolUsageControl: false,
548548
},
549549
},
550550
],

0 commit comments

Comments
 (0)