File size: 1,493 Bytes
0070fce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
function fetchLicense(id, url) {
fetch(url).then((response) => {
response.text().then(
licenseText => document.getElementById(id).textContent = licenseText
);
})
}
function populateLicense() {
const pairs = [
["sd1", "https://raw.githubusercontent.com/Stability-AI/stablediffusion/main/LICENSE"],
["sdxl", "https://raw.githubusercontent.com/Stability-AI/generative-models/main/LICENSE-CODE"],
["comfy", "https://raw.githubusercontent.com/comfyanonymous/ComfyUI/master/LICENSE"],
["chain", "https://raw.githubusercontent.com/chaiNNer-org/chaiNNer/main/LICENSE"],
["tfm", "https://raw.githubusercontent.com/huggingface/transformers/main/LICENSE"],
["dot", "https://raw.githubusercontent.com/huggingface/diffusers/main/LICENSE"],
["invoke", "https://raw.githubusercontent.com/invoke-ai/InvokeAI/main/LICENSE"],
["mem", "https://raw.githubusercontent.com/AminRezaei0x443/memory-efficient-attention/main/LICENSE"],
["ctfm", "https://raw.githubusercontent.com/explosion/curated-transformers/main/LICENSE"],
["taesd", "https://raw.githubusercontent.com/madebyollin/taesd/main/LICENSE"],
["ldsr", "https://raw.githubusercontent.com/hafiidz/latent-diffusion/main/LICENSE"],
["clip", "https://raw.githubusercontent.com/pharmapsychotic/clip-interrogator/main/LICENSE"],
];
for (const [id, url] of pairs)
fetchLicense(`${id}-license-content`, url);
}
|