Feature List

LILT has numerous features that can be enabled by executing the steps below. The available features are listed below:
FeatureTypeDescription
enableQuickTranslateAdmin CLIQuick Translate allows for easy batch translation of multiple documents (of the same source language) at the same time using LILT’s Neural Machine Translation (MT). This tool is convenient for when you want to quickly translate content without having to commit to using a dedicated translator and reviewer.
enableFilteredTMXAdmin CLIFor organizations with this flag enabled, “Exporting memory as TMX” will give the option to filter results based on any custom fields added to the entries.
enableConnectorsViewAdmin CLIWith this flag disabled (false), LILT’s navigation will NOT include the Connectors tab. This product area is typically not relevant to on-premises organizations, thus removing it can create a cleaner interface for users.
enableNewLinguistPageAdmin CLISee Linguist Homepage below
enableLiltCreateBothSee LILT Create below Note: Whisper functionality is included in this.
Incompatible BrowsersEnvironment VariableSee Incompatible Browsers below
enableOCRAdmin CLIEnable OCR using internal Tesseract deployment
enableOpenAiWhisperAdmin CLIEnable ACR using internal Whisper deployment
EnableCustomerReviewerDomainAssignmentAllow assigning domains as customer reviewer on projects
EnableAllowPreProcessingEnable pre processing universal file upload
AdditionalGuidelinesPrompt response job additional guidelines. Applies to jobs and projects.
EnableDataLabelingData Labelling Feature
EnableSubfiltersSegmentationTo enable SRX
enableDomainsEnable domains creation and list for your org
enableAIReviewAdmin CLIWill enable the AI Review functionality and workflows for your org.
Note: You must also have LLaMa enabled and a minimum of 4 Nvidia T4 GPUs in order to support AI Review.
humanAIOptimizedWorkflowAdmin CLIFlag enables an “Optimize with AI” feature that auto-accepts segments where AI Review identified no errors⁠⁠
enableCustomQAConfigAdmin CLIEnable Custom QA Configuration

Enable Features via Admin CLI

NOTE: For LILT November 2023 release onwards, please use npm run dist-admin-cli instead of admin-cli
Perform the following steps to enable features for the organization:
  1. Connect to front pod:
    master# kubectl exec -it -n lilt <frontpod> -c front -- /bin/bash
  2. To enable the feature for an organization, run this command from a front pod, replacing [enableFeature] with the appropriate feature and <ORG_ID> with the relevant Organization ID:**
    npm run dist-admin-cli -- set-org-setting --orgIds <ORG_ID> --settingName=[enableFeature] --value=true
    
  3. Refresh the UI.
  4. Repeat this for all the organizations.

Linguist Homepage

The Linguist Homepage is enabled for the default Translator and Reviewer roles. For custom roles, you will need to select what the user’s homepage should be. For more information, please refer to documentation for the Linguist Homepage.

Configuration instructions

In order to configure the Linguist Homepage, please run the following command for each org: npm run dist-admin-cli -- set-org-setting -o=1 -s=enableNewLinguistPage -v=true Please note: New customers as of Q2 2024 have this enabled by default. If you’re a customer who has been working with LILT since before Q2 2024, you will need to enable this if you’d like the Linguist Homepage.

Enable workflow

Workflows are enabled by default. However, if you don’t see them due to migration issues, connect to the front pods and run the following commands.
npm run dist-admin-cli -- create-workflows-data -o=<ORG ID>

Enabling Features via Environment Variables

Incompatible Browsers

Add a new environment variable to the front values.yaml file as such ALLOW_INCOMPATIBLE_BROWSERS: true . This should be the same place customers configure their header and footer text.

LILT Create

In the UI

LILT Create is enabled by default. In environments where this has the possibility to cause confusion to users, system administrators can configure LILT Create per organization. If disabled, users navigating to the LILT Create page will instead see a brief statement that LILT Create has not been enabled for their organization.

Configuration instructions

In order to disable the LILT Create page, please run the following command for each org: npm run dist-admin-cli -- set-org-setting -o=1 -s=enableLiltCreate -v=false

System Configuration

LILT Create uses Llama3 on the backend. Llama3 is disabled by default, but to manually control enabling Llama3, set the following value in your lilt/environments/lilt/values.yml file:
llm-inference:
  onpremValues:
    env:
      LLAMA_ENABLE: true
    config:
      resources:
        requests:
          cpu: 5
          memory: 100G
          nvidia.com/gpu: 4
        limits:
          cpu: 14
          memory: 100G
          nvidia.com/gpu: 4
    nodeSelector:
      capability: gpu
or similarly for disabling:
llm-inference:
  onpremValues:
    env:
      LLAMA_ENABLE: false
    config:
      resources:
        requests:
          cpu: 1
          memory: 4Gi
        limits:
          memory: 30Gi
    nodeSelector:
      node-type: worker

Whisper

Whisper is enabled by default. However, to manually control enabling Whisper, set the following value in your lilt/environments/lilt/values.yml file:
llm-inference:
  onpremValues:
    env:
      WHISPER_ENABLE: true
or similarly for disabling:
llm-inference:
  onpremValues:
    env:
      WHISPER_ENABLE: false

Miscellaneous Configurations

LILT QA Checks

LILT QA Checks are enabled by default. To disable this functionality, set the following value in your lilt/environments/lilt/values.yml file:
qa:
  onpremValues:
    app:
      args:
        option4: --disable-lilt-qa-checks