Skip to content

Commit 089fa99

Browse files
jmhsiehclaude
andcommitted
docs: add backfill examples to comparing models section
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 61d7376 commit 089fa99

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/geneva/udfs/providers/index.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,16 @@ This works for any combination — different models from the same provider, diff
5050
different prompts with the same model, or different dimensionality settings. All columns are
5151
computed in parallel during the same backfill job.
5252

53+
To recompute columns later (e.g., after altering a UDF or adding new rows), use `backfill`:
54+
55+
```python
56+
# Backfill a single column
57+
table.backfill("emb_small")
58+
59+
# Backfill only rows missing a value
60+
table.backfill("summary_openai", where="summary_openai is null")
61+
```
62+
5363
## What's included
5464

5565
All built-in UDFs share these capabilities:

0 commit comments

Comments
 (0)