{ // 获取包含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 !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; 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 !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } 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, 'OCR模型免费转Markdown'); } 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","html":"\n\n
\n
\n\n
<div class=\"row\">\n  <!-- Replace the SVG with your logo if you have one -->\n  <div class=\"avatar\" aria-hidden=\"true\">\n    <!-- Simple neural-nodes logo -->\n    <svg viewBox=\"0 0 64 64\" fill=\"none\">\n      <defs>\n        <linearGradient id=\"g\" x1=\"0\" y1=\"0\" x2=\"64\" y2=\"64\" gradientUnits=\"userSpaceOnUse\">\n          <stop stop-color=\"#ff4d88\"/><stop offset=\"1\" stop-color=\"#ffcc4d\"/>\n        </linearGradient>\n      </defs>\n      <circle cx=\"12\" cy=\"32\" r=\"6\" fill=\"url(#g)\"/>\n      <circle cx=\"32\" cy=\"12\" r=\"6\" fill=\"url(#g)\"/>\n      <circle cx=\"32\" cy=\"32\" r=\"6\" fill=\"url(#g)\"/>\n      <circle cx=\"32\" cy=\"52\" r=\"6\" fill=\"url(#g)\"/>\n      <circle cx=\"52\" cy=\"32\" r=\"6\" fill=\"url(#g)\"/>\n      <path d=\"M18 32h8M32 18v8M32 38v8M38 32h8\" stroke=\"url(#g)\" stroke-width=\"4\" stroke-linecap=\"round\"/>\n    </svg>\n  </div>\n\n  <div class=\"title\">\n    <h1>HelpingAI Labs</h1>\n    <div class=\"tagline\">World’s first Intermediate-Reasoning models — smarter, faster, token-efficient.</div>\n  </div>\n\n  <div class=\"badges\" aria-label=\"Organization stats\">\n    <span class=\"badge\" title=\"Models published\">\n      <!-- model icon -->\n      <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\" aria-hidden=\"true\"><path d=\"M12 2 2 7l10 5 10-5-10-5Zm0 7L2 4v13l10 5 10-5V4l-10 5Z\"/></svg>\n      <span class=\"num\">12</span>\n    </span>\n    <span class=\"badge\" title=\"Datasets\">\n      <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M3 5h18v4H3zM3 10h18v4H3zM3 15h18v4H3z\"/></svg>\n      <span class=\"num\">6</span>\n    </span>\n    <span class=\"badge\" title=\"Spaces / Demos\">\n      <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M4 4h7v7H4zM13 4h7v7h-7zM4 13h7v7H4zM13 13h7v7h-7z\"/></svg>\n      <span class=\"num\">3</span>\n    </span>\n    <span class=\"badge\" title=\"Followers\">\n      <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm0 2c-5 0-9 2.5-9 5.5V22h18v-2.5C21 16.5 17 14 12 14Z\"/></svg>\n      <span class=\"num\">1.8k</span>\n    </span>\n  </div>\n</div>\n\n<div class=\"chips\" aria-label=\"Highlights\">\n  <span class=\"chip\">Intermediate Reasoning</span>\n  <span class=\"chip\">High EQ</span>\n  <span class=\"chip\">OpenAI-compatible API</span>\n  <span class=\"chip\">10× token-efficient</span>\n  <span class=\"chip\">Multimodal</span>\n</div>\n\n<div class=\"cta\">\n  <a class=\"btn primary\" href=\"https://chat.helpingai.co\" target=\"_blank\" rel=\"noopener\">\n    <!-- rocket -->\n    <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\" aria-hidden=\"true\"><path d=\"M13 3l8 8-3 3-2-2-4 4 2 2-2 2-3-3-3 1 1-3-3-3 2-2 2 2 4-4-2-2 3-3Zm1 6l1 1-4 4-1-1 4-4Z\"/></svg>\n    Try on Playground\n  </a>\n\n  <a class=\"btn\" href=\"https://helpingai.co\" target=\"_blank\" rel=\"noopener\">\n    <!-- link -->\n    <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M10 13a5 5 0 0 0 7 0l2-2a5 5 0 1 0-7-7l-1.5 1.5M14 11a5 5 0 0 0-7 0l-2 2a5 5 0 1 0 7 7L13.5 19\"/></svg>\n    Website\n  </a>\n\n  <a class=\"btn hf\" href=\"https://huggingface.co/organizations/helpingai\" target=\"_blank\" rel=\"noopener\">\n    <span class=\"dot\" aria-hidden=\"true\"></span>\n    <strong>Follow</strong> <small>on Hugging Face</small>\n  </a>\n\n  <span class=\"spacer\"></span>\n\n  <a class=\"btn\" href=\"https://helpingai.co/docs\" target=\"_blank\" rel=\"noopener\">\n    <!-- book -->\n    <svg width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"currentColor\"><path d=\"M4 3h11a3 3 0 0 1 3 3v13a2 2 0 0 1-2 2H5a3 3 0 0 1-1-6V6a3 3 0 0 1 0-3Z\"/></svg>\n    Docs\n  </a>\n</div>\n\n<div class=\"meta\">\n  <span>Latest model: <a href=\"https://huggingface.co/HelpingAI/Dhanishtha-2.0-preview\" target=\"_blank\" rel=\"noopener\">Dhanishtha-2.0-preview</a></span>\n  <span>SDK: OpenAI-compatible</span>\n  <span>Latency: sub-second streaming</span>\n  <span>Contact: <a href=\"mailto:hello@helpingai.co\">hello@helpingai.co</a></span>\n</div>\n
\n
\n\n\n","classNames":"hf-sanitized hf-sanitized-OHJ286FdIY0OMxgQ0lBTh"},"users":[{"_id":"64be41c330a1f0f0f0a1e0eb","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/8W-z1xMGnQGQ2M4LXnZfy.jpeg","isPro":false,"fullname":"VORTEX","user":"Abhaykoul","type":"user"},{"_id":"6612aedf09f16e7347dfa7e1","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6612aedf09f16e7347dfa7e1/bPYjBXCedY_1fSIPjoBTY.jpeg","isPro":false,"fullname":"Nishith Jain","user":"KingNish","type":"user"},{"_id":"6703e9e488383280507f481f","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6703e9e488383280507f481f/5TNdJ0F_kTjyXomFlkXgT.jpeg","isPro":false,"fullname":"Varun Gupta","user":"VarunGuptaPy","type":"user"}],"userCount":3,"collections":[{"slug":"HelpingAI/dhanishtha-model-series-686a6c1f0d2eacdf3a123799","title":"Dhanishtha model series","description":"Our Reasoning models","gating":false,"lastUpdated":"2025-07-17T08:00:10.020Z","owner":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"items":[{"_id":"6878ad86f477d342844f46be","position":0,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":2,"gated":"auto","id":"HelpingAI/Dhanishtha-2.0-preview-0725","availableInferenceProviders":[],"lastModified":"2025-07-29T08:39:54.000Z","likes":11,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"_id":"686a6c40d32259a67c347a61","position":1,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":320,"gated":false,"id":"HelpingAI/Dhanishtha-2.0-preview","availableInferenceProviders":[],"lastModified":"2025-07-29T04:16:42.000Z","likes":60,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"_id":"686a6c6841126a450d459e39","position":2,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":41,"gated":false,"id":"HelpingAI/Dhanishtha-Large-RAW","availableInferenceProviders":[],"lastModified":"2025-03-01T07:10:21.000Z","likes":4,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":7612756480},{"_id":"686a6c4fede72a5904577593","position":3,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":7,"gated":false,"id":"HelpingAI/Dhanishtha-Large","availableInferenceProviders":[],"lastModified":"2025-02-24T14:44:31.000Z","likes":3,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":7612756480}],"position":0,"theme":"blue","private":false,"shareUrl":"https://huggingface.co/collections/HelpingAI/dhanishtha-model-series-686a6c1f0d2eacdf3a123799","upvotes":4,"isUpvotedByUser":false},{"slug":"HelpingAI/helpingai-series-686a6ca4c718c024ba22d450","title":"HelpingAI Series ","description":"Our Emotionally intelligent Models","gating":false,"lastUpdated":"2025-07-06T12:34:11.398Z","owner":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"items":[{"_id":"686a6cbdb852358d77a6af8b","position":0,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":22,"gated":false,"id":"HelpingAI/HelpingAI-3","availableInferenceProviders":[],"lastModified":"2025-03-17T12:33:04.000Z","likes":8,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":10305653760},{"_id":"686a6cc43b05e1234f228eac","position":1,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":16,"gated":false,"id":"HelpingAI/Helpingai3-raw","availableInferenceProviders":[],"lastModified":"2025-03-22T03:39:44.000Z","likes":7,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":10305653760},{"_id":"686a6cb6bb52e3f25dd628e8","position":2,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":44,"gated":false,"id":"HelpingAI/HelpingAI2.5-10B","availableInferenceProviders":[],"lastModified":"2025-05-03T14:29:15.000Z","likes":8,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":10211381248},{"_id":"686a6cd3e1541ee221d339a3","position":3,"type":"model","author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":1165,"gated":false,"id":"HelpingAI/HelpingAI2-9B","availableInferenceProviders":[],"lastModified":"2024-10-31T04:10:24.000Z","likes":24,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":8902709248}],"position":1,"theme":"blue","private":false,"shareUrl":"https://huggingface.co/collections/HelpingAI/helpingai-series-686a6ca4c718c024ba22d450","upvotes":2,"isUpvotedByUser":false},{"slug":"HelpingAI/dhanishtha-20-686a39fb313d2935c38e1a48","title":"dhanishtha-2.0","description":" A curated subset of open-sourced data unveiled with the Dhansishta-2.0-preview","gating":false,"lastUpdated":"2025-07-06T12:34:11.403Z","owner":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"items":[{"_id":"686a3a8cd6e74faac045c521","position":0,"type":"dataset","author":"HelpingAI","downloads":233,"gated":"manual","id":"HelpingAI/Dhanishtha-2.0-SUPERTHINKER","lastModified":"2025-06-30T15:19:05.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":11720,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":19,"isLikedByUser":false}],"position":2,"theme":"pink","private":false,"shareUrl":"https://huggingface.co/collections/HelpingAI/dhanishtha-20-686a39fb313d2935c38e1a48","upvotes":2,"isUpvotedByUser":false}],"datasets":[{"author":"HelpingAI","downloads":1734,"gated":"manual","id":"HelpingAI/Intermediate-Thinking-130k","lastModified":"2025-08-07T06:04:45.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":134790,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":41,"isLikedByUser":false},{"author":"HelpingAI","downloads":233,"gated":"manual","id":"HelpingAI/Dhanishtha-2.0-SUPERTHINKER","lastModified":"2025-06-30T15:19:05.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":11720,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":19,"isLikedByUser":false}],"models":[{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":441,"gated":false,"id":"HelpingAI/hai3.1-checkpoint-0002","availableInferenceProviders":[],"lastModified":"2025-08-25T14:49:48.000Z","likes":7,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":15878894082},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":89,"gated":false,"id":"HelpingAI/hai3.1-checkpoint-0001","availableInferenceProviders":[],"lastModified":"2025-08-14T05:33:39.000Z","likes":3,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":15829399244},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":823,"gated":false,"id":"HelpingAI/Dhanishtha-nsfw","availableInferenceProviders":[],"lastModified":"2025-07-29T12:30:45.000Z","likes":21,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":2,"gated":"auto","id":"HelpingAI/Dhanishtha-2.0-preview-0725","availableInferenceProviders":[],"lastModified":"2025-07-29T08:39:54.000Z","likes":11,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":22,"gated":false,"id":"HelpingAI/Dhanishtha-2.0-preview-0825","availableInferenceProviders":[],"lastModified":"2025-07-29T04:17:13.000Z","likes":19,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":320,"gated":false,"id":"HelpingAI/Dhanishtha-2.0-preview","availableInferenceProviders":[],"lastModified":"2025-07-29T04:16:42.000Z","likes":60,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":14,"gated":false,"id":"HelpingAI/Dhanishtha-2.0-preview-mlx","availableInferenceProviders":[],"lastModified":"2025-07-03T09:27:03.000Z","likes":2,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":14768307200},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":44,"gated":false,"id":"HelpingAI/HelpingAI2.5-10B","availableInferenceProviders":[],"lastModified":"2025-05-03T14:29:15.000Z","likes":8,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":10211381248},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":16,"gated":false,"id":"HelpingAI/Helpingai3-raw","availableInferenceProviders":[],"lastModified":"2025-03-22T03:39:44.000Z","likes":7,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":10305653760},{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":22,"gated":false,"id":"HelpingAI/HelpingAI-3","availableInferenceProviders":[],"lastModified":"2025-03-17T12:33:04.000Z","likes":8,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":10305653760}],"spaces":[{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"colorFrom":"red","colorTo":"pink","createdAt":"2025-07-03T03:56:14.000Z","emoji":"🏆","id":"HelpingAI/Dhanishtha-2.0-preview","lastModified":"2025-07-17T11:36:03.000Z","likes":6,"pinned":true,"private":false,"sdk":"gradio","repoType":"space","runtime":{"stage":"RUNNING","hardware":{"current":"zero-a10g","requested":"zero-a10g"},"storage":null,"gcTimeout":172800,"replicas":{"current":1,"requested":1},"devMode":false,"domains":[{"domain":"helpingai-dhanishtha-2-0-preview.hf.space","stage":"READY"}],"sha":"c79872a516b3c74d4341c83d166930755e53750e"},"title":"Dhanishtha 2.0 Preview","isLikedByUser":false,"originSpace":{"name":"Abhaykoul/Dhanishtha-2.0-preview","author":{"_id":"64be41c330a1f0f0f0a1e0eb","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/8W-z1xMGnQGQ2M4LXnZfy.jpeg","fullname":"VORTEX","name":"Abhaykoul","type":"user","isPro":false,"isHf":false,"isHfAdmin":false,"isMod":false,"followerCount":200}},"ai_short_description":"Chat with an AI that shows its thinking process","ai_category":"Text Generation","trendingScore":0,"tags":["gradio","region:us"]}],"numDatasets":2,"numModels":29,"numSpaces":2,"lastOrgActivities":[{"time":"2025-09-11T04:41:13.017Z","user":"VarunGuptaPy","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6703e9e488383280507f481f/5TNdJ0F_kTjyXomFlkXgT.jpeg","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","type":"update","repoData":{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"colorFrom":"gray","colorTo":"gray","createdAt":"2025-09-11T04:40:23.000Z","emoji":"🚀","id":"HelpingAI/README","lastModified":"2025-09-11T04:41:12.000Z","likes":0,"pinned":false,"private":false,"repoType":"space","runtime":{"stage":"CONFIG_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Missing configuration in README","replicas":{"requested":1},"domains":[{"domain":"helpingai-readme.hf.space","stage":"READY"}]},"title":"README","isLikedByUser":false,"trendingScore":0,"tags":["region:us"]},"repoId":"HelpingAI/README","repoType":"space","org":"HelpingAI"},{"time":"2025-09-11T04:40:23.656Z","user":"VarunGuptaPy","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/6703e9e488383280507f481f/5TNdJ0F_kTjyXomFlkXgT.jpeg","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","type":"publish","repoData":{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"colorFrom":"gray","colorTo":"gray","createdAt":"2025-09-11T04:40:23.000Z","emoji":"🚀","id":"HelpingAI/README","lastModified":"2025-09-11T04:41:12.000Z","likes":0,"pinned":false,"private":false,"repoType":"space","runtime":{"stage":"CONFIG_ERROR","hardware":{"current":null,"requested":"cpu-basic"},"storage":null,"gcTimeout":172800,"errorMessage":"Missing configuration in README","replicas":{"requested":1},"domains":[{"domain":"helpingai-readme.hf.space","stage":"READY"}]},"title":"README","isLikedByUser":false,"trendingScore":0,"tags":["region:us"]},"repoId":"HelpingAI/README","repoType":"space","org":"HelpingAI"},{"time":"2025-08-25T14:49:49.345Z","user":"Abhaykoul","userAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/8W-z1xMGnQGQ2M4LXnZfy.jpeg","orgAvatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","type":"update","repoData":{"author":"HelpingAI","authorData":{"_id":"6751477fecefcb9f21ed4b03","avatarUrl":"https://aifasthub.com/avatars/v1/production/uploads/64be41c330a1f0f0f0a1e0eb/5UoEDieiNQSHsRfgB39B9.jpeg","fullname":"HelpingAI","name":"HelpingAI","type":"org","isHf":false,"isHfAdmin":false,"isMod":false,"isEnterprise":false,"followerCount":107},"downloads":441,"gated":false,"id":"HelpingAI/hai3.1-checkpoint-0002","availableInferenceProviders":[],"lastModified":"2025-08-25T14:49:48.000Z","likes":7,"pipeline_tag":"text-generation","private":false,"repoType":"model","isLikedByUser":false,"widgetOutputUrls":[],"numParameters":15878894082},"repoId":"HelpingAI/hai3.1-checkpoint-0002","repoType":"model","org":"HelpingAI"}],"acceptLanguages":["*"],"canReadRepos":false,"canReadSpaces":false,"blogPosts":[],"showRepoType":"dataset","numReposPerPage":30,"repos":[{"author":"HelpingAI","downloads":1734,"gated":"manual","id":"HelpingAI/Intermediate-Thinking-130k","lastModified":"2025-08-07T06:04:45.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":134790,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":41,"isLikedByUser":false},{"author":"HelpingAI","downloads":233,"gated":"manual","id":"HelpingAI/Dhanishtha-2.0-SUPERTHINKER","lastModified":"2025-06-30T15:19:05.000Z","datasetsServerInfo":{"viewer":"viewer","numRows":11720,"libraries":["datasets","pandas","mlcroissant","polars"],"formats":["json"],"modalities":["text"]},"private":false,"repoType":"dataset","likes":19,"isLikedByUser":false}],"numRepos":2,"currentRepoPage":0,"filters":{}}">

AI & ML interests

Humanizing Artificial Intelligence

Recent Activity

VarunGuptaPy  updated a Space about 22 hours ago
HelpingAI/README
VarunGuptaPy  published a Space about 22 hours ago
HelpingAI/README
Abhaykoul  updated a model 17 days ago
HelpingAI/hai3.1-checkpoint-0002
View all activity