Discuss: Unify translate operations over ai

Created on 4 October 2024, 6 months ago

Problem/Motivation

🌱 Discuss: Translation operator type Active has introduced a new operation type "Translate text". Since this is a new operation, other translation-related parts (ai_translate, translate plugin of ai_ckeditor) use "Chat" operation, which exists for a long time.

As a result, there are at least 3 places to configure translation-related parameters:

  1. Translate text provider in AI settings (no bundled provider supports the new operation at the moment)
  2. AI translate settings (twig-based prompt that can be altered by third parties)
  3. Hard-coded translation prompt in CKEditor translate plugin

This may confuse both users and developers.

Proposed resolution

Have a single "point of responsibility" for translation purposes. This point should

  1. Have "text to translate" as a single required input
  2. Have a set of translation contexts (from and to languages in the form of ISO code or free name, provider id, contexts provided/altered by third parties) as an optional parameter
  3. Have "translated text" as output

Location of this point of responsibility is TBD

Remaining tasks

Decide what "translation point of responsibility" is. A service? A trait that can be then used by AI providers? AiProviderClientBase methods?

If it's a service, then what module this service belongs to (ai or ai_translate)? In case it's ai_translate, module description in ai_translate.info.yml should be changed from "one click translation" to "translation-related functionality"

📌 Task
Status

Active

Version

1.0

Component

Code

Created by

