Skip to main content
This page lists every configurable feature flag and org setting exposed by the LILT platform. For the on-premises Admin CLI and environment-variable procedures, see Enable/Disable Features.

Translation & Workflow

org
additionalGuidelines
Admin CLI
Free-text additional guidelines attached to Prompt Response jobs. Set during job creation and persisted onto the job’s settings by createJob; surfaced back in the job details/additional-guidelines field for prompt-response job types.
org
autoAssignDueDates
Admin CLI
Enables bulk auto-assignment of due dates across projects, surfaced in the “Bulk Assign Due Dates” project-list modal and its onboarding-flow counterpart, and used by the project assignment API service when computing/submitting bulk due-date assignments.
org
project
autoConfirmExactMatchesAndRepetitions
Org Settings UI
Controls whether exact TM matches and repetitions are automatically confirmed without requiring translator/reviewer action. Read into the CAT editor’s settings object (useCATSettings) as autoConfirmExactMatchesAndRepetitions. Editable via the project’s Workflow Settings form and listed in projectSettingKeys so a project can override the org default.
org
autoPretranslateAcceptAndLock
Org Settings UI
When automatic pretranslation (EnableAutoPretranslate) is on, controls whether pretranslated segments are automatically accepted and locked rather than left pending for translator review. Read at document/job creation (createJob, createDocument, addDocumentToProject) and by PretranslateSettingsService, which maps it to the autoAccept flag returned to the pretranslate pipeline. Editable via the project’s Workflow Settings form alongside the other AutoPretranslate* sub-settings.
org
autoPretranslateCaseSensitiveTranslation
Admin CLI
Org-level toggle added alongside the other AutoPretranslate* sub-settings (see add-pretranslation-setting-keys migration) to control case sensitivity of pretranslate TM matching, but PretranslateSettingsService.getPretranslateSettings actually sources its caseSensitive result from the separate CaseSensitiveTMMatch setting, not this one. No current front-end or server code path reads this setting, so treat it as reserved/likely inert (superseded by CaseSensitiveTMMatch).
org
autoPretranslateExactMatchesAuthorship
Org Settings UI
When automatic pretranslation (EnableAutoPretranslate) is on, controls whether exact TM matches used for pretranslation are attributed to the matched translator (authorship) rather than the system. Read at document/job creation and by PretranslateSettingsService, which maps it to the takeMatchAttribution flag returned to the pretranslate pipeline. Editable via the project’s Workflow Settings form alongside the other AutoPretranslate* sub-settings.
org
autoPretranslateUseMtForUnmatchedSegments
Org Settings UI
When automatic pretranslation (EnableAutoPretranslate) is on, controls whether MT (machine translation) output is used to pretranslate segments that don’t have a TM match, versus leaving unmatched segments untranslated. Read at document/job creation and by PretranslateSettingsService, which switches the pretranslate mode between TRANSLATE_WITH_TM and TRANSLATE_WITH_TM_AND_MT based on this value. Editable via the project’s Workflow Settings form alongside the other AutoPretranslate* sub-settings.
org
defaultPostProcessing
Org Settings UI
Toggles whether post-processing is enabled by default at job creation. Read by createJob/JobsController on the server (when explicit per-job enablePostProcessing isn’t provided) to seed the job’s post-processing flag, and by VerifiedTranslationOptions/ FileTranslationTab on the client to initialize the job-creation form.
org
project
defaultVerifiedTranslationJobCreation
Org Settings UI
Sets whether newly created jobs default to the “verified translation” workflow. Read by TranslateHomepage/FileTranslationTab to initialize the job-creation form. Editable via the org’s Job Form Editor and listed in projectSettingKeys so a project can override the org default.
org
project
defaultWorkflow
Org Settings UI
Sets the workflow template pre-selected by default when creating a new job/project. Read by useWorkflows/SettingDefaultWorkflow on the client and by createJob/createNewProject on the server to seed a job’s workflow when the caller doesn’t specify one explicitly. Editable in the org’s General Settings form and listed in projectSettingKeys so a project can override the org default.
org
disableTMFuzzyMatch
Admin CLI
Org-level, non-user-facing (isUserFacing: false) toggle historically intended to disable TM fuzzy matching. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableASR
Admin CLI
Org-level toggle intended to enable Automatic Speech Recognition (ASR) functionality. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
project
enableAutoPretranslate
Org Settings UI
Master toggle for automatic pretranslation of new documents/jobs: when enabled, incoming segments are pretranslated from TM/MT at document creation (createDocument/addDocumentToProject) instead of starting blank, and the sibling AutoPretranslate* settings (accept & lock, exact-match authorship, MT-for-unmatched) only take effect while this is on. Surfaced as an editable field in both the org-level General Settings form and a project’s Workflow Settings form, and listed in projectSettingKeys/projectSettings so a project can override the org default.
org
enableAutoPretranslationSetting
Admin CLI
Org-level toggle originally added alongside EnableAutoPretranslate and its sibling sub-settings (see add-pretranslation-setting-keys migration), but unlike those siblings it is not user-facing (isUserFacing: false) and no current front-end or server code path reads it. Treat as reserved/likely inert until a live consumer is found.
org
enableAutoRevisions
Admin CLI
Marks a project/job as using the auto-revisions feature of an AI-optimized (Human+AI Optimized) workflow. Not user-toggled directly — createJob/createNewProject write this setting automatically (scoped to the project) whenever the selected workflow is one of the kOptmizedWorkflowNames optimized workflows.
org
enableBackwardPropagation
Admin CLI
Org-level toggle intended to control backward propagation of translation/TM corrections (e.g. applying a later correction back to earlier matching segments). No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableDataLabeling
Admin CLI
Org-level toggle for the Data Labeling workflow feature: gates the “Data Labeling” nav sidebar item and homepage card, and filters which workflow templates useWorkflowTemplates offers for prompt-response jobs (only kDataLabelingWorkflowNames templates are surfaced when enabled). Also read by WorkflowSettingsForm to decide whether to show the related “Prompt Labeling” project setting.
org
enableDirectToCloudUploads
Admin CLI
Org-level toggle that enables direct-to-cloud (client-to-storage) uploads for job file uploads, bypassing the app server for large files. Read at client startup (client_initial_state_provider) and applied via setEnableDirectToCloudUploads in the cloud upload middleware.
org
enableFilteredTMX
Admin CLI
Controls whether the TM export modal (ExportTmxModal) offers the filtered-export option when exporting a memory as TMX, letting users scope the export with field-based filters (ExportTmxFilters/MemoryExportFilter) instead of exporting the full memory.
org
enableFixedLinguistPayment
Admin CLI
Org-level toggle that switches job creation to use the project-level quote-and-recalculation flow with a loading indicator, instead of the legacy per-job quoting path.
org
enableGoogleTranslateInTMLookup
Admin CLI
Org-level toggle historically intended to enable use of Google Translate results when performing TM (Translation Memory) lookups. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableJobJiraTickets
Admin CLI
Org-level toggle that enables automatic Jira ticket creation for jobs. Checked in the job-created notification handler; tickets are only created when this setting is enabled and the requesting user is external (non-@lilt.com).
org
enableJobsFlow
Admin CLI
Legacy 2021-era rollout flag for the Jobs feature area. Not user-facing (isUserFacing: false) and not read anywhere in the current front client/server code; Jobs are now a standard, always-on part of the platform, so this flag appears vestigial.
org
enableJobsListPaginated
Admin CLI
Legacy rollout flag for the paginated Jobs list view. Not user-facing (isUserFacing: false) and no longer read anywhere in the front client/server code; on-prem and cloud migrations now force its default to true fleet-wide, indicating the paginated list is standard behavior and this flag is vestigial.
org
enableJobV2
Admin CLI
Routes an organization into the redesigned Job/Translate experience: gates the Job Form Editor, Translate V2, and Instant Job Details routes and the “translate” nav link destination, falling back to the legacy Translate/Home pages when disabled. Rolled out per-org via a dedicated enablement migration rather than an admin toggle.
org
enableOrgDefaultMemory
Admin CLI
Org-level toggle historically intended to enable an org-default translation memory. No current front-end or server code path reads this setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
enablePostProcessing
Admin CLI
Job-level setting (default off) that determines whether post-processing (PP) runs on a job. Read during job creation (createJob) and by connector auto-delivery logic, which waits for PP to complete before delivering if this is enabled.
org
enableQuickTranslate
Admin CLI
Org-level toggle historically intended to enable a “Quick Translate” feature. No current front-end or server code path reads this setting outside of a test fixture and the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
enableRejectWorkflows
Admin CLI
Org-level workflow toggle whose on-prem default is forced to true (ID 135). Not read anywhere in the current front client/server code (distinct from the actively-used EnableRejectDocument project setting), so its behavior is presumably enforced downstream.
org
enableStringInfoFiles
Admin CLI
Org-level toggle that allows uploading .string.info companion files alongside source files. Read by useAcceptedFileFormats to add .info to the set of accepted upload extensions during job creation.
org
enableSubfiltersSegmentation
Admin CLI
Org-level toggle intended to control segmentation of subfilters in the Custom File Processing / file filter configuration feature. The underlying setting key was deleted outright by a later migration (removeEnableSubfilterSegmentation) and no current front-end or server code path reads it, so treat it as reserved/removed.
org
enableUniversalFileUploadEnterprise
Org Settings UI
Org-level toggle for “Universal File Upload” (enterprise): when enabled, all accepted file types are allowed for upload and OCR pre-processing is started automatically for uploaded files (ocrMiddleware), and translate-job submission forces every job through the pre-processing pipeline (submitJobThunk/submitJob). Read in several job-creation and file-upload flows (FileCard, useAcceptedFileFormats, QuotingActions).
org
project
enableUnlockExactMatchedSegmentsByStage
Org Settings UI
Controls whether segments can be unlocked stage-by-stage in the CAT editor (catUnlockSegmentsByStage in useCATSettings, sourced from useDocumentCATSettings). The setting’s DB/string key retains the name “enableUnlockExactMatchedSegmentsByStage” for back-compat, but usage has since expanded to cover all segments, not just exact matches — do not rely on the key name to infer scope. Editable via the project’s Workflow Settings form and listed in projectSettingKeys so a project can override the org default.
org
enableVideoDubbing
Admin CLI
Org-level feature toggle for the Video Dubbing job type. Read by useEnableVideoDubbing to control whether Video Dubbing is offered as an option in Instant Translate and job creation.
org
enableWorkflows
Admin CLI
Legacy org-level toggle originally meant to gate the CAT/document editor’s workflow features. useCATSettings now hardcodes enableWorkflows: true in the settings object it builds (“hardcoded to true until cat removal”), and the only remaining server-side reference (setEnableWorkflowFlagForOrganization) is explicitly marked “DEPRECATED - only used in a migration”. Treat as deprecated/inert.
org
externalModelId
Admin CLI
Non-user-facing, project-scoped setting storing the numeric id of an external MT model wired up at project creation. Read by the GraphQL Project.externalModel field resolver (only evaluated when the client selects that field) to look up and return the model, mirroring Core’s JobStatsManagerImpl.addExternalModelsIfAvailable selection logic — the setting is the sole source of truth, with no memory/language-pair fallback heuristic.
org
project
humanAIOptimizedWorkflow
Org Settings UI
Org/project-level default for whether newly created jobs use the “AI-optimized” (human+AI hybrid) workflow. Drives the “optimize workflow” toggle default at job creation, is only actionable when the selected default workflow is recognized as AI-optimized and AI Review is enabled, and is configurable from both the org’s Default Workflow settings and a domain’s workflow preferences.
org
nonTranslatablePatterns
Admin CLI
Org-level JSON setting declaring which opt-in non-translatable (NT) placeholder syntaxes (e.g. double_brace, single_brace, percent_format) the org uses, replacing hardcoded per-customer org-ID lists in core’s NTHandler. The universal ${foo} handling is always on and is not controlled by this setting.
org
showVerifiedQuotingV2
Admin CLI
Setting key for a “verified quoting v2” job-creation experience, conceptually paired with the now-deprecated ShowRequiredQuotingV2. As of this writing it has no read call site anywhere in client/ or server/; the only reference outside its own enum declaration is the on-prem defaults migration (changeDefaultSettingOnPrem), which forces its default to false on-prem. The feature it was intended to gate does not appear to be wired up yet.
org
surfaceEnableAutoRevisionsOrgSetting
Admin CLI
Org-level toggle added alongside EnableAutoRevisions to control whether that setting is surfaced in the org settings UI. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.

