Update the docs for nemotron multi-lingual ASR model#728
Conversation
rui-ren
commented
May 27, 2026
- Update docs
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
@copilot can you please merge main for this PR? Thanks |
|
@rui-ren The model You can try again without specifying a model (just If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: |
5 similar comments
|
@rui-ren The model You can try again without specifying a model (just If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: |
|
@rui-ren The model You can try again without specifying a model (just If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: |
|
@rui-ren The model You can try again without specifying a model (just If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: |
|
@rui-ren The model You can try again without specifying a model (just If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: |
|
@rui-ren The model You can try again without specifying a model (just If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: |
4a103e5 to
3b420be
Compare
3b420be to
1ca5433
Compare
There was a problem hiding this comment.
Pull request overview
Documentation update across the JS, Rust, C#, and C++ SDK READMEs adding a BCP-47 language-code reference table for the new Nemotron multilingual ASR model, plus a small C# cleanup that removes a Language field from the live transcription response type which the runtime no longer emits.
Changes:
- Add a "Multilingual Language Codes" section (table + short example) to the JS, Rust, C#, and C++ READMEs.
- Remove the
Languageproperty fromLiveAudioTranscriptionResponseand its internalLiveAudioTranscriptionRawin the C# SDK.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| sdk/js/README.md | Adds multilingual language-code table and a JS audioClient.settings.language example. |
| sdk/rust/README.md | Adds the same table and a Rust .language("zh-CN") example after streaming transcription. |
| sdk/cs/README.md | Adds the table and notes it applies to both OpenAIAudioClient.Settings.Language and LiveAudioTranscriptionSession.Settings.Language. |
| sdk/cpp/README.md | Adds the table after the file-transcription example (no code snippet for setting language). |
| sdk/cs/src/OpenAI/LiveAudioTypes.cs | Removes Language from LiveAudioTranscriptionResponse and LiveAudioTranscriptionRaw. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| ```csharp | ||
| // Multilingual example | ||
| audioClient.Settings.Language = "zh-CN"; // Chinese |
There was a problem hiding this comment.
| audioClient.Settings.Language = "zh-CN"; // Chinese | |
| session.Settings.Language = "zh-CN"; // Chinese |
|
|
||
| ```typescript | ||
| // Multilingual example | ||
| audioClient.settings.language = 'zh-CN'; // Chinese |
There was a problem hiding this comment.
| audioClient.settings.language = 'zh-CN'; // Chinese | |
| session.settings.language = 'zh-CN'; // Chinese |
| ```typescript | ||
| // Multilingual example | ||
| audioClient.settings.language = 'zh-CN'; // Chinese | ||
| audioClient.settings.language = 'auto'; // Auto-detect |
There was a problem hiding this comment.
| audioClient.settings.language = 'auto'; // Auto-detect | |
| session.settings.language = 'auto'; // Auto-detect |
|
|
||
| ```rust | ||
| // Multilingual example | ||
| let audio_client = model.create_audio_client() |
There was a problem hiding this comment.
Let's change this code section to the following.
session.settings.language = Some("zh-CN".into()); // Chinese (Simplified)
session.settings.language = Some("auto".into()); // Auto-detect language| }); | ||
| ``` | ||
|
|
||
| #### Multilingual Language Codes |
There was a problem hiding this comment.
Can we move these sections into the READMEs for the live audio transcription samples? These sections are currently listed in the SDK READMEs, which a customer will likely not see.