community_icon_html = """""" loading_icon_html = """""" share_js = """async () => { async function uploadFile(file){ const UPLOAD_URL = 'https://huggingface.co/uploads'; console.log(file.type) const response = await fetch(UPLOAD_URL, { method: 'POST', headers: { 'Content-Type': file.type, 'X-Requested-With': 'XMLHttpRequest', }, body: file, /// <- File inherits from Blob }); const url = await response.text(); return url; } async function getInputImgFile(imgEl){ const res = await fetch(imgEl.src); const blob = await res.blob(); const imgId = Date.now() % 200; const isPng = imgEl.src.startsWith(`data:image/png`); const isWebp = imgEl.src.startsWith(`data:;`) || imgEl.src.startsWith(`data:image/webp`); if(isPng){ const fileName = `sd-perception-${{imgId}}.png`; return new File([blob], fileName, { type: 'image/png' }); }else if(isWebp){ const fileName = `sd-perception-${{imgId}}.webp`; return new File([blob], fileName, { type: 'image/webp' }); }else{ const fileName = `sd-perception-${{imgId}}.jpg`; return new File([blob], fileName, { type: 'image/jpeg' }); } } const gradioEl = document.querySelector("gradio-app").shadowRoot || document.querySelector('body > gradio-app'); const randomLoRA_1 = gradioEl.querySelector('#randomLoRA_1 img'); const randomLoRA_1_title = gradioEl.querySelector('#randomLoRA_1 [data-testid="block-label"]').innerText const randomLoRA_1_id = gradioEl.querySelector('#random_lora_1_id textarea').value const randomLoRA_2 = gradioEl.querySelector('#randomLoRA_2 img') const randomLoRA_2_title = gradioEl.querySelector('#randomLoRA_2 [data-testid="block-label"]').innerText const randomLoRA_2_id = gradioEl.querySelector('#random_lora_1_id textarea').value const prompt = gradioEl.querySelector('#prompt textarea').value const outputImgEl = gradioEl.querySelector('#output_image img'); const shareBtnEl = gradioEl.querySelector('#share-btn'); const shareIconEl = gradioEl.querySelector('#share-btn-share-icon'); const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon'); shareBtnEl.style.pointerEvents = 'none'; shareIconEl.style.display = 'none'; loadingIconEl.style.removeProperty('display'); const outputFile = await getInputImgFile(outputImgEl); const urlOutputImg = await uploadFile(outputFile); const inputLoRA_1 = await getInputImgFile(randomLoRA_1); const urlLoRA1 = await uploadFile(inputLoRA_1); const inputLoRA_2 = await getInputImgFile(randomLoRA_2); const urlLoRA2 = await uploadFile(inputLoRA_2); const descriptionMd = `### Prompt ${prompt} #### Generated Image: | [${randomLoRA_1_title}](https://huggingface.co/${randomLoRA_1_id}) | | [${randomLoRA_2_title}](https://huggingface.co/${randomLoRA_1_id}) | |---------|-----------|---------| | ${randomLoRA_1_title} | + | ${randomLoRA_2_title} | `; console.log(descriptionMd) const params = new URLSearchParams({ title: prompt, description: descriptionMd, preview: true }); const paramsStr = params.toString(); window.open(`https://huggingface.co/spaces/multimodalart/lora-roulette/discussions/new?${paramsStr}`, '_blank'); shareBtnEl.style.removeProperty('pointer-events'); shareIconEl.style.removeProperty('display'); loadingIconEl.style.display = 'none'; }"""