{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== '免费Z-image图片生成' && linkText !== '免费Z-image图片生成' ) { link.textContent = '免费Z-image图片生成'; link.href = 'https://zimage.run'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== 'Vibevoice' ) { link.textContent = 'Vibevoice'; link.href = 'https://vibevoice.info/'; replacedLinks.add(link); } // 替换Pricing链接 - 仅替换一次 else if ( (linkHref.includes('/pricing') || linkHref === '/pricing' || linkText === 'Pricing' || linkText.match(/^s*Pricings*$/i)) && linkText !== '免费去水印' ) { link.textContent = '免费去水印'; link.href = 'https://sora2watermarkremover.net/'; replacedLinks.add(link); } // 替换Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) && linkText !== 'LTX-2' ) { link.textContent = 'LTX-2'; link.href = 'https://ltx-2.run/'; replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, '免费Z-image图片生成'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-st-extra.hf.space","stage":"READY"}]},"title":"St Extra","isLikedByUser":false,"ai_short_description":"Run APIs for various SillyTavern extensions","ai_category":"Other","trendingScore":0,"tags":["docker","region:us"],"featured":false}],"u":{"avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","isPro":false,"fullname":"Arpan das","user":"sca255","orgs":[{"avatarUrl":"https://www.gravatar.com/avatar/69d6eb49fd373e2e373d3eedb9be3f66?d=retro&size=100","fullname":"heaven for cpp quants","name":"cpu-quants-heaven","userRole":"admin","type":"org","isHf":false,"details":"ik_llama.cpp","isEnterprise":false},{"avatarUrl":"https://www.gravatar.com/avatar/4cc04b3872ee4cc094f23d1e1b65ea50?d=retro&size=100","fullname":"roleplay model production heaven ","name":"rp-model-heaven","userRole":"admin","type":"org","isHf":false,"isEnterprise":false}],"signup":{"github":"sca255","homepage":"https://home.arp001.cloudns.ph","twitter":"sca255","details":"anything"},"isHf":false,"isMod":false,"type":"user","theme":"dark"},"upvotes":1,"numFollowers":1,"numFollowingUsers":11,"numFollowingOrgs":6,"numModels":48,"numDatasets":2,"numSpaces":12,"isFollowing":false,"isFollower":false,"sampleFollowers":[{"user":"hsuwill000","fullname":"Hsuwill","type":"user","_id":"6727ec4e02381112159c520c","isPro":false,"avatarUrl":"/avatars/71ff66df5885ed7b49af3b1f62c9f8a6.svg"}],"isWatching":false,"hardwareItems":[],"isIgnored":false,"acceptLanguages":["*"],"showRepoType":"space","filters":{},"repos":[{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"green","colorTo":"blue","createdAt":"2024-10-01T16:03:25.000Z","emoji":"🦎","id":"sca255/codeboxgptpythondemo","lastModified":"2025-12-10T16:43:10.000Z","likes":0,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"PAUSED","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-codeboxgptpythondemo.hf.space","stage":"READY"}]},"title":"Codeboxgptpythondemo","isLikedByUser":false,"originRepo":{"name":"sca255/javabookgptdemo","author":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false}},"ai_short_description":"Generate text using AI with KoboldAI Lite","ai_category":"Text Generation","trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"green","colorTo":"blue","createdAt":"2025-04-07T15:04:20.000Z","emoji":"📉","id":"sca255/depplx","lastModified":"2025-04-07T15:07:15.000Z","likes":0,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-depplx.hf.space","stage":"READY"}]},"title":"Depplx","isLikedByUser":false,"trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"green","colorTo":"gray","createdAt":"2024-09-12T10:15:57.000Z","emoji":"🏃","id":"sca255/fastsdcpu","lastModified":"2024-10-11T15:06:55.000Z","likes":2,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-fastsdcpu.hf.space","stage":"READY"}]},"title":"Fastsdcpu","isLikedByUser":false,"trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"green","colorTo":"blue","createdAt":"2024-10-02T10:59:32.000Z","emoji":"🦎","id":"sca255/codeboxgptpythonapi","lastModified":"2024-10-02T14:58:01.000Z","likes":0,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"BUILD_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Job failed with exit code: 1. Reason: {\"total\":2,\"completed\":2,\"user_total\":0,\"user_cached\":0,\"user_completed\":0,\"user_cacheable\":0,\"from\":0,\"miss\":0,\"client_duration_ms\":126}\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-codeboxgptpythonapi.hf.space","stage":"READY"}]},"title":"Codeboxgptpythonapi","isLikedByUser":false,"originRepo":{"name":"sca255/codeboxgptpythondemo","author":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false}},"trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"blue","colorTo":"green","createdAt":"2024-09-29T09:27:51.000Z","emoji":"🚀","id":"sca255/flan-t5-java","lastModified":"2024-09-29T09:27:53.000Z","likes":0,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-flan-t5-java.hf.space","stage":"READY"}]},"title":"Flan T5 Java","isLikedByUser":false,"originRepo":{"name":"autotrain-projects/autotrain-advanced","author":{"_id":"64061a8da577649430c0262b","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1678121762792-5fa19f4ba13e063b8b2b5e11.png","fullname":"AutoTrain Projects","name":"autotrain-projects","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":127,"isUserFollowing":false}},"trendingScore":0,"tags":["docker","autotrain","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"gray","colorTo":"purple","createdAt":"2024-08-26T03:58:02.000Z","emoji":"😻","id":"sca255/st-extra","lastModified":"2024-09-23T11:42:01.000Z","likes":0,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Exit code: 1. Reason: sr/local/lib/python3.11/concurrent/futures/thread.py\", line 58, in run\n result = self.fn(*self.args, **self.kwargs)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/_snapshot_download.py\", line 264, in _inner_hf_hub_download\n return hf_hub_download(\n ^^^^^^^^^^^^^^^^\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/utils/_deprecation.py\", line 101, in inner_f\n return f(*args, **kwargs)\n ^^^^^^^^^^^^^^^^^^\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/utils/_validators.py\", line 114, in _inner_fn\n return fn(*args, **kwargs)\n ^^^^^^^^^^^^^^^^^^^\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/file_download.py\", line 1212, in hf_hub_download\n return _hf_hub_download_to_local_dir(\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/file_download.py\", line 1508, in _hf_hub_download_to_local_dir\n _download_to_tmp_and_move(\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/file_download.py\", line 1915, in _download_to_tmp_and_move\n http_get(\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/file_download.py\", line 455, in http_get\n r = _request_wrapper(\n ^^^^^^^^^^^^^^^^^\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/file_download.py\", line 388, in _request_wrapper\n hf_raise_for_status(response)\n File \"/home/user/.local/lib/python3.11/site-packages/huggingface_hub/utils/_http.py\", line 477, in hf_raise_for_status\n raise _format(HfHubHTTPError, str(e), response) from e\nhuggingface_hub.errors.HfHubHTTPError: 504 Server Error: Gateway Time-out for url: https://huggingface.co/OktayAlpk/talking-head-anime-3/resolve/3a8de78578e44284a34fdb435720b1fe71bce9bf/.gitattributes\n\n\n504 Gateway Time-out\n\n

