tomatophp/filament-translations-gpt

Translations Manager extension to use ChatGPT openAI to auto translate your __(), trans() fn
7,407 29
Install
composer require tomatophp/filament-translations-gpt
Latest Version:5.0.0
PHP:^8.2
License:MIT
Last Updated:Sep 14, 2026
Links: GitHub  ·  Packagist
Maintainer: fadymondy

Screenshot

Filament Translations GPT

Dependabot Updates PHP Code Styling Tests Latest Stable Version License Downloads

Translations Manager extension to use ChatGPT openAI to auto translate your __(), trans() fn

Version Compatibility

Plugin Filament Laravel PHP
1.x 3.x 10.x / 11.x 8.1+
4.x (v4 branch) 4.x 11.x / 12.x 8.2+
5.x 5.x 12.x / 13.x 8.2+

Screenshots

GPT Action GPT Modal

Installation

before install this package you need to have Translation Manager installed and configured

composer require tomatophp/filament-translations-gpt

after install your package please run this command

php artisan filament-translations-gpt:install

finally register the plugin on /app/Providers/Filament/AdminPanelProvider.php

->plugin(\TomatoPHP\FilamentTranslationsGpt\FilamentTranslationsGptPlugin::make())

Usage

now you need to add the following to your .env file:

OPENAI_API_KEY=
OPENAI_ORGANIZATION=
# optional
OPENAI_MODEL=gpt-4o-mini
OPENAI_BASE_URL=https://api.openai.com/v1

Any OpenAI compatible chat completions API works, for example Groq:

OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_MODEL=llama-3.1-8b-instant

now you need to clear you cache

php artisan config:clear

Click the GPT button on the translations page and pick a language. A queued job sends the English text of your translations to the API in chunks (chunk_size in the config, 50 by default), saves the answers and notifies you when it is done. Run a queue worker (php artisan queue:work) for the job to run. Words prefixed with : are kept as placeholders.

Without OPENAI_API_KEY nothing is sent: the job only notifies you that the key is missing. If the API answers with an error, you are notified and the job fails.

The action follows the translation policy of the Translation Manager: it needs the create ability.

Publish Assets

you can publish config file by use this command

php artisan vendor:publish --tag="filament-translations-gpt-config"

you can publish languages file by use this command

php artisan vendor:publish --tag="filament-translations-gpt-lang"

Testing

if you like to run PEST testing just use this command

composer test

Code Style

if you like to fix the code style just use this command

composer format

PHPStan

if you like to check the code by PHPStan just use this command

composer analyse

Other Filament Packages

Checkout our Awesome TomatoPHP

Related Packages

tomatophp/filament-logger

Log all user activity to file or log driver and preview it on your FilamentPHP p...

2,379 15
tomatophp/filament-types

Manage any type on your app in Database with easy to use Resource for FilamentPH...

20,452 58
tomatophp/filament-translation-component

Translation Component as a key/value to use it with Spatie Translatable Filament...

76,608 5
tomatophp/filament-discord

Send Notification to discord channel Webhook using native FilamentPHP Notificati...

3,166 2