Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
uv add aic-sdk
pip install aic-sdk
uv run quickstart.py
# /// script # requires-python = ">=3.10,<3.14" # dependencies = [ # "aic-sdk", # "numpy" # ] # /// # quickstart.py import aic_sdk as aic import numpy as np import os # Get your license key from the environment variable license_key = os.environ["AIC_SDK_LICENSE"] # Download and load a model (or download manually at https://artifacts.ai-coustics.io/) model_path = aic.Model.download("quail-vf-2.1-l-16khz", "./models") model = aic.Model.from_file(model_path) # Get optimal configuration config = aic.ProcessorConfig.optimal(model, num_channels=2) # Create and initialize processor in one step processor = aic.Processor(model, license_key, config) # Process audio (2D NumPy array: channels × frames) audio_buffer = np.zeros((config.num_channels, config.num_frames), dtype=np.float32) processed = processor.process(audio_buffer)
Was this page helpful?
Suggestions
Contact support