LLM Utilities¶
LLM-powered DataFrame transformations.
This module provides functions that call external LLM APIs (OpenAI / Azure OpenAI)
and LangChain embedding models to enrich PySpark DataFrames. Pure DataFrame
column operations live in :mod:spark_fuse.utils.transformations.
with_langchain_embeddings ¶
with_langchain_embeddings(df: DataFrame, input_col: str, embeddings: Union['Embeddings', Callable[[], 'Embeddings']], *, output_col: str = 'embedding', batch_size: int = 16, text_splitter: Optional[Union['TextSplitter', Callable[[], 'TextSplitter']]] = None, aggregation: str = 'mean', drop_input: bool = False) -> DataFrame
Add a column of vector embeddings using a LangChain Embeddings model.
The function uses a Pandas UDF to batch calls to embed_documents and reuse a
single embeddings instance per executor. Provide either an instantiated LangChain
embeddings object or a zero-argument callable that returns one—factories are useful
when clients (e.g., OpenAI) are not picklable. Optionally supply a LangChain text
splitter to chunk long inputs before embedding; chunk embeddings are combined using
aggregation ("mean" or "first").
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame containing the raw text column. |
required |
input_col
|
str
|
Name of the column with text to embed. |
required |
embeddings
|
Union['Embeddings', Callable[[], 'Embeddings']]
|
LangChain embeddings instance or factory returning one. |
required |
output_col
|
str
|
Name of the resulting column containing |
'embedding'
|
batch_size
|
int
|
Number of rows to embed per batch inside the UDF. |
16
|
text_splitter
|
Optional[Union['TextSplitter', Callable[[], 'TextSplitter']]]
|
Optional LangChain text splitter (or factory) applied before embedding to chunk the text. |
None
|
aggregation
|
str
|
Strategy to combine chunk embeddings when a splitter is provided.
Supported values: |
'mean'
|
drop_input
|
bool
|
Remove |
False
|
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
TypeError
|
When |
RuntimeError
|
When the embeddings model or text splitter raises an exception
during execution. Spark surfaces these as |
Source code in src/spark_fuse/utils/llm.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
map_column_with_llm ¶
map_column_with_llm(df: DataFrame, column: str, target_values: Union[Sequence[str], Mapping[str, Any]], *, model: str = 'gpt-3.5-turbo', dry_run: bool = False, max_retries: int = 3, request_timeout: int = 30, temperature: Optional[float] = 0.0) -> DataFrame
Map column values to target_values via a scalar PySpark UDF.
The transformation applies a regular user-defined function across the column, keeping
a per-executor in-memory cache to avoid duplicate LLM calls. Spark accumulators track
mapping statistics. When dry_run=True the UDF performs case-insensitive matching
only and yields None for unmatched rows without contacting the LLM. When targeting
models that require provider-managed sampling behaviour, set temperature=None to
omit the temperature parameter from LLM requests.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
df
|
DataFrame
|
Input DataFrame whose values should be normalized. |
required |
column
|
str
|
Source column containing the free-form text to map. |
required |
target_values
|
Union[Sequence[str], Mapping[str, Any]]
|
List or mapping defining the set of canonical outputs. When a mapping is provided, its keys are treated as the canonical set. |
required |
model
|
str
|
Chat model (or Azure deployment name) to query. |
'gpt-3.5-turbo'
|
dry_run
|
bool
|
Skip external calls and simply echo canonical matches (useful for smoke testing and cost estimation). |
False
|
max_retries
|
int
|
Retry budget passed to :func: |
3
|
request_timeout
|
int
|
Timeout in seconds for each HTTP request. |
30
|
temperature
|
Optional[float]
|
LLM sampling temperature. Use |
0.0
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
A new DataFrame with an additional |
DataFrame
|
the canonical value or |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the source column is missing or |
TypeError
|
When |
Notes
- The resulting DataFrame is cached to ensure logging the accumulator values does not trigger duplicate LLM requests.
- Provide API credentials via the environment variables documented in
:func:
_get_llm_api_configbefore running withdry_run=False.
Source code in src/spark_fuse/utils/llm.py
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | |