mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-27 23:18:37 +00:00
* Deprecate max_loops_allowed in favour of new argument max_runs_per_component * Add missing test file * Some enhancements * Add version that will remove deprecate stuff
13 lines
604 B
YAML
13 lines
604 B
YAML
---
|
|
enhancements:
|
|
- |
|
|
Add new `Pipeline` init argument `max_runs_per_component`, this has the same identical
|
|
behaviour as the existing `max_loops_allowed` argument but is more descriptive of its actual effects.
|
|
- |
|
|
Add new `PipelineMaxLoops` to reflect new `max_runs_per_component` init argument
|
|
deprecations:
|
|
- |
|
|
`Pipeline` init argument `max_loops_allowed` is deprecated and will be remove in version `2.7.0`. Use `max_runs_per_component` instead.
|
|
- |
|
|
`PipelineMaxLoops` exception is deprecated and will be remove in version `2.7.0`. Use `PipelineMaxComponentRuns` instead.
|