Review & QA

org
aiQAExcludeExactMatches
Org Settings UI
Org-level toggle, nested under EnableAIQA in settingKeysGroups, that excludes exact TM matches from AI QA checks. Listed in invertedSettingKeys, so its stored/displayed boolean is the inverse of the UI label’s sense; defaults to true per its rollout migration.
org
project
automaticBatchQaCustomerReviewer
Org Settings UI
Automatically marks the batch-level QA check as done for the secondary (customer) review stage instead of requiring a customer reviewer to run/confirm it manually. Mirrors AutomaticBatchQaTranslator and AutomaticBatchQaReviewer for the customer-review role and is configured from the org’s and a project’s Workflow Settings forms (the secondary-reviewer column of the Workflow Settings table).
org
project
automaticBatchQaReviewer
Org Settings UI
Automatically marks the batch-level QA check as done for the review stage instead of requiring a reviewer to run/confirm it manually. Mirrors AutomaticBatchQaTranslator for the review role and is configured from the org’s and a project’s Workflow Settings forms.
org
project
automaticBatchQaTranslator
Org Settings UI
Automatically marks the batch-level QA check as done for the translation stage instead of requiring a translator to run/confirm it manually. Read in the CAT editor via project/document settings resolution and configured from the org’s and a project’s Workflow Settings forms.
org
project
defaultReviewSamplingSize
Org Settings UI
Default percentage of translated segments sampled for the primary review stage when a new project or job is created. Prefills sampleReviewPercentage at project/job creation time and is the sampling-rate control shown in both the org-level Workflow Settings and a project’s Workflow Settings form.
org
project
defaultSecondaryReviewSamplingSize
Org Settings UI
Default percentage of segments sampled for the secondary (customer) review stage when a new project or job is created. Behaves like DefaultReviewSamplingSize but applies to the secondary review workflow stage, and is set from the same org/project Workflow Settings forms.
org
enableAIQA
Org Settings UI
Org-level toggle for AI-powered QA checks on document segments. Referenced in document QA issue counting and QA check result endpoints, and groups the AiQAExcludeExactMatches sub-setting in settingKeysGroups.
org
enableAIReview
Admin CLI
Org-level toggle for the AI Review workflow stage/option. Referenced by workflow-template and default-workflow UI, domain preferences, and the Verified Translation advanced options when deciding whether AI Review can be offered as a workflow stage.
org
enableBlockReviewUnlessTranslationDone
Org Settings UI
Controls whether a document can be sent to review while translation is still incomplete. Read into the CAT editor’s settings object (useCATSettings, useDocumentCATSettings) as enableBlockReviewUnlessTranslationDone and consulted by useAllowedActions to gate the “send to review” document action (DocumentDropdown).
org
enableCustomerReviewQA
Admin CLI
Org-level toggle historically intended to enable a customer-review QA flow. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableCustomQAConfig
Admin CLI
Org-level toggle that gates the ability to upload a custom QA configuration. Wired into shared/permissions.ts as the requiredSetting for the qaConfig.upload permission, so the permission is only granted when this setting is enabled.
org
enableMarkForReview
Admin CLI
Enables the “mark for review” action in the CAT/document editor, letting a translator or reviewer explicitly flag a segment as needing another look during a later review stage. Resolved per-document via the CAT settings hooks and read through the active-settings selectors; not exposed on the org settings UI.
org
enableMQMIssueType
Admin CLI
Legacy boolean toggle (added 2023, isUserFacing: true) originally intended to gate MQM issue-type functionality. No live consumer was found in current client or server code — only settings migrations reference it, including turnDeprecatedSettingsOff, which forces it to false org-wide as part of a bulk cleanup of deprecated settings.
org
enableNeuralAutoReview
Admin CLI
Org-level toggle intended to enable automatic, neural-model-driven review of translated segments. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enablePII
Org Settings UI
Org-level toggle that enables PII redaction. When enabled, shouldRedactPII causes PII to be redacted for any user who lacks the ExportPII permission.
org
project
enableRejectDocument
Admin CLI
Historically gated whether a linguist/reviewer could reject a document back out of a workflow stage. Read into the CAT editor’s settings object via useDocumentCATSettings, but useCATSettings currently hardcodes enableRejectDocument: false for every caller (“temporarily hide enableRejectDocument”), so the feature is disabled in the editor regardless of this setting’s stored value. Listed in projectSettingKeys/workflowOnlySettingKeys so a project can still override the (currently inert) org default.
org
enableTmEditorQa
Admin CLI
Enables the QA (“consistency check”) view inside the Translation Memory / Termbase editor, including the “Run QA” action and the QA results sidebar. When disabled, a user viewing the QA tab is redirected back to the main termbase view.
org
enableTmEditorQaGrammarSpelling
Admin CLI
Extends the Translation Memory / Termbase QA consistency-check to also flag grammar and spelling issues, not just term-consistency mismatches. Gates the grammar/spelling error display in the Termbase QA mismatch view (client) and selects the grammar/spelling consistency-check type on the server (getConsistencyCheckType).
org
enableVerifySegments
Admin CLI
Org-level toggle for the Verify Segments feature. When disabled, the on-prem Analyst role is filtered out of the org’s available roles (getRoles), and document CAT settings hide the “verify segments” capability in the editor.
org
mandatoryErrorFlagging
Org Settings UI
Requires translators/reviewers to explicitly flag segment-level errors during translation and review. Surfaced as a toggle group (“mandate error logging for the stages”) in the org Settings UI and consumed by the CAT editor settings hooks to control error-flagging behavior in the editor.
org
mandatoryErrorFlaggingSecondaryReviewCommercial
Org Settings UI
Controls whether error flagging is mandatory during the secondary commercial review stage. Read into the CAT editor’s settings object (useCATSettings, useDocumentCATSettings) as mandatoryErrorFlaggingSecondaryReviewCommercial, with document-level overrides taking precedence over org/domain defaults. Editable via the org’s General Settings tab (settingsTabs.ts).
org
multimediaQAChecks
Org Settings UI
Org-level JSON configuration for multimedia QA checks (caption duration, reading speed/chars-per-line for word- and character-based languages, max lines), each with min/max thresholds and a blocking flag. Configured on the General Settings custom tab and consumed by the editor’s document CAT settings.
org
qaCheckPrompts
Org Settings UI
Org-level JSON setting holding the list of custom AI QA check prompts an org has authored. Rendered and edited via the Custom QA Checks settings tab (CustomQAChecksTab), which reads and writes the prompts: string[] shape.
org
project
requireBatchQaCustomerReviewer
Org Settings UI
Requires a batch-level QA check to be completed for the customer review stage before a customer reviewer can finish their work on a document. Mirrors RequireBatchQaTranslator for the customer-review role and is configured from the org’s Workflow Settings form.
org
project
requireBatchQaReviewer
Org Settings UI
Requires a batch-level QA check to be completed for the review stage before a reviewer can finish their work on a document. Mirrors RequireBatchQaTranslator for the review role and is configured from the org’s and a project’s Workflow Settings forms.
org
project
requireBatchQaTranslator
Org Settings UI
Requires a batch-level QA check to be completed for the translation stage before a translator can finish their work on a document. Read in the CAT editor via project/document settings resolution and configured from the org’s and a project’s Workflow Settings forms.
org
requireDistinctReviewers
Admin CLI
Org-level toggle intended to require that different linguists occupy the translator and reviewer roles on the same document/job (i.e. disallow self-review). No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
project
reviewSamplingExcludeExactMatches
Org Settings UI
Excludes 100%/exact TM matches from the primary review sampling calculation, so exact matches are not counted toward DefaultReviewSamplingSize. Surfaced as the “include exact matches” toggle in the Reviewer column of the org’s and a project’s Workflow Settings forms; stored as an inverted setting key.
org
project
secondaryReviewSamplingExcludeExactMatches
Org Settings UI
Excludes 100%/exact TM matches from the secondary (customer) review sampling calculation, mirroring ReviewSamplingExcludeExactMatches for the secondary review stage. Surfaced as the “include exact matches” toggle in the Secondary Reviewer column of the org’s and a project’s Workflow Settings forms; stored as an inverted setting key.
org
project
showPreviousStageCommentsSecondaryReviewCommercial
Org Settings UI
Controls whether comments left during a prior review stage are shown to the secondary commercial reviewer. Read into the CAT editor’s settings object (useCATSettings, useDocumentCATSettings) as showPreviousStageCommentsSecondaryReviewCommercial and listed in projectSettingKeys/workflowOnlySettingKeys so a project can override the org default via the project’s Workflow Settings form.
org
skipReviewerIfTranslatorPreferred
Admin CLI
Org-level workflow toggle whose on-prem default is forced to true (ID 79). Not read anywhere in the current front client/server code, so the reviewer-skip behavior implied by its name is presumably enforced downstream (e.g. in the workflow/assignment engine) rather than in front itself.

