FlowiseAI/Flowise

[FEATURE] Add support for Azure Speech-To-Text custom endpoint

Open

#3.767 geöffnet am 26. Dez. 2024

Auf GitHub ansehen
 (4 Kommentare) (0 Reaktionen) (0 zugewiesene Personen)TypeScript (24.335 Forks)batch import
enhancementhelp wanted

Repository-Metriken

Stars
 (52.823 Stars)
PR-Merge-Metriken
 (Durchschn. Merge 8T 6h) (15 gemergte PRs in 30 T)

Beschreibung

Describe the feature you'd like Currently is possible to enable the Azure STT standard endpoint. Supporting a custom endpoint will enable the usage of Azure STT tailored for specific languages (dialects, engineering, healthcare, etc)

Additional context Calling the custom endpoint require this code var config = SpeechSDK.SpeechConfig.fromSubscription("YourSubscriptionKey", "YourServiceRegion"); config.endpointId = "YourEndpointId"; var reco = new SpeechSDK.SpeechRecognizer(config);

Where YourSubscriptionKey and YourServiceRegion parameters are already available in Flowise configuration, what is missing is the YourEndpointId

Contributor Guide