Skip to content

Commit 960e34a

Browse files
Add Llama 3.3 model from Groq
Signed-off-by: Bart Jaskulski <[email protected]>
1 parent 4cb3814 commit 960e34a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/lib/providers/groq.ts

+13
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ export const loadGroqChatModels = async () => {
99

1010
try {
1111
const chatModels = {
12+
'llama-3.3-70b-versatile': {
13+
displayName: 'Llama 3.3 70B',
14+
model: new ChatOpenAI(
15+
{
16+
openAIApiKey: groqApiKey,
17+
modelName: 'llama-3.3-70b-versatile',
18+
temperature: 0.7,
19+
},
20+
{
21+
baseURL: 'https://api.groq.com/openai/v1',
22+
},
23+
),
24+
},
1225
'llama-3.2-3b-preview': {
1326
displayName: 'Llama 3.2 3B',
1427
model: new ChatOpenAI(

0 commit comments

Comments
 (0)