Skip to content

Commit

Permalink
support for opus and sonnet
Browse files Browse the repository at this point in the history
  • Loading branch information
n4ze3m committed Mar 9, 2024
1 parent 9e17102 commit 4759853
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions server/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,24 +271,24 @@ const LLMS: {
local_model: false,
config: "{}",
},
// {
// name: "Claude 3 Opus 20240229 (Anthropic)",
// model_id: "claude-3-opus-20240229-dbase",
// model_type: "chat",
// model_provider: "Anthropic",
// stream_available: true,
// local_model: false,
// config: "{}",
// },
// {
// name: "Claude 3 Sonnet 20240229 (Anthropic)",
// model_id: "claude-3-sonnet-20240229-dbase",
// model_type: "chat",
// model_provider: "Anthropic",
// stream_available: true,
// local_model: false,
// config: "{}",
// },
{
name: "Claude 3 Opus 20240229 (Anthropic)",
model_id: "claude-3-opus-20240229-dbase",
model_type: "chat",
model_provider: "Anthropic",
stream_available: true,
local_model: false,
config: "{}",
},
{
name: "Claude 3 Sonnet 20240229 (Anthropic)",
model_id: "claude-3-sonnet-20240229-dbase",
model_type: "chat",
model_provider: "Anthropic",
stream_available: true,
local_model: false,
config: "{}",
},
];

const EMBEDDING_MODELS: {
Expand Down

0 comments on commit 4759853

Please sign in to comment.