Skip to content

Commit d5884b2

Browse files
committed
Remove Azure Speech Services references from documentation
- Update ServiceLogMessages.cs to reference Google Speech-to-Text instead of Azure - Update Turkish documentation to use Google Speech-to-Text - Update German documentation to use Google Speech-to-Text - Update Russian documentation to use Google Speech-to-Text - Remove Azure Speech Services references from release notes and changelog - Ensure all documentation reflects current Google Speech-to-Text implementation
1 parent cf76fad commit d5884b2

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- **Comprehensive XML Documentation**: Complete API documentation for all public classes and methods
2020

2121
### πŸ”§ Improved
22-
- **Audio Processing Pipeline**: Complete replacement of Azure Speech Services with Google Speech-to-Text
22+
- **Audio Processing Pipeline**: Enhanced audio processing with Google Cloud AI
2323
- **Configuration Management**: Updated all configuration files to use GoogleSpeechConfig
2424
- **Error Handling**: Enhanced error handling for audio transcription operations
2525
- **Documentation**: Updated all language versions with Google Speech-to-Text examples

β€Ždocs/de/index.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ var answer = await documentSearchService
173173
<i class="fas fa-microphone"></i>
174174
</div>
175175
<h3>Audiodatei-UnterstΓΌtzung</h3>
176-
<p>Textextraktion aus Audiodateien und Analyse mit Azure Speech Services.</p>
176+
<p>Textextraktion aus Audiodateien und Analyse mit Google Speech-to-Text.</p>
177177
</div>
178178
</div>
179179
</div>

β€Ždocs/ru/index.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ var answer = await documentSearchService
173173
<i class="fas fa-microphone"></i>
174174
</div>
175175
<h3>ΠŸΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠ° Π°ΡƒΠ΄ΠΈΠΎΡ„Π°ΠΉΠ»ΠΎΠ²</h3>
176-
<p>Π˜Π·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ тСкста ΠΈΠ· Π°ΡƒΠ΄ΠΈΠΎΡ„Π°ΠΉΠ»ΠΎΠ² ΠΈ Π°Π½Π°Π»ΠΈΠ· с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Azure Speech Services.</p>
176+
<p>Π˜Π·Π²Π»Π΅Ρ‡Π΅Π½ΠΈΠ΅ тСкста ΠΈΠ· Π°ΡƒΠ΄ΠΈΠΎΡ„Π°ΠΉΠ»ΠΎΠ² ΠΈ Π°Π½Π°Π»ΠΈΠ· с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ Google Speech-to-Text.</p>
177177
</div>
178178
</div>
179179
</div>

β€Ždocs/tr/index.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ hide_title: true
173173
<i class="fas fa-microphone"></i>
174174
</div>
175175
<h3>Ses Dosyası Desteği</h3>
176-
<p>Azure Speech Services ile ses dosyalarΔ±ndan metin Γ§Δ±karma ve analiz.</p>
176+
<p>Google Speech-to-Text ile ses dosyalarΔ±ndan metin Γ§Δ±karma ve analiz.</p>
177177
</div>
178178
</div>
179179
</div>

β€Žsrc/SmartRAG/Services/ServiceLogMessages.csβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,12 +593,12 @@ public static class ServiceLogMessages
593593
public static readonly Action<ILogger, string, Exception> LogAudioServiceInitialized = LoggerMessage.Define<string>(
594594
LogLevel.Debug,
595595
new EventId(80004, "AudioServiceInitialized"),
596-
"Azure Speech Service initialized for region: {Region}");
596+
"Google Speech-to-Text service initialized");
597597

598598
public static readonly Action<ILogger, Exception> LogAudioServiceInitializationFailed = LoggerMessage.Define(
599599
LogLevel.Error,
600600
new EventId(80005, "AudioServiceInitializationFailed"),
601-
"Azure Speech Service initialization failed");
601+
"Google Speech-to-Text service initialization failed");
602602

603603
public static readonly Action<ILogger, Exception> LogAudioNoMatch = LoggerMessage.Define(
604604
LogLevel.Warning,

β€Žsrc/SmartRAG/SmartRAG.csprojβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
β€’ Performance optimized audio processing with minimal memory footprint
3333

3434
πŸ”§ Technical Improvements:
35-
β€’ Complete replacement of Azure Speech Services with Google Speech-to-Text
3635
β€’ Enhanced audio processing pipeline with Google Cloud AI
3736
β€’ Updated configuration management with GoogleSpeechConfig
3837
β€’ Improved error handling for audio transcription operations

0 commit comments

Comments
Β (0)