Jitone AI Pro
Add AI features to your Filament forms.
Author:
Jitendriya Tripathy
Documentation
Elevate your FilamentPHP projects with JitoneAi Pro — a thoughtfully crafted AI-powered add-on built to simplify and enrich your form-driven workflows. Whether you're a developer building scalable applications, a content creator refining digital assets, or a business owner seeking operational efficiency, JitoneAi Pro brings the power of AI directly into your Filament forms — making content creation, SEO refinement, transcription, text-to-audio conversion, and AI-generated images intuitive and seamless.
Packed with over 25 ready-to-use AI templates, smart content editing tools, and native integration with OpenAI APIs, JitoneAi Pro enables you to generate, enhance, and fine-tune content effortlessly. Need to craft compelling meta descriptions? Convert speech to text or text to voice? Generate original images? It's all just a few clicks away — no switching tools, no extra setup.
Built for flexibility, JitoneAi Pro lets you upgrade any existing form field with intelligent AI capabilities or introduce dedicated fields for highly specific needs. Whether it's guided text inputs, auto-generated visuals, or audio interactions, the experience is smooth, efficient, and fully embedded in your Laravel ecosystem.
Try JitoneAi Pro and feel the difference — AI that works where you build.
Limited-Time Offer:
For a short time, you can get 20% off your purchase by using the coupon code SAVEPRO at checkout. This offer is only available for a limited period.
#Key Features

#AI-Powered Content Generation
Effortlessly generate high-quality text content using over 25+ AI-powered templates tailored for different use cases, including blog writing, social media posts, product descriptions, email drafts, and more. Customize the tone, style, and length of the generated content to suit your specific needs. Whether you need long-form articles or short, engaging snippets, JitoneAi Pro delivers fast and accurate AI-generated text directly within your FilamentPHP forms.

#AI Image Generator
Transform text descriptions into stunning visuals with the built-in AI image generator. With 25+ pre-defined templates designed for different use cases, you can generate unique and professional-quality images for blog posts, advertisements, product showcases, and social media content. Simply input a text prompt, select an image size, and let AI create the perfect visual for your project.

#AI-Powered Audio Transcription
Convert uploaded audio files into accurate, structured text in seconds. JitoneAi Pro’s transcription feature supports various audio formats and uses AI-driven speech recognition to deliver precise transcriptions. This is ideal for podcasters, content creators, and professionals who need to convert interviews, meetings, or lectures into editable text without manual effort.

