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
docs: update docs for name and destination changes
fix: destination_table( not just destination(
Update docs/vectorizer/api-reference.md
Co-authored-by: Matvey Arye <[email protected]>
Signed-off-by: Jascha Beste <[email protected]>
Update docs/vectorizer/api-reference.md
Co-authored-by: Matvey Arye <[email protected]>
Signed-off-by: Jascha Beste <[email protected]>
docs: fix some typos and more precise language
- When you need multiple embeddings per row (chunking)
372
+
- For large text fields that need to be split
373
+
- You are vectorizing documents (which typically require chunking)
374
+
375
+
### 2. Column Destination
376
+
377
+
For simpler cases, you can add an embedding column directly to the source table. This can only be used when the vectorizer does not perform chunking because it requires a one-to-one relationship between the source data and the embedding. This is useful in cases where you know the source text is short (as is common if the chunking has already been done upstream in your data pipeline).
378
+
379
+
The workflow is that your application inserts data into the table with a NULL in the embedding column. The vectorizer will then read the row, generate the embedding and update the row with the correct value in the embedding column.
0 commit comments