Editor

org
caseSensitiveTMMatch
Org Settings UI
Controls whether TM match lookups treat differing letter case as a mismatch. Read into the CAT editor’s settings object (useCATSettings/useDocumentCATSettings) to drive case-sensitive TM-match behavior, and separately consumed directly by PretranslateSettingsService to set the caseSensitive flag used when pretranslating new documents/jobs from TM. Rendered generically as part of the “Translate or CAT” settings group on the org’s General Settings tab, alongside Disable101TMMatches and EnableTargetCharLimit.
org
catMTSuggestionProvider
Admin CLI
Controls which MT suggestion provider is used for CAT/MT suggestions in the editor. Listed in both editorSettingKeys and translateOrCatSettingKeys, and read by the editor’s useDocumentCATSettings hook to determine which provider’s suggestions to fetch and display for a given document.
org
controlCopyAndPaste
Org Settings UI
Controls copy/paste behavior in the CAT editor. The stored numeric option is mapped via mapControlCopyAndPasteOptions to one of "allow" | "warn" | "block" and passed to the @lilt/cat editor package as controlCopyAndPaste. Rendered generically as part of the “Translate or CAT” settings group on the org’s General Settings tab.
org
disable101TMMatches
Org Settings UI
Excludes 100%/exact TM matches from the CAT editor’s TM-match behavior. Rendered generically as part of the “Translate or CAT” settings group (translateOrCatSettingKeys) on the org’s General Settings tab, alongside CaseSensitiveTMMatch and EnableTargetCharLimit.
org
enableCatInfiniteScroll
Admin CLI
Org-level toggle intended to enable infinite-scroll pagination of segments in the CAT editor. The value is fetched into selectCatSettings, but no current front-end code path threads it into the CatSettings object built by useCATSettings/ useDocumentCATSettings, so treat it as reserved/likely inert until a live consumer is found.
org
enableNextWordSuggestions
Admin CLI
Enables next-word autocomplete suggestions in the CAT editor. Read into the editor’s settings object (useCATSettings/useDocumentCATSettings) as enableNextWordSuggestions and passed straight through to the @lilt/cat editor package’s CatSettings.
org
project
enablePromptLabeling
Org Settings UI
Project-level toggle that surfaces prompt-labeling controls for the CAT editor: it decides whether the prompt-labeling option is shown in the project’s Workflow Settings form and is passed through to project CAT settings consumed by the segment editor.
org
enableTargetCharLimit
Org Settings UI
Enables enforcement of a target-segment character limit in the CAT editor. Read into the editor’s settings object (useCATSettings/useDocumentCATSettings) as enableTargetCharLimit. Rendered generically as part of the “Translate or CAT” settings group on the org’s General Settings tab, alongside CaseSensitiveTMMatch and Disable101TMMatches.
org
TSFStyleGuide
Org Settings UI
Org-level Text Specification Framework style guide, stored as a JSON object (hard line breaks, tags/placeholders, and special rules, each with an enabled flag). Surfaced in the editor via useStyleGuide/useCATSettings to drive CAT-side style checks.

