Registry / devops / aic-sdk

aic-sdk

JSON →
library2.3.0pypypi✓ verified 80d ago

Python bindings for the ai-coustics SDK, providing audio enhancement and cleaning capabilities. Current version is 2.3.0, with a release cadence of several major versions per year. Requires Python 3.10+.

pip install aic-sdk
INSTALL
IMPORT
SIG · AIC-SDK
A
aic-sdk
devopspythonv2.3.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

AnalysisResult
from aic_sdk import AnalysisResult
from aic_sdk import AiCousticsClient
Analyzer
from aic_sdk import Analyzer
FileAnalyzer
from aic_sdk import FileAnalyzer

Initialize client with API key from environment, create an AudioConfig, and call enhance on an audio file.

import os from aic_sdk import AiCousticsClient from aic_sdk.models import AudioConfig client = AiCousticsClient(api_key=os.environ.get('AIC_API_KEY', '')) config = AudioConfig(language='en', sample_rate=16000) result = client.enhance(audio_file='input.wav', config=config) print(result.enhanced_audio_url)
Debug
Known issues
breakingIn version 2.0.0, the method `Client.enhance()` changed its signature: `audio_file` now expects a file path string instead of a file-like object.
fix
Pass a string path to `enhance()`, not an open file handle.
affects: >=2.0.0
deprecatedThe `AiCousticsClient` constructor parameter `api_secret` is deprecated in 2.0.0 and removed in 2.2.0. Use `api_key` instead.
fix
Replace `api_secret` with `api_key` in the constructor.
affects: >=2.0.0, <2.2.0
gotchaThe API key must be passed as a keyword argument to the constructor. Passing it as a positional argument leads to a confusing AttributeError.
fix
Always use `AiCousticsClient(api_key='...')`.
affects: >=2.0.0
Upgrade
Version history
2.3.0latest on PyPI · released May 29, 2026
Audit
Dependencies
requestsrequiredHTTP client for API calls
pydanticrequiredData validation and settings management
Agent activity
39 hits · last 30 days
node
34
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

aic-sdk — pip install aic-sdk · libregistry