A Laravel-based platform that generates content using AI. Users can input a prompt, select tone, language, and word count, then get AI-generated content instantly. Supports both OpenAI GPT API and a local fallback generator.
git clone https://github.com/makdia/ai-content-generator.git
cd content-generator
composer install
npm install
npm run dev
cp .env.example .env
php artisan key:generate
php artisan migrate
php artisan serve
Navigate to http://localhost:8000
Enter your prompt in the input field.
Click Generate to create AI-generated content.
Update your .env file with:
OPENAI_API_KEY=your_api_key_here
Input: "Write a product description for a smart fitness watch"
Output: "Stay ahead of your fitness goals with our sleek Smart Fitness Watch – track your heart rate, steps, and sleep patterns with precision..."
