ErrorHandlingConfig

data class ErrorHandlingConfig(val mode: ErrorMode = ErrorMode.COLLECT_ALL, val maxErrors: Int = 100)

Configuration for error handling during generation.

Constructors

Link copied to clipboard
constructor(mode: ErrorMode = ErrorMode.COLLECT_ALL, maxErrors: Int = 100)

Properties

Link copied to clipboard

Maximum number of errors to collect before stopping when in COLLECT_ALL mode.

Link copied to clipboard

Error handling strategy (fail fast or collect all).