Skip to content
Snippets Groups Projects
Unverified Commit a2571024 authored by PyKen's avatar PyKen Committed by GitHub
Browse files

Add prompt window limits for gpt-4o-* models (#2104)

parent dfb951e9
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,10 @@ class OpenAiLLM { ...@@ -44,6 +44,10 @@ class OpenAiLLM {
case "gpt-3.5-turbo-1106": case "gpt-3.5-turbo-1106":
return 16_385; return 16_385;
case "gpt-4o": case "gpt-4o":
case "gpt-4o-2024-08-06":
case "gpt-4o-2024-05-13":
case "gpt-4o-mini":
case "gpt-4o-mini-2024-07-18":
case "gpt-4-turbo": case "gpt-4-turbo":
case "gpt-4-1106-preview": case "gpt-4-1106-preview":
case "gpt-4-turbo-preview": case "gpt-4-turbo-preview":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment