Merge pull request #2240 from pipecat-ai/filipi/sig_term

Adding support for handle_sigterm
This commit is contained in:
Filipi da Silva Fuchter
2025-07-23 08:15:50 -03:00
committed by GitHub
2 changed files with 14 additions and 1 deletions

View File

@@ -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.