diff --git a/docs/.vitepress/theme/components/Demo.vue b/docs/.vitepress/theme/components/Demo.vue index a0edcd4..1d4cb0b 100644 --- a/docs/.vitepress/theme/components/Demo.vue +++ b/docs/.vitepress/theme/components/Demo.vue @@ -37,7 +37,7 @@ onMounted(() => { JSON.stringify({ success: true, token: "", - expires: new Date().getTime() + 1000 * 60, + expires: new Date().getTime() + 3600000, }), { status: 200, diff --git a/docs/guide/index.md b/docs/guide/index.md index 0750365..5233098 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -218,3 +218,8 @@ await cap.validateToken("..."); // returns { success: Boolean } ``` Note that the token will immediately be deleted after this. To prevent this, use `await cap.validateToken("...", { keepToken: true })`. + + +## LLMs + +You can use this documentaton's [llms.txt](/llms.txt) or [llms-full.txt](/llms-full.txt) (~8k tokens) to give to LLMs. Note that Cap is **not "vibe-coded"** \ No newline at end of file