forked from box/mojito
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add AI translation functionality #147
Merged
Merged
Conversation
This file contains 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
maallen
force-pushed
the
mallen/gpt_for_translate
branch
5 times, most recently
from
September 27, 2024 09:43
d6e8052
to
0352256
Compare
maallen
requested review from
byronantak,
DarKhaos,
mattwilshire and
garionpin
September 27, 2024 10:15
maallen
force-pushed
the
mallen/gpt_for_translate
branch
from
September 27, 2024 10:28
21eed01
to
f3940fd
Compare
byronantak
reviewed
Sep 30, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/RepositoryLocaleAIPromptRepository.java
Outdated
Show resolved
Hide resolved
byronantak
reviewed
Sep 30, 2024
...main/java/com/box/l10n/mojito/service/ai/translation/AITranslationTextUnitFilterService.java
Outdated
Show resolved
Hide resolved
byronantak
reviewed
Sep 30, 2024
webapp/src/main/java/com/box/l10n/mojito/service/asset/VirtualTextUnitBatchUpdaterService.java
Outdated
Show resolved
Hide resolved
webapp/src/test/java/com/box/l10n/mojito/service/ai/translation/AITranslateJobTest.java
Outdated
Show resolved
Hide resolved
byronantak
reviewed
Sep 30, 2024
webapp/src/main/java/com/box/l10n/mojito/service/assetExtraction/AssetExtractionService.java
Outdated
Show resolved
Hide resolved
maallen
force-pushed
the
mallen/gpt_for_translate
branch
from
September 30, 2024 15:40
5fc7c78
to
99dafcd
Compare
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/entity/RepositoryLocaleAIPrompt.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/entity/RepositoryLocaleAIPrompt.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/RepositoryLocaleAIPromptRepository.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/openai/OpenAILLMService.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/openai/OpenAILLMService.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/openai/OpenAILLMService.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/openai/OpenAILLMService.java
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/openai/OpenAILLMService.java
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/openai/OpenAILLMService.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/translation/AITranslateJob.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/translation/AITranslateJob.java
Outdated
Show resolved
Hide resolved
garionpin
reviewed
Oct 1, 2024
webapp/src/main/java/com/box/l10n/mojito/service/ai/translation/AITranslateJob.java
Outdated
Show resolved
Hide resolved
…el config for re-using source on lang match
…iantByTmTextUnitId query
…f server side inserts
maallen
force-pushed
the
mallen/gpt_for_translate
branch
from
October 11, 2024 09:45
cd4485a
to
3edc6e1
Compare
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 adds the ability to automate the translation of source text units into target languages using AI within Mojito.
Further PRs needed to include these translations to be pushed to third parties as part of the
ThirdPartySync
and to add support in GUI to display them appropriately.