Add Llama 3.3 model from Groq
Signed-off-by: Bart Jaskulski <bjaskulski@protonmail.com>
This commit is contained in:
parent
4cb38148b3
commit
960e34aa3d
1 changed files with 13 additions and 0 deletions
|
@ -9,6 +9,19 @@ export const loadGroqChatModels = async () => {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const chatModels = {
|
const chatModels = {
|
||||||
|
'llama-3.3-70b-versatile': {
|
||||||
|
displayName: 'Llama 3.3 70B',
|
||||||
|
model: new ChatOpenAI(
|
||||||
|
{
|
||||||
|
openAIApiKey: groqApiKey,
|
||||||
|
modelName: 'llama-3.3-70b-versatile',
|
||||||
|
temperature: 0.7,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
baseURL: 'https://api.groq.com/openai/v1',
|
||||||
|
},
|
||||||
|
),
|
||||||
|
},
|
||||||
'llama-3.2-3b-preview': {
|
'llama-3.2-3b-preview': {
|
||||||
displayName: 'Llama 3.2 3B',
|
displayName: 'Llama 3.2 3B',
|
||||||
model: new ChatOpenAI(
|
model: new ChatOpenAI(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue