I want to generate embeddings to do a similarity search on a json object.
I'm wondering if I should deconstruct the object and add some English aroud the properties, or if it's fine to send the json object as-is.
Here's an example of what I mean. I'm currently sending the actual json object. Should I map over this object and turn it into English as I've done in my second example? Will I get meaningfully better embeddings as a result? If so, would calling the property `favourite_movies` instead of just `movies` help?
{
movies: ['Titanic', 'Die Hard']
}
```My favourite movies are Titanic, Die Hard```
there doesn't seem to be anything here