Fuzzy cross-match two string arrays via bge-m3 embeddings
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| left | JSON | JSON array of strings (left side) |
| right | JSON | JSON array of strings (right side) |
| threshold(optional) | DOUBLE | — |
| top_k(optional) | INTEGER | — |
Fuzzy match picks the best pair from two company lists
SELECT
left_value
FROM
semantic_match_rows (
JSON('["ACME Corporation","Globex Industries"]'),
JSON('["acme corp","Globex Inc"]'),
0.5,
1
)
ORDER BY
score DESC
LIMIT
1;How strongly text supports a specific message or stance (0.0-1.0)
Check if an image semantically matches a text query (cross-modal)
Cross-modal cosine similarity between an image and a text query
Checks whether two values match under a relationship
Returns TRUE if text semantically matches the criterion (cross-encoder)
LLM-backed boolean match (escape hatch for MEANS when encoder-based matching is insufficient)
Fuzzy cross-match two string arrays via bge-m3 embeddings
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| left | JSON | JSON array of strings (left side) |
| right | JSON | JSON array of strings (right side) |
| threshold(optional) | DOUBLE | — |
| top_k(optional) | INTEGER | — |
Fuzzy match picks the best pair from two company lists
SELECT
left_value
FROM
semantic_match_rows (
JSON('["ACME Corporation","Globex Industries"]'),
JSON('["acme corp","Globex Inc"]'),
0.5,
1
)
ORDER BY
score DESC
LIMIT
1;How strongly text supports a specific message or stance (0.0-1.0)
Check if an image semantically matches a text query (cross-modal)
Cross-modal cosine similarity between an image and a text query
Checks whether two values match under a relationship
Returns TRUE if text semantically matches the criterion (cross-encoder)
LLM-backed boolean match (escape hatch for MEANS when encoder-based matching is insufficient)