Skip to content

Commit 07bc765

Browse files
aaronpowellCopilot
andauthored
Update eng/generate-website-data.mjs
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent dc1b933 commit 07bc765

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

eng/generate-website-data.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,11 @@ async function main() {
898898

899899
// Generate llms.txt
900900
const llmsTxtContent = generateLlmsTxt(agents, prompts, instructions, skills);
901-
fs.writeFileSync(path.join(WEBSITE_DATA_DIR, "llms.txt"), llmsTxtContent, "utf8");
901+
fs.writeFileSync(
902+
path.join(ROOT_FOLDER, "website", "public", "llms.txt"),
903+
llmsTxtContent,
904+
"utf8"
905+
);
902906
console.log(`✓ llms.txt generated with ${agents.length} agents, ${prompts.length} prompts, ${instructions.length} instructions, ${skills.length} skills`);
903907
}
904908

0 commit comments

Comments
 (0)