Skip to content

Commit

Permalink
add 4o
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Jan 29, 2025
1 parent 6b6f73d commit 1ebbb30
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,26 @@ export const OPENAI_MODELS: ModelConfigurationParams[] = [
},
isNew: true,
},
{
name: "gpt-4o",
label: "GPT-4o",
config: {
provider: "openai",
temperatureRange: {
min: 0,
max: 1,
default: 0.5,
current: 0.5,
},
maxTokens: {
min: 1,
max: 16384,
default: 4096,
current: 4096,
},
},
isNew: false,
},
{
name: "gpt-4o-mini",
label: "GPT-4o mini",
Expand Down Expand Up @@ -271,6 +291,7 @@ export const GEMINI_MODELS: ModelConfigurationParams[] = [
export const LANGCHAIN_USER_ONLY_MODELS = [
"o1-mini",
"o1",
"gpt-4o",
"claude-3-5-sonnet-latest",
];

Expand Down

0 comments on commit 1ebbb30

Please sign in to comment.