AI Providers & Models

org
aiReviewModelsPreferences
Org Settings UI
JSON preferences blob storing the org’s selected AI-review provider, added by the add-ai-review-provider-setting migration with a default value of { defaultValue: LLMProvider.NEURAL }. Used to pick which model backs automated AI review scoring.
org
audioToTextModelsPreferences
Org Settings UI
JSON preferences blob analogous to GenerativeModelsPreferences but for audio-to-text (speech-to-text) models — consumed as one of the ServicesProps.type variants in the AI Providers V2 services tab for managing which audio-to-text provider/model is active for the org.
org
enableAmazonTextract
Admin CLI
Legacy per-provider toggle intended to control availability of the Amazon Textract OCR option. It is not read by the current useImageToTextLLMOptions hook, which always shows Amazon Textract (isVisible: true) and gates only on live credential configuration and the org’s ImageToTextModelsPreferences; only data migrations reference this setting name. Appears superseded/dormant.
org
enableAmazonTranscribe
Admin CLI
Legacy per-provider toggle intended to control availability of the Amazon Transcribe ASR option. It is not read by the current useSpeechToTextLLMOptions hook, which always shows the Amazon Transcribe option (isVisible: true) and gates only on live service validation/credential configuration; only data migrations reference this setting name. Appears superseded/dormant.
org
enableAmazonTranslate
Admin CLI
Legacy per-provider toggle intended to control availability of the Amazon Translate MT provider. It has no read call site in client/ or server/ today; only data migrations reference it (enabled by default for SaaS, forced off on-prem per changeDefaultSettingOnPrem). Provider availability in the current AIProvidersV2 UI is instead driven by EnabledAIProviders plus live credential configuration.
org
enableAzureGPT35
Admin CLI
Legacy per-provider toggle intended to control availability of the Azure GPT-3.5 translation/generation model. It has no read call site in client/ or server/ today — only data migrations reference it (turned on org-wide by turnDeprecatedSettingsOn, forced off on-prem). Provider availability in the current AIProvidersV2 UI is instead driven by EnabledAIProviders plus live per-provider credential configuration, so this flag appears to be superseded/dormant rather than actively gating anything.
org
enableAzureGPT5
Admin CLI
Gates the Azure-hosted GPT-5 option in the LILT Create / AI Hub generative model list — a separate entry from OpenAI’s own GPT-5 that reuses the org’s existing Azure LLM configuration (isConfigured: true // Azure GPT-5 uses same Azure configuration).
org
enableBedrockAI21Jurassic
Admin CLI
Legacy per-provider toggle intended to control availability of the AWS Bedrock AI21 Jurassic model. It has no read call site in client/ or server/ today; only data migrations reference it (forced off both by default and on-prem). Appears superseded/dormant.
org
enableBedrockClaude2
Admin CLI
Legacy per-provider toggle intended to control availability of the AWS Bedrock Claude 2 model. It has no read call site in client/ or server/ today; only data migrations reference it (forced off on-prem). Appears superseded/dormant.
org
enableBedrockClaude3Sonnet
Admin CLI
Legacy per-provider toggle intended to control availability of the AWS Bedrock Claude 3 Sonnet model. It has no read call site in client/ or server/ today; only data migrations reference it (turned on org-wide by turnDeprecatedSettingsOn, forced off on-prem). Appears superseded/dormant.
org
enableBedrockTitan
Admin CLI
Legacy per-provider toggle intended to control availability of the AWS Bedrock Titan model. It has no read call site in client/ or server/ today; only data migrations reference it (forced off on-prem). Appears superseded/dormant.
org
enableBedrockTitanTextExpress
Admin CLI
Legacy per-provider toggle intended to control availability of the AWS Bedrock Titan Text Express model. It has no read call site in client/ or server/ today; only data migrations reference it (turned on org-wide by turnDeprecatedSettingsOn, forced off on-prem). Appears superseded/dormant.
org
enabledAIProviders
Org Settings UI
JSON object of enabled external AI providers (e.g. {“aws”: true, “google”: true}).
org
enableDeepL
Admin CLI
Legacy per-provider toggle intended to control availability of the DeepL MT provider. It has no read call site in client/ or server/ today; only data migrations reference it (turned on org-wide by turnDeprecatedSettingsOn, forced off on-prem). Provider availability in the current AIProvidersV2 UI (DeepL is offered unconditionally alongside Lilt Contextual AI, Amazon, Google, and Anthropic in useProviderList) is instead driven by EnabledAIProviders plus live credential configuration.
org
enableGoogleCloudASR
Admin CLI
Legacy per-provider toggle intended to control availability of the Google Cloud ASR option. Not read by the current useSpeechToTextLLMOptions hook (Google Cloud ASR visibility there is unconditional, gated only by live service validation/credential configuration); only data migrations reference this setting name. Appears superseded/dormant.
org
enableGoogleCloudVision
Admin CLI
Legacy per-provider toggle intended to control availability of the Google Cloud Vision OCR option. Not read by the current useImageToTextLLMOptions hook (Google Cloud Vision visibility there is unconditional, gated only by live credential configuration); only data migrations reference this setting name. Appears superseded/dormant.
org
enableGooglePalm2
Admin CLI
Legacy per-provider toggle intended to control availability of the Google PaLM 2 generative model. It has no read call site in client/ or server/ today; only data migrations reference it. Appears superseded/dormant, likely predating removal of PaLM 2 from the model lineup entirely.
org
enableGoogleTranslate
Admin CLI
Legacy per-provider toggle intended to control availability of the Google Translate MT provider. It has no read call site in client/ or server/ today; only data migrations reference it (enabled org-wide by turnDeprecatedSettingsOn, forced off on-prem). Provider availability in the current AIProvidersV2 UI is instead driven by EnabledAIProviders plus live credential configuration.
org
enableGoogleTranslateV3
Admin CLI
Setting key seemingly intended to gate availability of the Google Translate v3 API as a distinct provider/model option. Unlike its siblings in this group, it has zero references anywhere else in the repository — not even in a data migration — so it cannot currently affect any behavior.
org
enableGoogleTranslateV3Migration
Admin CLI
Setting key seemingly intended to gate a migration path from the legacy Google Translate API to v3 (e.g. for switching existing orgs over without changing their selected provider). Like EnableGoogleTranslateV3, it has zero references anywhere else in the repository — not even in a data migration — so it cannot currently affect any behavior.
org
enableLiltHostedNvidia
Admin CLI
Shows the “Lilt-hosted Nvidia” translation provider as a selectable option in MT provider pickers (useProviderList/useLLMOptions on the Contextual AI / target-language provider forms, and the AIProvidersV2 Services tab), in addition to the always-available Lilt Contextual AI, Amazon, DeepL, Google, and Anthropic options. No org-settings-ui form exposes it directly; it’s flipped via data migration/admin-cli, and is forced off by default on-prem.
org
enableLLaMa2
Admin CLI
Legacy per-provider toggle intended to control availability of a LLaMa 2 translation/generation model. It has no read call site in client/ or server/ today; only data migrations reference it (turned on org-wide by turnDeprecatedSettingsOn, forced off on-prem). Appears superseded/dormant.
org
enableLLMConfigurationSettings
Admin CLI
Org-level toggle historically intended to gate a dedicated LLM Configuration Settings UI/flow. No current front-end or server code path reads this setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
enableMcp
Org Settings UI
Org-level toggle to enable the Model Context Protocol (MCP) integration.
org
enableOCR
Admin CLI
Org-level toggle historically intended to enable OCR (Optical Character Recognition) functionality. No current front-end or server code path reads this setting outside of the on-prem default-value migrations (OCR triggering elsewhere in the codebase is instead driven by EnableUniversalFileUploadEnterprise), so treat it as reserved/likely inert until a live consumer is found.
org
enableOpenAIGPT3_5
Admin CLI
Gates the OpenAI GPT-3.5 option in the LILT Create / AI Hub generative model list (useGenerativeLLMOptions’s createOpenAIModel helper sets isVisible from this setting). Added by the add-lilt-create-provider-settings migration and defaulted off for on-prem deployments (changeDefaultSettingOnPrem); also force-disabled org-wide by the turnDeprecatedSettingsOn/changeDefaultValuesOfDeprecatedSettings migration sweeps alongside the other older OpenAI models.
org
enableOpenAIGPT4
Admin CLI
Gates the OpenAI GPT-4 option in the LILT Create / AI Hub generative model list. Also read directly (outside the AI Hub list) as a general “is OpenAI configured/enabled” check in several unrelated call sites — useLLMOptions, useAIProvidersLLMOptions, and the target-language provider list (useProvidersList) all gate OpenAI-provider visibility on this single flag rather than a dedicated one.
org
enableOpenAIGPT4_Turbo
Admin CLI
Gates the OpenAI GPT-4 Turbo option in the LILT Create / AI Hub generative model list, alongside the plain GPT-4 and GPT-3.5 options. Added by the same add-lilt-create-provider-settings migration and defaulted off on-prem.
org
enableOpenAIGPT4O
Admin CLI
Gates the OpenAI GPT-4o option in the LILT Create / AI Hub generative model list. Added later than the other GPT-4 variants (dedicated add-enable-gpt4o-setting migration) and defaulted off for on-prem.
org
enableOpenAIGPT5
Admin CLI
Gates the OpenAI GPT-5 option (createOpenAIModel with high speed, high cost, high quality) in the LILT Create / AI Hub generative model list.
org
enableOpenAIGPT5Mini
Admin CLI
Gates the OpenAI GPT-5 Mini option (high speed, medium cost, high quality) in the LILT Create / AI Hub generative model list.
org
enableOpenAIGPT5Nano
Admin CLI
Gates the OpenAI GPT-5 Nano option (high speed, low cost, medium quality) in the LILT Create / AI Hub generative model list.
org
enableOpenAiWhisper
Admin CLI
Controls visibility of the OpenAI Whisper ASR option (both the on-prem “Lilt-hosted” variant and the SaaS Azure-backed variant) in the AIHub speech-to-text provider list (useSpeechToTextLLMOptions), independent of the Amazon Transcribe and Google Cloud ASR options which are always shown. Combined with live per-provider credential configuration to determine whether the option is actually usable.
org
enableTesseract
Admin CLI
Setting originally added (add-enable-tesseract-provider, isUserFacing: false) to gate the Tesseract/“Lilt Contextual AI” OCR option. The current useImageToTextLLMOptions hook no longer reads it directly — Tesseract’s visibility there is driven purely by isOnPrem — though a companion spec still mocks this setting, suggesting the read was refactored away without updating the test. Only data migrations (turned on org-wide by turnDeprecatedSettingsOn, forced on for on-prem defaults) still reference it live.
org
project
GeneratedContentPreferences
API
JSON blob of preferences (style guide overrides, preferred LLM provider) for LILT Create generated content, matching the GeneratedContentPreferences shape consumed as GeneratedContentTemplateParams.preferences. Not user-facing (isUserFacing: false); its migration deletes rows from OrganizationSettings, ProjectSettings, and UserSettings alike, indicating it can be stored at multiple scopes rather than only the org level.
org
GeneratedContentService
Org Settings UI
Selects which generative model/service backs LILT Create’s content generation (useGeneratedContentService), consumed by useSupportedLanguages to determine supported languages for the selected model. Editable via the org’s General Settings tab (GeneralSettings.tsx, SettingsTabs/custom) and kept current by migrations that flip its value across Gemini model versions.
org
generativeModelsPreferences
Org Settings UI
JSON preferences blob holding the org’s per-model enable/disable state and defaults for generative (LLM) models — useGenerativeLLMOptions reads preferences.value.enabledModels to decide which configured model each provider row should show as enabled, and it’s the primary settingName threaded through the AI Providers V2 services tab (ServiceCard, useAIProviders, useBedrockServices) for saving updates to generative model selection.
org
imageToTextModelsPreferences
Org Settings UI
JSON preferences blob analogous to GenerativeModelsPreferences but for image-to-text (OCR) models — read by useImageToTextLLMOptions and the job-creation OCR provider picker (useOCRProvider) to determine the org’s configured OCR provider/model.
org
translationModelsPreferences
Org Settings UI
JSON preferences blob analogous to GenerativeModelsPreferences but for translation (MT) models — used across job creation (ModelSelector, JobForm, useFillPromptLangPairs) to determine which translation model/provider is enabled and available for a given org.
org
viewContextualAI
Admin CLI
Org-level toggle historically intended to gate visibility of Contextual AI / LLM-related UI. No current front-end or server code path reads this specific setting outside of the on-prem default-value migrations (the large set of Contextual-AI-branded containers found in the codebase are not gated by this key), so treat it as reserved/likely inert until a live consumer is found.
org
ENABLE_EXTERNAL_MODEL_CONFIG
Environment Variable
Shows the External Models tab under Organization Settings, letting admins toggle which external AI providers are available.

Authentication & Security

org
enableWSO2Login
Admin CLI
Org-level toggle that allows WSO2-backed OIDC login for an organization. Checked in addMember when the org’s authentication type is EMBEDDED_OIDC, to decide whether WSO2 login is permitted for newly added members.
org
sessionTimeout
Admin CLI
Org-level numeric override (in minutes) for how long a user’s login session stays valid. Read by getSessionCookieTimeout/ setSessionCookieTimeout, cached per-user for 4 hours; a value of 0 (or unset) means no custom timeout is applied.

Connectors

org
allowedConnectors
Admin CLI
String setting (default "") added by the add-allowedConnectors-SettingKeyNames migration to restrict which connectors an org is allowed to use. No live reader was found in current client or server code beyond the migration that created it — it appears to be an unused/dormant setting today.
org
enableAutoDeliveryBlocking
Admin CLI
Org-level toggle for the auto-delivery feature. When enabled, jobs whose documents are all marked done are automatically delivered (subject to post-processing — if PP is still active, delivery waits until PP completes). When disabled (default), automatic delivery is blocked unconditionally and a PM must click Deliver manually. The DB key name retains “Blocking” for back-compat with existing org settings rows; do not rely on the name to infer the runtime behavior. Manual (PM-initiated) delivery is always allowed regardless of this setting.
org
enableConnectorsBuilder
Admin CLI
Org-level toggle intended to enable the Connectors Builder feature. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableConnectorsManualSubmission
Admin CLI
Org-level toggle to allow manual submissions for connectors flows. When enabled, users can select content from a connector and submit it manually.
org
enableConnectorsView
Admin CLI
Org-level toggle for the Connectors nav entry: gates the “Connectors” link/card on the homepage and manage-home navigation (NavigationCards/ManageHomepage, via useHasSetting).

Analytics

org
customAnalyticsKey
Admin CLI
Customer identifier embedded into the Looker Studio embed URL for the AnalyticsV2 Custom Analytics tab (AnalyticsV2/CustomAnalytics).
org
enableAIAccuracyPerModel
Admin CLI
Enables the per-model breakdown view in the Analytics “AI Accuracy” tab, letting users see AI accuracy metrics broken out by individual model rather than only in aggregate.
org
enableAnalyticsV2
Org Settings UI
Switches the Analytics page over to the AnalyticsV2 experience (AnalyticsPage/DataAnalytics/index.tsx), which otherwise falls back to the legacy DataAnalytics view. Set to true as part of new organizations’ default settings (setDefaultOrgSettings).
org
enableCustomAnalytics
Org Settings UI
Shows the Custom Analytics tab inside AnalyticsV2 (AnalyticsV2/index.tsx), which embeds a customer-specific Looker Studio report via CustomAnalyticsKey.
org
enableFinancialData
Admin CLI
Org-level toggle that gates access to financial data in Analytics reports — when disabled, useReports treats the org as having no financial data and hides financial figures from report views.
org
enableFinancialsAnalytics
Org Settings UI
Shows the Financials tab inside AnalyticsV2 (AnalyticsV2/index.tsx), exposing financial reporting alongside the Overview, AI Accuracy, and Quality tabs.
org
enableLQA
Admin CLI
Switches an organization’s Analytics dashboards (Overview and Quality tabs) from the legacy “average errors per word” quality metric to the LQA (Language Quality Assessment) score, swapping in the average quality score widget in place of the average errors/words widget. Not exposed on the org settings UI; toggled per organization by Lilt staff.
org
enableOPMStats
Admin CLI
Org-level toggle historically intended to gate access to the Linguist Stats “OPM” (operations-per-minute) productivity report under Insights. No current front-end or server code path reads this specific setting to gate that report outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
enableOpportunitySync
Admin CLI
Org-level toggle that automatically links Salesforce opportunities to projects. Non-user-facing; only referenced by its creation migration and the on-prem default-settings migration — no live application reader was found beyond that.
org
grossMarginPercentHumanAiOptimized
Admin CLI
Org-level target gross margin percentage (0-100) associated with Human+AI Optimized workflow jobs. Defaults to 80; validated as a 0-100 percentage but not yet read by any front-end or server code path in this repo — likely feeds a downstream pricing/margin-reporting consumer.
org
grossMarginPercentVerified
Admin CLI
Org-level target gross margin percentage (0-100) associated with Verified-translation jobs. Defaults to 70; validated as a 0-100 percentage but not yet read by any front-end or server code path in this repo — likely feeds a downstream pricing/margin-reporting consumer.
org
programInsightsKey
Admin CLI
Customer identifier embedded into the Looker Studio embed URL for the legacy Program Insights report (Homepage/ProgramInsights, DataAnalytics/ProgramInsights), used to parameterize the report to the current organization.
org
usageAnalytics
Admin CLI
Gates the “by user” drill-down modals (Quality by User, AI Accuracy by User) inside AnalyticsV2 (read via useHasUsageAnalyticsEnabled/ useHasSetting, and directly in AnalyticsV2/index.tsx) so only orgs with this flag can open per-user breakdowns from chart clicks. Not user-editable; enabled per-org via a series of one-off data migrations (create-enableUsageAnalytics-org-setting, later migrations flipping the default to true).
org
viewEmbeddedAppInsights
Admin CLI
Gates visibility of the “Insights” nav link in the app header and access to the embedded Volume & Leverage insights report/route. When disabled, users are redirected away from the report page. Not exposed on the org settings UI; toggled per organization by Lilt staff.
org
viewEmbeddedAppInsightsB
Admin CLI
Org-level toggle intended as a secondary/variant flag alongside ViewEmbeddedAppInsights for embedded app insights access. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
viewLinguistStats
Admin CLI
Org-level toggle historically intended to gate access to the Linguist Stats report under Insights. No current front-end or server code path reads this specific setting outside of the on-prem default-value migrations — visibility of that report area is instead governed by the separate Permissions.LinguistStatsRead role-permission system — so treat it as reserved/likely inert until a live consumer is found.
org
viewProgramInsights
Admin CLI
Org-level toggle historically intended to gate access to the Program Insights homepage/analytics widget. No current front-end or server code path reads this specific setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
viewProjectsStats
Admin CLI
Org-level toggle historically intended to gate access to the Projects Stats report under Insights/Analytics. No current front-end or server code path reads this specific setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.

Users & Assignment

org
accountLinguistQualitiesIsAvailable
Admin CLI
Org-level flag whose name implies gating availability of the Linguist Qualities feature for the account. Not read anywhere in the current front client/server code — the related selectIsLinguistQualitiesEnabled selector is role-based only and does not consult this setting — so its enforcement point (if still active) is presumably outside this repo.
org
autoTriggerAssignment
Admin CLI
Org-level toggle that allows automatic assignment (AA) to be triggered immediately when a job transitions to “Ready to Start”, rather than waiting for the next scheduled AA run. Read by the client’s autoAssignmentTrigger utility.
org
enableAutoAssignment
Admin CLI
Org-level toggle historically intended to enable automatic assignment of work to linguists. The underlying setting key was deleted outright by a later migration (remove-enable-auto-assign-setting) and no current front-end or server code path reads it, so treat it as reserved/removed.
org
enableCustomerReviewerDomainAssignment
Admin CLI
Org-level toggle allowing domains (not just individual users) to be assigned as the customer reviewer on projects/jobs. Read by useEnableCustomerReviewerDomainAssignment to gate the relevant assignment UI in job creation and account/member forms.
org
enableDomains
Admin CLI
Org-level toggle for the Domains feature. Gates access-control and UI surfaces (e.g. the Domains admin page, model/memory domain scoping, domain-based job access checks) that let an org partition users, memories, and models by domain.
org
enableExperts
Admin CLI
Org-level toggle for the Experts feature. When enabled, an “Experts” tab is surfaced in Manage Users (for users with the TeamsWrite permission) and in the account profile page, exposing expert-role management UI that is otherwise hidden.
org
enableNewLinguistPage
Admin CLI
Org-level toggle historically intended to enable a redesigned linguist homepage/landing page. No current front-end or server code path reads this setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
fullNameMandatory
Admin CLI
Requires a user to have their full name set on their account profile. Read by the MandatoryAccountInformationModal, which forces the user to fill in their full name (via a blocking modal) after login when this is enabled and the field is still unset.
project
jobInstructionsEmailTemplate
Org Settings UI
Free-text/HTML instructions template configured per job and shown to linguists on the job’s instructions page/form (client/reactApp/containers/Jobs/Detail/Settings/JobInstructions), fetched via getJobInstructions/getInstructionsImpl which read it from the job’s own settings scope (distinct from the org-level OrganizationInstructionsEmailTemplate and the project-level ProjectInstructionsEmailTemplate, all three of which are surfaced together on the instructions view). Saved via saveJobInstructions.
org
limitAssignmentsToOnboardedUsers
Org Settings UI
Org-level toggle that restricts automatic assignment (AA) so that only onboarded users are eligible candidates; users who have not completed onboarding are excluded from AA candidate pools. Surfaced in the org’s Assignment settings card alongside AutoTriggerAssignment.
org
linguistAvailabilityToggle
Org Settings UI
Controls whether a user’s Linguist Availability preferences are exposed on their Account Profile page. Read via useLinguistPreferencesEnabled, which requires both this setting and the (role-based) Linguist Qualities eligibility check to be true before showing the preferences UI (AccountProfileForm).
org
organizationInstructionsEmailTemplate
Org Settings UI
Free-text/HTML instructions template configured at the organization level and shown to linguists on job/project instruction pages (ProjectInstructions, getJobInstructions). Distinct from the per-project ProjectInstructionsEmailTemplate; both are rendered together on the instructions view. Editable via SettingEmailTemplate and listed in assignmentSettingKeys for the org’s Assignment settings tab.
org
organizationTrainingRequired
Admin CLI
Org-level boolean flag (isUserFacing: true at creation) whose name implies gating on completed linguist/organization training. Not read anywhere in the current front client/server code, so its enforcement point (if still active) is presumably outside this repo.
project
projectInstructionsEmailTemplate
Org Settings UI
Free-text/HTML instructions template configured per project and shown to linguists alongside the org-level OrganizationInstructionsEmailTemplate on job/project instruction pages (ProjectInstructions, getJobInstructions). Read/written through the project-scoped settings service (not an org default with override — this setting only exists at the project level) and editable via the project’s Workflow Settings form (SettingEmailTemplate).
org
timezoneMandatory
Admin CLI
Requires a user to have their timezone set on their account profile. Read by the MandatoryAccountInformationModal, which forces the user to select a timezone (via a blocking modal) after login when this is enabled and the field is still unset.
org
userCreateLimit
Admin CLI
Numeric cap intended to separately limit how many users with create.write permissions (e.g. Manager-type roles) an org can add, distinct from the overall UserLimit. Added alongside UserLimit by the add-user-and-create-limits migration and still exercised by addMember.spec.ts (which shows Administrator-role adds as exempt from it), but the current addMember.ts implementation only reads UserLimit — no production code path was found constructing a getSettingKeyInfo(UserCreateLimit) lookup, suggesting the check was refactored away without the test being updated.
org
userDomainsPreferences
API
Per-user JSON preferences for the Domains feature (currently just a defaultDomainId), edited from the Account Profile page and used to pre-select the user’s default domain in domain-scoped UI.
org
userLanguagePreference
API
Per-user preferred UI/content language, stored as a string setting (default "en-US") on the user’s account. Read/written from the Account Profile page and used when rendering the user’s own settings.
org
userLimit
Admin CLI
Numeric cap on the total number of active (non-@lilt.com) members an org may have. Enforced in addMember’s controller: the invite is rejected once the non-Lilt-employee member count reaches this value, unless the value is negative, which is treated as unlimited seats (hasInfinitelyManySeats).

Misc

org
availableAgentTools
Org Settings UI
Org-level setting listing which Enterprise Agent tools (translate, termbase, create, analyze) are available to the org’s AI Assistant. Edited via a multi-select dropdown in the General Settings tab (AvailableAgentTools custom setting).
org
defaultHomepage
Admin CLI
Selects which page (per HomepageOptions, e.g. PLATFORM) a role’s members land on after login. Read client-side via the useDefaultHomepage hook (falling back to HomepageOptions.PLATFORM when unset) and exposed on MemberRole.homepage via the organization GraphQL mapper; settable per role through organizationRoleOperations.ts.
org
enableAgentHomepage
Admin CLI
Org-level toggle that switches the app’s default landing page to the Enterprise Agent homepage. Read by the navigation sidebar and the Homepage container to decide which home experience to render.
org
enableAIAssistant
Admin CLI
Org-level toggle that enables the AI Assistant. When enabled (and combined with the enableAIAssistant feature toggle), it surfaces the AI Assistant entry point in the navigation sidebar.
org
enableGeneratedContentServiceSelection
Admin CLI
Org-level toggle historically intended to enable selection between generated-content services (introduced alongside the enableLiltCreate setting). No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableHomePage
Admin CLI
Org-level toggle historically intended to enable a dedicated Home Page experience. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
enableOrgSettingsView
Admin CLI
Legacy org-level toggle historically intended to control visibility of an organization settings view. It no longer appears in any production route or component — the remaining references are on-prem default-value migrations and settings-framework unit tests that use it as a generic example setting key.
org
enablePlatformRedesign
Admin CLI
Org-level toggle historically intended to enable a platform-wide UI redesign. No current front-end or server code path reads this setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
enableProjectSettingsView
Admin CLI
Org-level toggle historically intended to gate visibility of a project settings view/page. No current front-end or server code path reads this setting outside of the on-prem default-value migrations, so treat it as reserved/likely inert until a live consumer is found.
org
enableSplitSettingsPage
Admin CLI
Org-level toggle historically intended to enable a split/restructured organization settings page. No current front-end or server code path reads this setting outside of the on-prem default-value migration, so treat it as reserved/likely inert until a live consumer is found.
org
navigationLayoutMode
Admin CLI
Selects which navigation layout (e.g. the legacy default vs. the newer “platform” layout) a role’s members see, per NavigationLayoutModes. Exposed on MemberRole.navigationLayout via the organization GraphQL mapper (roleSettingStringValue) alongside DefaultHomepage, and can be set per role (e.g. set-navigationLayoutMode-agency-translator migration).
org
ALLOW_INCOMPATIBLE_BROWSERS
Environment Variable
Allows users on unsupported/incompatible browsers to access the platform instead of being blocked.