When supplying multiple content blocks of the same type - i.e.
{"role": "user", "content": [
{
"type": "text",
"text": "What does the following text say?",
},
{
"type": "text",
"text": "Hello World",
}
]
}
Is that equivalent to
- (no space direct concatenation)
{"role": "user", "content": [
{
"type": "text",
"text": "What does the following text say?Hello World"
}
]
}
- (single whitespace direct concatenation)
{"role": "user", "content": [
{
"type": "text",
"text": "What does the following text say? Hello World"
}
]
}
- (new line concatenation)
{"role": "user", "content": [
{
"type": "text",
"text": "What does the following text say?\nHello World"
}
]
}
- A different spacing
- The models interpret the content different from text supplied in the some content element parameter
- Something else
- There is no equivalence
Thanks!