Skip to content

Commit

Permalink
Add new llama3 models support
Browse files Browse the repository at this point in the history
  • Loading branch information
n4ze3m committed Apr 22, 2024
1 parent a05bbb0 commit 4a3c83d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions server/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,28 @@ const LLMS: {
local_model: false,
config: "{}",
},
{
model_id: "accounts/fireworks/models/llama-v3-70b-instruct-dbase",
name: "Llama v3 70B Instruct (Fireworks)",
model_type: "chat",
stream_available: true,
model_provider: "Fireworks",
local_model: false,
},
{
model_id: "llama3-8b-8192-dbase",
name: "LLaMA3-8b (Groq)",
model_type: "chat",
stream_available: true,
model_provider: "Groq",
},
{
model_id: "llama3-70b-8192",
name: "LLaMA3-70b (Groq)",
model_type: "chat",
stream_available: true,
model_provider: "Groq",
}
];

const EMBEDDING_MODELS: {
Expand Down

0 comments on commit 4a3c83d

Please sign in to comment.