Skip to content

Commit

Permalink
Replace with modelName
Browse files Browse the repository at this point in the history
  • Loading branch information
punitda committed Nov 4, 2024
1 parent 242aa24 commit 4488ee0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const DEFAULT_INPUTS = {
export const AZURE_MODELS = [
{
name: "azure/gpt-4o-mini",
actualName: "gpt-4o-mini",
modelName: "gpt-4o-mini",
label: "GPT-4o mini (Azure)",
},
];
Expand Down Expand Up @@ -66,7 +66,7 @@ export type OPENAI_MODEL_NAMES = (typeof OPENAI_MODELS)[number]["name"];
export type ANTHROPIC_MODEL_NAMES = (typeof ANTHROPIC_MODELS)[number]["name"];
export type FIREWORKS_MODEL_NAMES = (typeof FIREWORKS_MODELS)[number]["name"];
export type GEMINI_MODEL_NAMES = (typeof GEMINI_MODELS)[number]["name"];
export type AZURE_MODEL_NAMES = (typeof AZURE_MODELS)[number]["actualName"];
export type AZURE_MODEL_NAMES = (typeof AZURE_MODELS)[number]["modelName"];
export type ALL_MODEL_NAMES =
| OPENAI_MODEL_NAMES
| ANTHROPIC_MODEL_NAMES
Expand Down

0 comments on commit 4488ee0

Please sign in to comment.