🇧🇬Bulgaria valthebald Sofia

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @valthebald
  • 🇩🇪Germany marcus_johansson

    I think that if this service should exist it has to exist in the ai_translate module, because if we start adding combinations of operation types based on what they solve rather on how they solve it and want to be consistent, there will probably be 100s of combinations in the AI core module, which will be impossible to manage.

    Having a dedicated third party module or third party service for that makes more sense in that case.

  • Merge request !210Resolve #3478721 "Unify translate" → (Merged) created by valthebald
  • Pipeline finished with Failed
    6 months ago
    Total: 347s
    #315215
  • Pipeline finished with Failed
    6 months ago
    Total: 175s
    #315653
  • 🇬🇧United Kingdom scott_euser

    Adding related issue; depending on where this issue lands, we could leverage ai_translate more.

  • Pipeline finished with Failed
    6 months ago
    Total: 165s
    #315682
  • 🇧🇬Bulgaria valthebald Sofia
  • Pipeline finished with Failed
    6 months ago
    Total: 160s
    #315786
  • Pipeline finished with Failed
    5 months ago
    Total: 169s
    #318331
  • Pipeline finished with Failed
    5 months ago
    Total: 188s
    #320603
  • 🇩🇪Germany marcus_johansson

    @valthebald - code review is done from my side, the ai_translate.settings check and the setChatSystemRole method is important. Rest is optional if you think they are improvements, otherwise just skip.

    I'll let Frederick do the feature review since he knows the module better, but from what I see in the code, it mostly works the same.

  • 🇩🇪Germany marcus_johansson

    Oh also the PHPCS issues needs to be fixed.

  • Pipeline finished with Failed
    5 months ago
    Total: 169s
    #321664
  • Pipeline finished with Failed
    5 months ago
    Total: 175s
    #321668
  • 🇧🇬Bulgaria valthebald Sofia

    Fixed most of the comments (2 left are for the future).
    Also, brought back editing of default translation prompt (patch to have per-language left it hidden) and display of default prompt that has a condition

  • Pipeline finished with Failed
    5 months ago
    Total: 1322s
    #321676
  • Pipeline finished with Failed
    5 months ago
    Total: 165s
    #321691
  • Pipeline finished with Failed
    5 months ago
    Total: 815s
    #321708
  • Pipeline finished with Failed
    5 months ago
    Total: 182s
    #321722
  • First commit to issue fork.
  • Pipeline finished with Success
    5 months ago
    #331178
  • Pipeline finished with Success
    5 months ago
    #331196
  • 🇫🇷France nicolasgraph Strasbourg

    Thanks @valthebald for this MR!

    I pushed and revert a commit in favour of this comments:

    1. In ai_translate.install, is ai_translate_requirements() still required? I guess not.
    2. In ai_translate.module, _ai_translate_check_default_provider_and_model() seems also outdated to me.
    3. In AiTranslateForm.php, line 114, $default_model = $this->providerManager->getSimpleDefaultProviderOptions('chat'); should not use the chat provider type anymore.
  • 🇬🇧United Kingdom scott_euser

    I added some feedback as well after testing this in ✨ Fallback to ai_translate configuration Active
    There are also some comments from Marcus to be addressed still

    In general though it seems like the right direction, and is really helpful to have, thank you for the efforts here!

  • Pipeline finished with Success
    3 months ago
    Total: 298s
    #395924
  • Status changed to Needs work 2 months ago
  • 🇬🇧United Kingdom scott_euser

    I notice from my comments in the AI TMGMT module per #11 that the blocker for merging that is the ability to get unescaped html back from AI Translate. I believe that escaping we cannot opt out of still, but I could be wrong.

  • 🇬🇧United Kingdom scott_euser

    Aha I see, comments already there like this, just needs addressing, hence 'Needs work' status. Sorry for the noise.

  • Pipeline finished with Failed
    2 months ago
    Total: 219s
    #406001
  • Pipeline finished with Failed
    2 months ago
    Total: 258s
    #406581
  • Pipeline finished with Failed
    2 months ago
    Total: 255s
    #406585
  • Pipeline finished with Canceled
    2 months ago
    Total: 163s
    #407003
  • Pipeline finished with Failed
    2 months ago
    Total: 210s
    #407004
  • 🇧🇬Bulgaria valthebald Sofia

    @scott_euser: I tried to address all you remarks in gitlab:

    1. Clearer hook_requirements()
    2. Handle case for null source language
    3. Model selection on the AI settings screen
    3. hook_update() that sets default translate provider when it's empty

    Can you check if you still get escaped HTML?

  • 🇧🇬Bulgaria valthebald Sofia
  • Pipeline finished with Success
    2 months ago
    Total: 227s
    #409283
  • 🇧🇬Bulgaria valthebald Sofia

    Passes now

  • 🇬🇧United Kingdom MrDaleSmith

    Tested and translation works without error using the ai_translate module's form. The issue description mentions unifying the provider with the AI CKEditor module as well, but the settings for that still only allow me to set the chat provider for my OpenAI provider, not the spoofed Chat Proxy to LLM provider that I set up in the AI Default settings. Not sure if it's out of scope for this work or not though, which as I say works fine.

    I too was confused about why we wanted to have this new provider for translation, until I read the explanation in the MR discussion: it would be good if we could find somewhere to show this on screen, but at the very least I think we need to update the documentation for ai_translate as part of this work.

  • 🇩🇪Germany marcus_johansson

    I've added some remarks, as Paul wrote, documentation changes would be great as well. Like Scott I did also not get the name "Chat proxy to LLM" directly, but I can't really think of a better name.

  • Pipeline finished with Failed
    2 months ago
    Total: 217s
    #412115
  • Pipeline finished with Failed
    2 months ago
    Total: 216s
    #412123
  • 🇧🇬Bulgaria valthebald Sofia
  • Pipeline finished with Success
    2 months ago
    Total: 417s
    #412127
  • 🇬🇧United Kingdom MrDaleSmith

    Still nothing in the way of documentation as to why you would want a provider for translation that duplicates any other you might be using.

  • 🇧🇬Bulgaria valthebald Sofia

    @mrdalesmith: The issue this patch tries to solve: out of the box, with AI module alone or AI recipe in Drupal CMS), users have "Translate text" operation type on the settings screen, and the list of providers that implement this operation type, is empty.

    Which is confusing, and the most frequent question I get from the new users trying to use AI translation capabilities, is why they cannot use OpenAI or Claude for translation.

    By "any other you might be using", I am aware only about deepl implementing "Translate text" operation, and this is not mentioned on the AI settings screen.

  • 🇬🇧United Kingdom MrDaleSmith

    I'm aware @valthebald, but not everyone using the module will be: I am suggesting that the documentation for the module in the docs folder needs updating to explain this as part of this MR before it is merged so that everyone can be aware of why this is needed when they come to configure the module.

  • Pipeline finished with Success
    2 months ago
    Total: 263s
    #414719
  • 🇧🇬Bulgaria valthebald Sofia

    Changed the documentation of translate text call

  • 🇬🇧United Kingdom MrDaleSmith

    That all looks good to me - it probably needs a follow up ticket to then use this new provider with the other AI translation methods, but I don't think that needs doing here urgently. @marcus are you happy with this?

  • 🇬🇧United Kingdom scott_euser

    To not duplicate efforts, I didn't re-review the code, looks like Marcus as gone through fairly thoroughly again (and I've seen it in earlier state). I tested this out with ✨ Fallback to ai_translate configuration Active (which is relying on this MR, so I'll merge shortly after this gets merged). I used a handful of contents via batch and reviewed both the results in TMGMT UI + in AI Logging sub-module and can see this is working quite well.

    Its a great improvement from AI TMGMT default translation prompt management, thank you!

    +1 from me

  • 🇬🇧United Kingdom scott_euser

    Removing the 'Discuss' since I think we are well beyond that :)

  • 🇩🇪Germany marcus_johansson

    Lets merge it!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024