You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**`searchFragments`**| Object | Empty | Configures data handling during multimodal search |
2518
2518
2519
2519
### Get embedder settings
2520
2520
@@ -2892,7 +2892,7 @@ curl \
2892
2892
```
2893
2893
</Note>
2894
2894
2895
-
`indexingFragments` specifies which fields in your documents should be used during multimodal embedding generation. It must be an object with the following structure:
2895
+
`indexingFragments` specifies which fields in your documents should be used to generate multimodal embeddings. It must be an object with the following structure:
2896
2896
2897
2897
```json
2898
2898
"FRAGMENT_NAME": {
@@ -2908,7 +2908,7 @@ For example, for Voyage AI's text and image embedder, `value` must be an array c
2908
2908
2909
2909
```json
2910
2910
{
2911
-
"FRAGMENT_NAME_A": {
2911
+
"VOYAGE_FRAGMENT_NAME_A": {
2912
2912
"value": {
2913
2913
"content": [
2914
2914
{
@@ -2918,7 +2918,7 @@ For example, for Voyage AI's text and image embedder, `value` must be an array c
2918
2918
]
2919
2919
}
2920
2920
},
2921
-
"FRAGMENT_NAME_B": {
2921
+
"VOYAGE_FRAGMENT_NAME_B": {
2922
2922
"value": {
2923
2923
"content": [
2924
2924
{
@@ -2968,7 +2968,7 @@ curl \
2968
2968
2969
2969
As with `indexingFragments`, the content of `value` should follow your model's specification.
2970
2970
2971
-
Use Liquid templates to interpolate search query data into the fragment fields, where `media` gives you access to all that parameter's fields:
2971
+
Use Liquid templates to interpolate search query data into the fragment fields, where `media` gives you access to all multimodal data received with a query:
0 commit comments