PageRank centrality on an ad-hoc edge list (NetworkX)
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| edges | JSON | — |
| damping(optional) | DOUBLE | — |
PageRank on a tiny 4-node directed graph (top node)
SELECT
node,
rank
FROM
pagerank_rows (
JSON(
'[["A","B"],["B","C"],["C","A"],["A","C"],["D","A"]]'
)
)
ORDER BY
score DESC
LIMIT
1;Returns 0.0-1.0 relevance score for text vs criterion (cross-encoder)
LLM-backed 0.0-1.0 relevance score (escape hatch for ABOUT/RELEVANCE TO)
Pick the single best value from a group by a plain-English quality criterion
Find unusual or atypical items via embeddings (+ optional criteria)
LLM-backed outlier detection (escape hatch for OUTLIERS)
Rank a group of items by a subjective multi-factor criterion
PageRank centrality on an ad-hoc edge list (NetworkX)
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| edges | JSON | — |
| damping(optional) | DOUBLE | — |
PageRank on a tiny 4-node directed graph (top node)
SELECT
node,
rank
FROM
pagerank_rows (
JSON(
'[["A","B"],["B","C"],["C","A"],["A","C"],["D","A"]]'
)
)
ORDER BY
score DESC
LIMIT
1;Returns 0.0-1.0 relevance score for text vs criterion (cross-encoder)
LLM-backed 0.0-1.0 relevance score (escape hatch for ABOUT/RELEVANCE TO)
Pick the single best value from a group by a plain-English quality criterion
Find unusual or atypical items via embeddings (+ optional criteria)
LLM-backed outlier detection (escape hatch for OUTLIERS)
Rank a group of items by a subjective multi-factor criterion