OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Voice provider integration for TTS synthesis with multiple providers
Source Definition
import { defineFeature } from '@lssm-tech/lib.contracts-spec';
export const VoiceProvidersFeature = defineFeature({
meta: {
key: 'voice-providers',
version: '1.0.0',
title: 'Voice Providers',
description:
'Voice provider integration for TTS synthesis with multiple providers',
domain: 'integration',
owners: ['@examples'],
tags: ['voice', 'tts', 'providers', 'synthesis'],
stability: 'experimental',
},
integrations: [{ key: 'voice-providers.integration.tts', version: '1.0.0' }],
docs: [
'docs.examples.voice-providers',
'docs.examples.voice-providers.usage',
],
});