Smallest AI uses API keys for authentication. You must include your key with every API request to authenticate your identity and track usage against your quota.Each API key can be scoped to the following:
Rate Limits: Controls the number of requests allowed within a specified time period.
Credit Quota: Defines the maximum usage credits available for your account.
Your API key is confidential and should be kept secure. Never share it with others or expose it in client-side code (browsers, mobile apps, github repositories, etc.).
from smallestai.waves import WavesClient# Initialize the client with your API keyclient = WavesClient(api_key="YOUR_API_KEY")# Retrieve available voicesprint(f"Available Voices: {client.get_voices(model='lightning')}")