plasticstudio / silverstripe-seo-ai
AI-powered SEO extension for Silverstripe CMS
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:silverstripe-vendormodule
Requires
Requires (Dev)
README
This module extends Silverstripe SEO to allow users to generate SEO tags with the OpenAI API.
Installation
composer require "plasticstudio/silverstripe-seo-ai"
Setting Up
After installing the module, configure the API and model / temperature settings via YAML.
Any model with text input / output on OpenAI's Platform will work, GPT-4o Mini is the default (recommended).
app/_config/seo-ai.yml
--- Name: silverstripe-seo-ai --- SilverStripe\Core\Injector\Injector: PlasticStudio\SEOAI\Extensions\SeoAICMSPageEditControllerExtension: properties: openaiKey: "`OPENAI_API_KEY`" model: "gpt-4o-mini" temperature: 0
Usage
Currently this module generates tags for the fields "Meta Title" and "Meta Description".
To generate tags, navigate to the page you'd like to generate tags for and click "Generate SEO Tags" in the "Page SEO Settings" section.
Once this process has completed, publish the page as you would normally.