Fix AutoDetectSourceLangConfig API Misspellings; add backward-compatible alias and tests#164
Merged
rhurey merged 1 commit intoMar 4, 2026
Conversation
…d samples and tests
rhurey
approved these changes
Mar 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix AutoDetectSourceLangConfig API Misspellings
Problem
Two public API constructors in the Go Speech SDK have a spelling error —
Fominstead ofFrom:NewSpeechRecognizerFomAutoDetectSourceLangConfigNewSpeechRecognizerFromAutoDetectSourceLangConfigNewSpeechSynthesizerFomAutoDetectSourceLangConfigNewSpeechSynthesizerFromAutoDetectSourceLangConfigThese functions also lacked tests (recognizer) and samples (both).
Changes
API Fix (backward-compatible)
NewSpeechRecognizerFomAutoDetectSourceLangConfigtoNewSpeechRecognizerFromAutoDetectSourceLangConfig. Added a deprecated alias under the old name that delegates to the corrected function.NewSpeechSynthesizerFomAutoDetectSourceLangConfigtoNewSpeechSynthesizerFromAutoDetectSourceLangConfig. Added a deprecated alias under the old name that delegates to the corrected function.New Tests
TestRecognitionWithLanguageAutoDetection: creates a recognizer viaNewSpeechRecognizerFromAutoDetectSourceLangConfigwithen-US/de-DE, recognizes from a WAV file, validates the result reason and text.TestSynthesisWithLanguageAutoDetectionto use the corrected API name. Minor formatting fix (operator spacing).New Samples
RecognizeOnceFromAutoDetectSourceLangConfigdemonstrating speech recognition with auto-detect source language.SynthesisFromAutoDetectSourceLangConfigdemonstrating speech synthesis with auto-detect source language (open range).Backward Compatibility
The old misspelled function names are preserved as deprecated aliases. Existing code using
NewSpeechRecognizerFomAutoDetectSourceLangConfigorNewSpeechSynthesizerFomAutoDetectSourceLangConfigwill continue to compile and work. The// Deprecated:comment will surface warnings in IDEs andgo doc.How to Use
Testing
go build ./...— ✅ PASSgo vet ./...—go test ./speech/ -run "TestRecognitionWithLanguageAutoDetection" -v -timeout 30s— ✅ PASS (0.65s)go test ./speech/ -run "TestSynthesisWithLanguageAutoDetection" -v -timeout 30s— ✅ PASS (0.42s)