🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
🪟 Windows TippsSetting up live captions stuck in Windows 11(14.09.2026 um 16:31 Uhr)
🕵️ SicherheitslückenBurn Out, Or Fade Away(14.09.2026 um 14:25 Uhr)
🪟 Windows TippsWindows 11's latest update broke my speakers, and I'm not alone(14.09.2026 um 18:54 Uhr)
🪟 Windows TippsThe Gemini desktop app is now available for Windows(11.09.2026 um 17:06 Uhr)
🪟 Windows TippsSetting up live captions stuck in Windows 11(14.09.2026 um 16:31 Uhr)
🕵️ SicherheitslückenBurn Out, Or Fade Away(14.09.2026 um 14:25 Uhr)
🪟 Windows TippsWindows 11's latest update broke my speakers, and I'm not alone(14.09.2026 um 18:54 Uhr)

🔧 Programmierung 🕛 vor 2 Jahren 4 Min Lesezeit
0

How to translate content programmatically using AI and TransformersPHP

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

In this article, I'll show you how to translate content programmatically with PHP using the TransformersPHP library.

Translating text is essential for reaching a global audience and ensuring your content is accessible to speakers of different languages.





Step 1: Set up the project



To get started, please make sure you have the TransformersPHP library installed. You can install it via Composer by running:




CODE
composer require codewithkyrian/transformers






During the installation, you have to answer a question:




CODE
Do you trust "codewithkyrian/transformers-libsloader" to execute code and wish to enable it now? (writes "allow-plugins" to composer.json) [y,n,d,?]






You'll need to answer yes to enable the Composer plugin to download all shared libraries necessary for TransformersPHP.



Once installed, require the autoload file to load all necessary classes and dependencies:




CODE
<?php
require "./vendor/autoload.php";









Step 2: Import the necessary classes



Next, you’ll need to import the relevant classes and functions that handle translation:




CODE
use Codewithkyrian\Transformers\Transformers;
use function Codewithkyrian\Transformers\Pipelines\pipeline;








  • Transformers: This class manages the setup and configuration for translation models.


  • pipeline: This function initializes your specific translation pipeline.






Step 3: Initialize the Transformers class



Before translating content, you must configure the Transformers class:




CODE
Transformers::setup()->setCacheDir("./models")->apply();








  • setCacheDir(): This method defines the directory for caching models, which speeds up the process by avoiding repeated downloads.


  • apply(): Finalizes the setup and applies the configuration.






Step 4: Set Up the Translation Pipeline



The next step is to create a pipeline for translation using a pre-trained model:




CODE
$translationPipeline = pipeline("translation", 'Xenova/nllb-200-distilled-600M');








  • pipeline("translation", 'Xenova/nllb-200-distilled-600M'): This function sets up a translation pipeline using the specified model, Xenova/nllb-200-distilled-600M, which is capable of handling multiple languages efficiently.




The model used for translations in this example is



In the first execution of the script, the pipeline() function will download all the model files into the directory: models/Xenova/nllb-200-distilled-600M. Be patient, the model is huge, more than 800 MB.






Conclusion



With TransformersPHP, translating content programmatically is a streamlined process. By setting up the environment, initializing the necessary classes, and defining a translation pipeline, you can easily convert text from one language to another. This is particularly useful for creating multilingual websites, applications, or content, allowing you to reach a broader audience effectively.






References




  • TransformersPHP website:

  • Intro article about TransformersPHP:

  • TransformersPHP official documentation: , thank you for all your effort in building this open source PHP project ✨

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
The Gemini desktop app is now available for Windows
1 Quelle
Setting up live captions stuck in Windows 11
1 Quelle
Burn Out, Or Fade Away
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten How to translate content programmatically using AI and TransformersPHP

Thematisch verwandte Begriffe: translate, content, programmatically, using · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...