CoolFace
Apppublic

nifty-coder/stemsplit-backend

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
voice_control_config.json113 linesDownload Raw Back to root
1{2  "providers": {3    "web_speech_api": {4      "name": "web_speech_api",5      "provider_type": "web_speech_api",6      "enabled": true,7      "priority": 1,8      "free_tier_limits": {9        "unlimited": true10      },11      "rate_limits": {12        "requests_per_minute": 6013      },14      "supported_formats": [15        "webm",16        "wav"17      ],18      "supported_languages": [19        "en-US",20        "en-GB",21        "es-ES",22        "fr-FR",23        "de-DE"24      ],25      "cost_per_minute": 0.0,26      "api_credentials": {},27      "timeout_seconds": 30,28      "max_retries": 329    },30    "deepgram": {31      "name": "deepgram",32      "provider_type": "deepgram",33      "enabled": true,34      "priority": 5,35      "free_tier_limits": {36        "audio_minutes_per_month": 20037      },38      "rate_limits": {39        "requests_per_minute": 100,40        "audio_minutes_per_hour": 6041      },42      "supported_formats": [43        "webm",44        "wav",45        "mp3",46        "ogg"47      ],48      "supported_languages": [49        "en-US",50        "en-GB",51        "es-ES",52        "fr-FR",53        "de-DE",54        "ja-JP",55        "zh-CN"56      ],57      "cost_per_minute": 0.0125,58      "api_credentials": {59        "api_key": "${DEEPGRAM_API_KEY}"60      },61      "timeout_seconds": 30,62      "max_retries": 363    }64  },65  "rate_limiting": {66    "enabled": true,67    "default_window_size": 60,68    "cleanup_interval": 300,69    "redis_url": null70  },71  "caching": {72    "enabled": true,73    "max_size_mb": 100,74    "default_ttl": 3600,75    "cleanup_interval": 600,76    "redis_url": null77  },78  "audio_processing": {79    "silence_threshold": 0.01,80    "noise_reduction_strength": 0.5,81    "default_chunk_duration": 30.0,82    "max_audio_duration": 300.0,83    "supported_formats": [84      "webm",85      "wav",86      "mp3",87      "ogg"88    ]89  },90  "cost_monitoring": {91    "enabled": true,92    "alert_thresholds": {93      "daily": 10.0,94      "monthly": 100.095    },96    "report_interval": 8640097  },98  "websocket": {99    "max_connections": 100,100    "heartbeat_interval": 30,101    "message_timeout": 10,102    "max_message_size": 1048576103  },104  "logging": {105    "level": "INFO",106    "format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s",107    "file": null,108    "max_file_size": 10485760,109    "backup_count": 5110  },111  "environment": "development",112  "debug": false113}