Hello,
I am currently working on converting Excel files to the JSON format. Unlike ChatGPT, OpenAI’s API does not accept direct uploads of Excel files. It seems that you need to use a format recognized by the model, such as JSON.
I have therefore created a JSON file that I uploaded to the GPT-4 model in three different ways. The same question gives me three different answers.
Use case:
Upload of a JSON file with a list of subscribers (persons).
The number of entries for subscribers in the Json file is 5000.
Here is a sample of the file with two records.
Question to the model:
How many times do you find the first name Judie in the subscribers ?
- From plateform.openai.com (API)
- Assistants Playground (Assistant V2, model gpt-4o).
- File is attached to the thread.
Model reply: The first name “Judie” appears 20 times in the subscribers list[1].
- From Microsoft Azure OpenAI studio
- Assistant Playground (Assistant V2, gpt-4o version:2024-05-13)
- File is attached to the thread.
Model reply: The first name “Judie” appears once in the subscribers list【4:0†source】.
- From chatgpt.com
- File uploaded in the prompt.
- model gpt-4o
Model reply: The first name “Judie” appears 100 times in the subscribers list.
The right answer is given by ChatGPT (100 times).
Any idea of what is going on and why the model is not providing the right answer with OpenAI API and OpenAI service on Azure ?
Thank you for any feedback.