mirror of
https://github.com/hwchase17/langchain
synced 2024-11-18 09:25:54 +00:00
8 lines
205 B
JavaScript
8 lines
205 B
JavaScript
// Sorry py folks, gotta be js for this one
|
|
const { checkBrokenLinks } = require("@langchain/scripts/check_broken_links");
|
|
|
|
checkBrokenLinks("docs", {
|
|
timeout: 10000,
|
|
whitelist: ["microsoft.com"],
|
|
});
|