Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

πŸ’„ style: add new models to groq which are llama 3.1 #3301

Merged
merged 3 commits into from
Jul 25, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/config/modelProviders/groq.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@ import { ModelProviderCard } from '@/types/llm';
// ref https://console.groq.com/docs/models
const Groq: ModelProviderCard = {
chatModels: [
{
displayName: 'LLaMA3.1 405B',
enabled: true,
kmfb marked this conversation as resolved.
Show resolved Hide resolved
functionCall: true,
id: 'llama-3.1-405b-reasoning',
tokens: 131_072,
kmfb marked this conversation as resolved.
Show resolved Hide resolved
},
{
displayName: 'LLaMA3.1 70B',
enabled: true,
functionCall: true,
id: 'llama-3.1-70b-versatile',
tokens: 131_072,
},
{
displayName: 'LLaMA3.1 8B',
enabled: true,
functionCall: true,
id: 'llama-3.1-8b-instant',
tokens: 131_072,
},
kmfb marked this conversation as resolved.
Show resolved Hide resolved
{
displayName: 'LLaMA3 70B',
enabled: true,
Expand Down
Loading