TB
How to implement llms.txt for your Laravel site?
I noticed mejba.me has a /llms.txt endpoint and thought it was a great idea. For those who do not know, llms.txt is a way to provide context to AI crawlers about your site, similar to robots.txt but for LLMs.
I want to implement something similar for my Laravel blog. My questions:
1. What information should go in llms.txt?
2. Should it be a static file or dynamically generated from your database?
3. Is there a standard format or specification to follow?
4. How do you handle it for sites with frequently changing content?
Would appreciate any guidance from people who have implemented this.