Skip to main content

Bypass Strategies

Bypass strategies determine how a schema field is populated when it should not go through LLM extraction. Each strategy provides a deterministic value without consuming AI credits.

Strategy types

ParameterTypeDescription
nonestrategyField is always left blank. Use for fields you want to skip entirely.
constantstrategyField is set to a literal value you specify (e.g. "USD", "pending").
generatorstrategyDeterministic value generators: deterministic-id (hash-based ID) or context-fallback (derive from other fields).
referencestrategyLook up a value from a reference table using a key_expression to match against uploaded reference data.
When a generator strategy fails to produce a value, the field falls through to LLM extraction as a safety net. Strategy values are normalized via generator mappings in Phase 4 of the pipeline.