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 4242593 commit 513147eCopy full SHA for 513147e
shell/agents/AIShell.OpenAI.Agent/ModelInfo.cs
@@ -25,6 +25,7 @@ static ModelInfo()
25
["o1"] = new(tokenLimit: 200_000, encoding: Gpt4oEncoding, reasoning: true),
26
["o3"] = new(tokenLimit: 200_000, encoding: Gpt4oEncoding, reasoning: true),
27
["o4-mini"] = new(tokenLimit: 200_000, encoding: Gpt4oEncoding, reasoning: true),
28
+ ["gpt-5"] = new(tokenLimit: 400_000, encoding: Gpt4oEncoding, reasoning: true),
29
["gpt-4.1"] = new(tokenLimit: 1_047_576, encoding: Gpt4oEncoding),
30
["gpt-4o"] = new(tokenLimit: 128_000, encoding: Gpt4oEncoding),
31
["gpt-4"] = new(tokenLimit: 8_192),
0 commit comments