From 7d527c3a6b1419b06079e6d38a4047fec7f6b374 Mon Sep 17 00:00:00 2001 From: Filipi Fuchter Date: Tue, 22 Jul 2025 19:32:52 -0300 Subject: [PATCH] Mentioning the new field in the changelog. --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a0b6966d..d59a85c2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Added a new field `handle_sigterm` to `PipelineRunner`. It defaults to `False`. + This field handles SIGTERM signals. The `handle_sigint` field still defaults + to `True`, but now it handles only SIGINT signals. + - Added foundational example `14u-function-calling-ollama.py` for Ollama function calling.