Hello!
When specifying messages in the openai chat completion API, is there any difference between:
{ "role": "user", "content": "Hello!"
And:
{ "role": "user", "content": [ { "type": "text", "text": "Hello!", } ] }
Also is there any difference between having two user prompts with one message each or having one user prompt with two content text params?
messages=[{ "role": "user", "content": "hello1" }, { "role": "user", "content": "hello2" }]
And
messages=[{ "role": "user", "content": [{ "type": "text", "text": "hello1", } , { "type": "text", "text": "hello2", } ] }]