We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b6f73d commit 1ebbb30Copy full SHA for 1ebbb30
src/constants.ts
@@ -91,6 +91,26 @@ export const OPENAI_MODELS: ModelConfigurationParams[] = [
91
},
92
isNew: true,
93
94
+ {
95
+ name: "gpt-4o",
96
+ label: "GPT-4o",
97
+ config: {
98
+ provider: "openai",
99
+ temperatureRange: {
100
+ min: 0,
101
+ max: 1,
102
+ default: 0.5,
103
+ current: 0.5,
104
+ },
105
+ maxTokens: {
106
+ min: 1,
107
+ max: 16384,
108
+ default: 4096,
109
+ current: 4096,
110
111
112
+ isNew: false,
113
114
{
115
name: "gpt-4o-mini",
116
label: "GPT-4o mini",
@@ -271,6 +291,7 @@ export const GEMINI_MODELS: ModelConfigurationParams[] = [
271
291
export const LANGCHAIN_USER_ONLY_MODELS = [
272
292
"o1-mini",
273
293
"o1",
294
+ "gpt-4o",
274
295
"claude-3-5-sonnet-latest",
275
296
];
276
297
0 commit comments