Skip to content

Update the docs for nemotron multi-lingual ASR model#728

Open
rui-ren wants to merge 9 commits into
mainfrom
ruiren/update-docs
Open

Update the docs for nemotron multi-lingual ASR model#728
rui-ren wants to merge 9 commits into
mainfrom
ruiren/update-docs

Conversation

@rui-ren
Copy link
Copy Markdown
Contributor

@rui-ren rui-ren commented May 27, 2026

  • Update docs

@vercel
Copy link
Copy Markdown

vercel Bot commented May 27, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
foundry-local Ready Ready Preview, Comment May 27, 2026 11:39pm

Request Review

@rui-ren
Copy link
Copy Markdown
Contributor Author

rui-ren commented May 27, 2026

@copilot can you please merge main for this PR? Thanks

Copy link
Copy Markdown
Contributor

Copilot AI commented May 27, 2026

@rui-ren The model gpt-5.3-codex is not available for your account. This can happen if the model was disabled by your organization's policy or if your Copilot plan doesn't include access to it.

You can try again without specifying a model (just @copilot) to use the default, or choose a different model from the model picker.

If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: 720d5c19-3f11-4a68-8056-de047ac905b4

5 similar comments
Copy link
Copy Markdown
Contributor

Copilot AI commented May 27, 2026

@rui-ren The model gpt-5.3-codex is not available for your account. This can happen if the model was disabled by your organization's policy or if your Copilot plan doesn't include access to it.

You can try again without specifying a model (just @copilot) to use the default, or choose a different model from the model picker.

If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: 720d5c19-3f11-4a68-8056-de047ac905b4

Copy link
Copy Markdown
Contributor

Copilot AI commented May 27, 2026

@rui-ren The model gpt-5.3-codex is not available for your account. This can happen if the model was disabled by your organization's policy or if your Copilot plan doesn't include access to it.

You can try again without specifying a model (just @copilot) to use the default, or choose a different model from the model picker.

If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: 720d5c19-3f11-4a68-8056-de047ac905b4

Copy link
Copy Markdown
Contributor

Copilot AI commented May 27, 2026

@rui-ren The model gpt-5.3-codex is not available for your account. This can happen if the model was disabled by your organization's policy or if your Copilot plan doesn't include access to it.

You can try again without specifying a model (just @copilot) to use the default, or choose a different model from the model picker.

If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: 720d5c19-3f11-4a68-8056-de047ac905b4

Copy link
Copy Markdown
Contributor

Copilot AI commented May 27, 2026

@rui-ren The model gpt-5.3-codex is not available for your account. This can happen if the model was disabled by your organization's policy or if your Copilot plan doesn't include access to it.

You can try again without specifying a model (just @copilot) to use the default, or choose a different model from the model picker.

If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: 720d5c19-3f11-4a68-8056-de047ac905b4

Copy link
Copy Markdown
Contributor

Copilot AI commented May 27, 2026

@rui-ren The model gpt-5.3-codex is not available for your account. This can happen if the model was disabled by your organization's policy or if your Copilot plan doesn't include access to it.

You can try again without specifying a model (just @copilot) to use the default, or choose a different model from the model picker.

If you want to contact GitHub about this error, please mention the following identifier so they can better serve you: 720d5c19-3f11-4a68-8056-de047ac905b4

@rui-ren rui-ren force-pushed the ruiren/update-docs branch from 4a103e5 to 3b420be Compare May 27, 2026 22:07
@rui-ren rui-ren marked this pull request as ready for review May 27, 2026 22:12
Copilot AI review requested due to automatic review settings May 27, 2026 22:12
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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 Language property from LiveAudioTranscriptionResponse and its internal LiveAudioTranscriptionRaw in 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.

Comment thread sdk/rust/README.md
Comment thread sdk/rust/README.md
Comment thread sdk/cpp/README.md
Comment thread sdk/cs/README.md

```csharp
// Multilingual example
audioClient.Settings.Language = "zh-CN"; // Chinese
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
audioClient.Settings.Language = "zh-CN"; // Chinese
session.Settings.Language = "zh-CN"; // Chinese

Comment thread sdk/js/README.md

```typescript
// Multilingual example
audioClient.settings.language = 'zh-CN'; // Chinese
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
audioClient.settings.language = 'zh-CN'; // Chinese
session.settings.language = 'zh-CN'; // Chinese

Comment thread sdk/js/README.md
```typescript
// Multilingual example
audioClient.settings.language = 'zh-CN'; // Chinese
audioClient.settings.language = 'auto'; // Auto-detect
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
audioClient.settings.language = 'auto'; // Auto-detect
session.settings.language = 'auto'; // Auto-detect

Comment thread sdk/rust/README.md

```rust
// Multilingual example
let audio_client = model.create_audio_client()
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

Comment thread sdk/cpp/README.md
});
```

#### Multilingual Language Codes
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants