Skip to content

Commit

Permalink
add back Anthropic models
Browse files Browse the repository at this point in the history
  • Loading branch information
Regaddi committed Nov 19, 2024
1 parent a36592a commit 24dd43e
Showing 1 changed file with 25 additions and 5 deletions.
30 changes: 25 additions & 5 deletions clients/web/lib/llm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,31 @@ export interface LLMModel {

const llmModels: LLMModel[] = [
// Anthropic
// {
// service: "anthropic",
// model: "claude-3-5-sonnet-20240620",
// label: "Claude 3.5 Sonnet",
// },
{
service: "anthropic",
model: "claude-3-5-sonnet-20241022",
label: "Claude 3.5 Sonnet (2024-10-22)",
},
{
service: "anthropic",
model: "claude-3-5-sonnet-20240620",
label: "Claude 3.5 Sonnet (2024-06-20)",
},
{
service: "anthropic",
model: "claude-3-5-sonnet-latest",
label: "Claude 3.5 Sonnet (Latest)",
},
{
service: "anthropic",
model: "claude-3-5-haiku-20241022",
label: "Claude 3.5 Haiku (2024-10-22)",
},
{
service: "anthropic",
model: "claude-3-5-haiku-latest",
label: "Claude 3.5 Haiku (Latest)",
},
// Together AI
{
service: "together",
Expand Down

0 comments on commit 24dd43e

Please sign in to comment.