Skip to content

Commit

Permalink
feat: add more models in prompts (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt authored Jan 20, 2025
1 parent 26d37e7 commit aa6a8a0
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion packages/shared/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,22 @@ export const MODELS = [
{ id: "gpt-3.5-turbo-16k", name: "gpt-3.5-turbo-16k", provider: "openai" },
{
id: "google/gemini-pro",
name: "gemini-pro",
name: "gemini-pro-1.0",
provider: "openrouter",
},
{
id: "google/gemini-pro-1.5",
name: "gemini-pro-1.5",
provider: "openrouter",
},
{
id: "google/gemini-flash-1.5",
name: "gemini-flash-1.5",
provider: "openrouter",
},
{
id: "google/gemini-flash-1.5-8b",
name: "gemini-flash-1.5-8b",
provider: "openrouter",
},
{ id: "claude-2", name: "claude-2", provider: "anthropic" },
Expand Down Expand Up @@ -173,4 +188,14 @@ export const MODELS = [
name: "llama-3.3-70b-instruct",
provider: "openrouter",
},
{
id: "x-ai/grok-2",
name: "grok-2",
provider: "openrouter",
},
{
id: "x-ai/grok-2-1212",
name: "grok-2-1212",
provider: "openrouter",
},
];

0 comments on commit aa6a8a0

Please sign in to comment.