#Text-to-Audio Conversion
Transform written content into natural-sounding AI-generated speech. Whether you need to create voiceovers for videos, audiobooks, or accessibility features, JitoneAi Pro’s text-to-audio conversion tool provides high-quality AI voices that bring your content to life. Select from different voice styles and languages to match your brand’s tone and audience preferences.
#Advanced Text Modification Tools
Enhance your written content with a powerful set of AI-driven text transformation tools. Modify, refine, expand, shorten, summarize, translate, or correct grammar with a single click. This feature allows users to optimize existing content for readability, SEO, or engagement. Whether you need to rephrase text to improve clarity or simplify complex sentences, JitoneAi Pro ensures your content is polished and professional.
#SEO Meta Description Generator
Automatically generate SEO-friendly meta descriptions for web pages, blog posts, and product listings. By analyzing your content, JitoneAi Pro crafts compelling and keyword-rich descriptions that improve search engine visibility and click-through rates. Save time on manual meta tag writing and let AI generate optimized descriptions that align with best SEO practices.
These features collectively empower developers, marketers, and content creators to seamlessly integrate AI into their FilamentPHP applications, making content creation, optimization, and automation more efficient than ever.
#About the License
JitoneAi Pro offers a one-time payment with lifetime updates and priority support. It can be used on unlimited domains, making it the perfect choice for developers, marketers, and creators looking to elevate their digital projects with cutting-edge AI technology.
#How to Use
After successful installation, you can start adding AI functionality to your FilamentPHP forms. Refer to our comprehensive user guide for detailed instructions on leveraging each feature of JitoneAi Pro in your projects.
#Installation
- After purchase, you will receive the package as a zip file via email or can download it instantly.
- Once downloaded, create a Packages folder in the root directory of your Laravel project.
- Extract the zip file and paste the jiten14 folder from the downloaded zip into the Packages folder.
- Update your root composer.json file by adding the following repository configuration:
"repositories": [ { "type": "path", "url": "packages/jiten14/jitoneai-pro" } ] - Run the following command in your project's root directory terminal to install the package:
composer require jiten14/jitoneai-pro:1.0.0 - After installation, set up the package by running:
jitoneai-pro:install - When prompted, provide your purchased email, license key (sent via email), and domain name (or project name if installing locally).
#Usage
#Configuration
The installation command will:
- Publish the configuration file for JitoneAI Pro Settings
- Publish the configuration file for openai-php/laravel Settings
- Create a symbolic link for storage
We use openai-php/laravel package to connect with OpenAI API. Blank environment variables for the OpenAI API key and organization id are already appended to your .env file, Add your API key here:
OPENAI_API_KEY=sk-...
OPENAI_ORGANIZATION=org-...
The config/jitoneai-pro.php file allows you to set default values and templates:
- Set default AI models, max tokens, and temperature
- Configure image generation settings
- Add custom content templates with category & placeholder
#Adding AI to Built-in Filament Form Fields
You can add AI generation capabilities to TextInput, Textarea, and RichEditor fields using the withAI() method:
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\RichEditor;
TextInput::make('title')
->withAI()
Textarea::make('description')
->withAI()
RichEditor::make('content')
->withAI()
#Using Dedicated AI Fields
#AITextField
Without Options:
use Jiten14\JitoneAiPro\Forms\Components\AITextField;
AITextField::make('content')->withAI()
With Options:
AITextField::make('content')
->withAI([
'model' => 'gpt-4',
'max_tokens' => 300,
'temperature' => 0.6,
])
#AIFileUpload for Image Generation
Without Options:
use Jiten14\JitoneAiPro\Forms\Components\AIFileUpload;
AIFileUpload::make('image')
->imageAI()
With Options:
AIFileUpload::make('image')
->imageAI([
'size' => '1024x1024',
])
#Additional AI-Enabled Fields
#TextInput with AI Optimization
use Filament\Forms\Components\TextInput;
TextInput::make('title')
->withAI([
'optimize' => true,
])
->required()
#AIAudio for Audio Processing
use Jiten14\JitoneAiPro\Forms\Components\AIAudio;
AIAudio::make('audio')
->label('Audio File')
->withAI([
'reference_field' => 'description',
])
->columnSpanFull()
#AIMeta for SEO Optimization
use Jiten14\JitoneAiPro\Forms\Components\AIMeta;
AIMeta::make('seo_meta')
->label('Meta Description')
->withAI([
'reference_field' => 'description',
])
->required()
->columnSpanFull()
#Usage for End-Users
#Generating Content
- In a form with AI-enabled fields, users will see a "Generate with AI" link right upper to the field.
- Clicking this link opens a modal where users can:
- Enter a custom prompt
- Choose from pre-defined templates (if configured)
- Use existing content for modification
- If modifying existing content, users can choose to:
- Refine: Improve the existing text
- Expand: Add more details to the existing text
- Shorten: Summarize the existing text
- After entering the prompt, selecting a template, or choosing a modification option, click "Generate" to create or modify the content.
- The generated or modified content will be inserted into the form field.
#Generating Images
- For fields with AI image generation, users will see a "Generate with AI" link right upper to the upload field.
- Clicking this link opens a modal where users can:
- Describe the image they want to generate
- Choose from pre-defined image prompts (if configured)
- Select the desired image size (if multiple options are provided)
- After entering the description, selecting a template, and choosing the size, click "Generate" to create the image.
- The generated image will be uploaded and associated with the form field.
#Additional Features
-
Transcribe Function: End users can transcribe audio to text.
- Upload audio in the modal
- Get AI-generated text in the concerned field
-
Modify Existing Text: Users can perform various modifications on existing text:
- Translate
- Summarize
- Correct Grammar
- Optimize
-
Convert Text to Audio: Users can convert written text into audio format.
-
SEO Meta Description: Users can generate SEO meta descriptions from long-form content.
#🚀 Upcoming Enhancements — What’s Next for JitoneAi Pro
We’re continuously improving JitoneAi Pro to deliver even more flexibility and power to your FilamentPHP applications. Here’s a glimpse of what’s coming in the next update:
- Multi-Model AI Support (Coming Soon)
Developers will be able to configure and switch between multiple AI platforms such as Grok AI, Claude (Anthropic), Gemini AI, and others.- Selection will be easily managed via the package’s
configfile - Enables you to leverage different AI models based on your project's specific needs
- Selection will be easily managed via the package’s
Stay tuned — these updates are designed to give you greater control, enhanced performance, and more choice in how you build with AI.
#How to Buy
Ready to integrate AI into your Laravel workflows? Simply click the Buy for $49 button at the top of this page — you’ll be redirected to our secure LemonSqueezy checkout. Once your one-time payment is completed, you’ll instantly receive the downloadable ZIP package via email. From there, follow the "How to Use" section to install and activate JitoneAi Pro in your project. It’s fast, simple, and powerful.
#Limited-Time Offer:
For a short time, you can get 20% off your purchase by using the coupon code SAVEPRO at checkout. This offer is only available for a limited period.
#Support
After activation of your license through above installation steps, your user account will be created automatically & you can login with your email (added during purchase) & password is your license key (You can change password, after 1st login) & create support ticket.
Additionally, if you are facing issues with installation or have presale questions, send an email to support@jiten.one.
The author
Jitendriya Tripathy is a Web Application Developer with over 6 years of experience specializing in Laravel, Vue.js, and modern web technologies like Inertia.js, HTML5, CSS3, and JavaScript. He has a deep understanding of both Laravel 10 and 11 and enjoys building packages and web applications, particularly within the Laravel and Filament ecosystems. Jitendriya is passionate about creating robust, scalable solutions and sharing his knowledge with the developer community. He believes in putting dedication and creativity into every project he works on.
From the same author
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese