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-providers

Voice provider integration for TTS synthesis with multiple providers

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: voice, tts, providers, synthesis
  • field.key.label
    voice-providers
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    voice-providers
    field.description.label

    Voice provider integration for TTS synthesis with multiple providers

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: voice, tts, providers, synthesis
  • field.tags.label
    voice,tts,providers,synthesis
    field.owners.label
    @examples
    field.stability.label
    experimental

    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',
    	],
    });