The new gpt-4-turbo-2024-04-09
seems to be misaligned as to its cutoff date (and related data) by default – the model variant will hallucinate its cutoff date being (at worst) in September 2021 or April 2023 at best, when it should be in December 2023.
As of now, unless you specifically state in the API system instructions i.e. “You are based on the gpt-4-turbo-2024-04-09 model, and your cutoff date is is in December 2023.”, or are otherwise pointing directly at gpt-4-turbo-2024-04-09
in the system message, the cutoff date for the model’s data will simply will not match what’s expected from this latest iteration which is supposed to be in December 2023.
In other words, pointing out to gpt-4-turbo-2024-04-09
in the API function call and explaining the model’s role as GPT-4, AI assistant (or any variant alike) is not enough to anchor the gpt-4-turbo-2024-04-09
model to the December 2023 cutoff date.
Without explicit mention to gpt-4-turbo-2024-04-09
in the system message, the model variant will more than likely either hallucinate a checkpoint between 2021 and April 2023, and will i.e. answer to any factual questions accordingly. This is at least happening on the web API Playground in both the regular chat mode as well as with the API Assistants, as well as when accessing the API over the openai
Python package.
Note that the new gpt-4-turbo-2024-04-09
is supposed to have knowledge up to December 2023 (see https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4), which it is unable to access without the model variant-specific steering in the system instructions.
Also, the gpt-4-turbo
model also currently points to gpt-4-turbo-2024-04-09
, yet it’s very probable that the API users are currently struggling getting any up-to-cutoff-date data out unless they specifically point out gpt-4-turbo-2024-04-09
in their system message.
Considering that without the system message steering to point to the model, the factual accuracy of recent events is all over the place, this might be a critical bug concerning how the gpt-4-turbo-2024-04-09
variant handles its cutoff date altogether, see my additional post(s) below for a Python code to A/B test the issue, i.e. Gpt-4-turbo-2024-04-09 does not anchor to most current cutoff date by default - #9 by FlyingFathead Try it out with that example or throw in your own Q&A’s, you can replicate the exact issue that way.