LT Pipelines
Overview of all 7 Language Technology pipelines for transcription, translation, OCR, language identification, and entity detection.
LT (Language Technology) pipelines automate text and speech processing tasks on your files. Unlike Verification Pipelines, which produce an authenticity verdict, LT pipelines extract or transform content — returning transcripts, translations, detected languages, named entities, or extracted text.
Each pipeline runs on one file at a time. Results are stored as structured JSON on the run record and can be retrieved via the API or viewed inline in the platform.
Available Pipelines
| Pipeline | Slug | Modality | Cost | Est. Time | Required Context |
|---|---|---|---|---|---|
| Audio Transcription | lt-transcription | Audio, Video | 250 credits | ~3 min | — |
| Text Translation | lt-translation | Text | 200 credits | ~2 min | target_language |
| OCR — Images & PDFs | lt-ocr | Image, Document | 200 credits | ~3 min | — |
| Language ID — Text | lt-language-id-text | Text | 100 credits | ~1 min | — |
| Language ID — Audio | lt-language-id-audio | Audio | 200 credits | ~2 min | — |
| Entity Detection — Text | lt-entity-detection-text | Text | 150 credits | ~2 min | — |
| Entity Detection — Audio | lt-entity-detection-audio | Audio | 350 credits | ~5 min | — |
How to Trigger a Pipeline
You can run an LT pipeline from the platform UI or via the API.
From the Platform
Open a project or dataset version, navigate to the LT Pipelines tab, select a pipeline, pick the files to process, fill in any required context fields, and click Run.
Via the API
On a project:
POST /v2/lt-pipelines/project/{projectId}/run{
"pipelineSlug": "lt-transcription",
"fileIds": ["file_abc123"],
"contextData": {}
}On a dataset version:
POST /v2/lt-pipelines/dataset/{datasetId}/versions/{versionId}/run{
"pipelineSlug": "lt-translation",
"contextData": { "target_language": "English" }
}The dataset endpoint runs the pipeline on every file in the version automatically. Both endpoints return a runIds array — one ID per file.
Checking Results
Poll or fetch a single run:
GET /v2/lt-pipelines/runs/{runId}List all runs for a project:
GET /v2/lt-pipelines/project/{projectId}/runsYou can filter by status (pending, running, completed, failed) as a query parameter.
Pipeline Pages
Audio Transcription
Transcribe audio and video files to text with segment-level timestamps using Whisper.
Text Translation
Translate text files into any target language using an LLM.
OCR — Images & PDFs
Extract text from images and PDFs. Uses pdftotext for digital PDFs and a vision model for scanned documents.
Language Identification
Detect the language(s) present in text files or spoken in audio files.
Entity Detection
Extract named entities — persons, organizations, locations, dates, events — from text or audio.
How is this guide?
Cross-Modal Multimedia Consistency
Multi-file AI analysis and crowd cross-reference to verify consistency across related images, videos, and audio files.
Audio Transcription
Transcribe audio and video files to text with segment-level timestamps using Whisper.