504 Gateway Time-out

\n\n\n","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-st-extra.hf.space","stage":"READY"}]},"title":"St Extra","isLikedByUser":false,"ai_short_description":"Run APIs for various SillyTavern extensions","ai_category":"Other","trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"green","colorTo":"blue","createdAt":"2024-09-30T14:10:53.000Z","emoji":"🦎","id":"sca255/javabookgptdemo","lastModified":"2024-08-29T10:20:18.000Z","likes":0,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-javabookgptdemo.hf.space","stage":"READY"}]},"title":"Javabookgptdemo","isLikedByUser":false,"trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"green","colorTo":"blue","createdAt":"2024-10-03T11:16:58.000Z","emoji":"🦎","id":"sca255/rpbox_coupledemo","lastModified":"2024-08-29T10:20:18.000Z","likes":1,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-rpbox-coupledemo.hf.space","stage":"READY"}]},"title":"Rpbox Coupledemo","isLikedByUser":false,"originRepo":{"name":"sca255/javabookgptdemo","author":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false}},"ai_short_description":"Generate text using KoboldAI","ai_category":"Text Generation","trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"yellow","colorTo":"purple","createdAt":"2024-08-29T07:43:17.000Z","emoji":"💬","id":"sca255/chargen","lastModified":"2024-08-29T10:06:52.000Z","likes":0,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Memory limit exceeded (16Gi)","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-chargen.hf.space","stage":"READY"}]},"title":"Chargen.ui","isLikedByUser":false,"trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"indigo","colorTo":"pink","createdAt":"2024-08-17T06:43:03.000Z","emoji":"🌍","id":"sca255/xttsanime","lastModified":"2024-08-17T15:21:55.000Z","likes":1,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Exit code: 0. Reason: application does not seem to be initialized","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-xttsanime.hf.space","stage":"READY"}]},"title":"Xttsanime","isLikedByUser":false,"trendingScore":0,"tags":["docker","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"yellow","colorTo":"gray","createdAt":"2024-07-04T08:24:31.000Z","emoji":"💻","id":"sca255/stable-diffusion-webui","lastModified":"2024-08-17T02:14:27.000Z","likes":1,"pinned":false,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNTIME_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Exit code: ?. Reason: ","replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-stable-diffusion-webui.hf.space","stage":"READY"}]},"title":"Stable Diffusion Webui","isLikedByUser":false,"originRepo":{"name":"vorstcavry/ai","author":{"_id":"63e202df52b7578dba4489af","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/1677822581513-63e202df52b7578dba4489af.png","fullname":"Vorst Cavry","name":"vorstcavry","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":23,"isUserFollowing":false}},"ai_short_description":"Run a script to perform various tasks","ai_category":"Other","trendingScore":0,"tags":["gradio","region:us"],"featured":false},{"author":"sca255","authorData":{"_id":"6592ab9cf0152a21fc47dbfd","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6592ab9cf0152a21fc47dbfd/zqtd5pgsW2z40pygV7i-z.png","fullname":"Arpan das","name":"sca255","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":1,"isUserFollowing":false},"colorFrom":"yellow","colorTo":"blue","createdAt":"2024-05-19T08:07:39.000Z","emoji":"🐨","id":"sca255/passgen","lastModified":"2024-05-19T12:27:27.000Z","likes":1,"pinned":false,"private":false,"sdk":"docker","repoType":"space","runtime":{"stage":"SLEEPING","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":null,"replicas":{"requested":1},"devMode":false,"domains":[{"domain":"sca255-passgen.hf.space","stage":"READY"}]},"title":"Passgen","isLikedByUser":false,"ai_short_description":"Generate secure random passwords","ai_category":"Password Generation","trendingScore":0,"tags":["docker","region:us"],"featured":false}],"numRepos":12,"numReposPerPage":24,"currentRepoPage":0}">