Replies: 4 comments
-
even requesting the use of the "gpt-4-0613" model, the gpt-3 model actually responds |
Beta Was this translation helpful? Give feedback.
-
GPT is not an expert on itself. It was trained on material before it existed. You can search OpenAI forums for more threads on this topic. If it’s critical for it to respond correctly in the text, add this fact to your system prompt (likely what ChatGPT does). Otherwise look at the model attribute in the response. |
Beta Was this translation helpful? Give feedback.
-
If I ask GPT-3.5 from chat.openai.com "User If I ask GPT-4 the same thing he replies: "I am ChatGPT, an artificial intelligence developed by OpenAI. Specifically, I am based on the GPT-4 architecture. My purpose is to provide assistance, information, and perform tasks involving natural language understanding and generation. It's important to note that as of my training cut-off in September 2021, I am unable to access real-time data or learn new information after that date" It seems to me that he identifies very well. The problem is that when I ask the GPT-4 model with this PHP client it replies identifying itself as GPT-3. This doesn't surprise me: because it makes the same mistakes as GPT-3 |
Beta Was this translation helpful? Give feedback.
-
As I said, chat.openai.com likely includes this information in the system message which we have no visibility into, and you can do the same if it is important to you: $response = $client->chat()->create([
"model" => "gpt-4",
"messages" => [
[
"role" => "system",
"content" => "You are a helpful assistant, powered by GPT-4 by OpenAI.",
],
[
"role" => "user",
"content" => "Who are you?",
],
],
]);
You can try asking the same thing in the OpenAI Playground to see it is not an issue with this PHP library. |
Beta Was this translation helpful? Give feedback.
-
While requiring the use of the GPT-4 model, when I ask the AI to identify itself with name and version, it emerges that it is version 3. Why?
Beta Was this translation helpful? Give feedback.
All reactions