From 61f0e66a51af4fdcdb0ea982b593c7eb13cb5596 Mon Sep 17 00:00:00 2001 From: Markus Hennerbichler Date: Thu, 29 Feb 2024 18:50:22 +0000 Subject: [PATCH] add audio_events_config to BatchTranscriptionConfig --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- speechmatics/models.py | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27d0b69..78424fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.14.3] - 2024-02-29 + +## Fixed + +- Add audio_events_config to BatchTranscriptionConfig + ## [1.14.2] - 2024-02-28 ## Fixed diff --git a/VERSION b/VERSION index a4cc557..4ea8ad8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.2 +1.14.3 diff --git a/speechmatics/models.py b/speechmatics/models.py index 82e386c..66f9015 100644 --- a/speechmatics/models.py +++ b/speechmatics/models.py @@ -325,6 +325,8 @@ class BatchTranscriptionConfig(_TranscriptionConfig): auto_chapters_config: Optional[AutoChaptersConfig] = None """Optional configuration for detecting chapters of the transcript""" + audio_events_config: Optional[AudioEventsConfig] = None + def as_config(self): dictionary = self.asdict()