robots-lllm-manager is a Strapi plugin designed to help you automatically generate and manage robots.txt files and LLM (Large Language Model). It enables flexible control over web crawling rules and advanced AI-powered content processing within your Strapi project.
- Automatically generate and manage
robots.txtfiles. - Integrate with Large Language Models (LLM) for enhanced content processing.
- Configure crawling rules and AI settings directly from Strapi.
- Full support via Strapi admin UI.
In your Strapi project folder, run:
npm install robots-lllm-manager
# or
yarn add robots-lllm-managerThen build the plugin:
npm run build
# or
yarn buildRestart Strapi:
npm run develop
# or
yarn developAfter installation, a new section Robots LLLM Manager will appear in the Strapi admin panel.
You can:
- Configure and generate
robots.txtrules. - Set up LLM integration parameters.
- Manage and test settings directly from the admin panel.
module.exports = {
"robots-lllm-manager": {
robots: {
sitemap: "https://example.com/sitemap.xml",
},
}
};Generate and update robots.txt directly from Strapi admin UI, or trigger LLM processing programmatically:
await strapi.plugin('robots-lllm-manager').service('robots').generate();
await strapi.plugin('robots-lllm-manager').service('llm').process("Your input text");For questions or issues, please open a ticket in the repository:
https://s///issues
MIT © makolab