Add NLLB 600M web suggestion prototype with server-side autocomplete#1075
Draft
Copilot wants to merge 8 commits into
Draft
Add NLLB 600M web suggestion prototype with server-side autocomplete#1075Copilot wants to merge 8 commits into
Copilot wants to merge 8 commits into
Conversation
Agent-Logs-Url: https://github.com/sillsdev/silnlp/sessions/f94a6383-61bd-4dc9-a2a1-16c0f2c96de1 Co-authored-by: benjaminking <1214233+benjaminking@users.noreply.github.com>
Agent-Logs-Url: https://github.com/sillsdev/silnlp/sessions/f94a6383-61bd-4dc9-a2a1-16c0f2c96de1 Co-authored-by: benjaminking <1214233+benjaminking@users.noreply.github.com>
Agent-Logs-Url: https://github.com/sillsdev/silnlp/sessions/f94a6383-61bd-4dc9-a2a1-16c0f2c96de1 Co-authored-by: benjaminking <1214233+benjaminking@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add translation suggestions for incomplete translations
Add interactive translation suggestions for Hugging Face NMT models
May 20, 2026
Copilot
AI
changed the title
Add interactive translation suggestions for Hugging Face NMT models
Refactor NMT suggestions to reusable TranslationSuggester for low-latency interactive typing
May 27, 2026
Copilot
AI
changed the title
Refactor NMT suggestions to reusable TranslationSuggester for low-latency interactive typing
refactor: make TranslationSuggester reusable across sentences
May 28, 2026
Copilot
AI
changed the title
refactor: make TranslationSuggester reusable across sentences
Add NLLB 600M web suggestion prototype with server-side autocomplete
May 28, 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.
This PR introduces a prototype web app for interactive translation drafting with NLLB 600M. It adds a two-pane UI (source on left, translation on right), language-code selectors, and server-driven suggestions that can be accepted with
Tab.Prototype HTTP app + inference service
silnlp/nmt/nllb_web_demo.pyto serve the UI and a suggestion API.facebook/nllb-200-distilled-600Monce at startup and runs suggestion generation server-side.UI behavior for translation drafting
Tabacceptance flow.API contract
POST /api/suggestaccepting source text, partial target text, and language codes.CLI + discoverability
silnlp-nmt-web-demoscript entry inpyproject.toml.Original prompt
Created from VS Code.
This change is