update changelog and remove outdated dependency notes

This commit is contained in:
Gökmen Görgen
2026-01-26 10:15:15 +01:00
parent a824660df7
commit 4bce58f270
4 changed files with 2 additions and 7 deletions

View File

@@ -1,2 +1,3 @@
- Added model downloading support to `AICFilter` with `model_id` and `model_download_dir` parameters.
- Added `model_path` parameter to `AICFilter` for loading local .aicmodel files.
- Added unit tests for `AICFilter` and `AICVADAnalyzer`.

View File

@@ -1 +1 @@
- Updated `AICFilter` and `AICVADAnalyzer` to use aic-sdk ~= 2.0.0.
- Updated `AICFilter` and `AICVADAnalyzer` to use aic-sdk ~= 2.0.1.

View File

@@ -38,9 +38,6 @@ class AICFilter(BaseAudioFilter):
Buffers incoming audio to the model's preferred block size and processes
frames using float32 samples normalized to the range -1 to +1.
.. note::
This class requires aic-sdk ~= 2.0.0 (uses 'aic_sdk' module).
"""
def __init__(

View File

@@ -41,9 +41,6 @@ class AICVADAnalyzer(VADAnalyzer):
Range: 1.0 to 15.0
Formula: Energy threshold = 10 ** (-sensitivity)
Default (SDK): 6.0
.. note::
This class requires aic-sdk ~= 2.0.0 (uses 'aic_sdk' module).
"""
def __init__(