This whole series of work is quite cool. The use of `word-break: break-word;` makes this really hard to read though.
Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
11–20 of 156 posts
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#12Isn't OpenIA "Deep research" (not "DeepResearch") a methodology/tooling thing, and you'll get different responses depending on what specific model you use with it? As far as the UI allows you to, you could use Deep research with GPT-5, GPT-4o, o3 and so on, and that'll have an impact on the responses. Skimming the paper and searching for some simple terms makes it seem like they never expand on what exact models they…
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#13I hope the translation for this is actually "Agree" Deep research. Just a dig at "You are absolutely right!" sycophancy.
The Chinese version of the link says "通义 DeepResearch" in the title, so doesn't look like the "agree" to be the case. Completely agreed that it would be hilarious.
1: https://www.alibabacloud.com/en/solutions/generative-ai/qwen...
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#14Sunday morning, and I find myself wondering how the engineering tinkerer is supposed to best self-host these models? I'd love to load this up on the old 2080ti with 128gb of vram and play, even slowly. I'm curious what the current recommendation on that path looks like. Constraints are the fun part here. I know this isn't the 8x Blackwell Lamborghini, that's the point. :)
If you really do have a 2080ti with 128gb of VRAM, we'd love to hear more about how you did it!
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#15Sunday morning, and I find myself wondering how the engineering tinkerer is supposed to best self-host these models? I'd love to load this up on the old 2080ti with 128gb of vram and play, even slowly. I'm curious what the current recommendation on that path looks like. Constraints are the fun part here. I know this isn't the 8x Blackwell Lamborghini, that's the point. :)
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#16Sunday morning, and I find myself wondering how the engineering tinkerer is supposed to best self-host these models? I'd love to load this up on the old 2080ti with 128gb of vram and play, even slowly. I'm curious what the current recommendation on that path looks like. Constraints are the fun part here. I know this isn't the 8x Blackwell Lamborghini, that's the point. :)
get the biggest one that will fit in your vram.
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#17Isn't OpenIA "Deep research" (not "DeepResearch") a methodology/tooling thing, and you'll get different responses depending on what specific model you use with it? As far as the UI allows you to, you could use Deep research with GPT-5, GPT-4o, o3 and so on, and that'll have an impact on the responses. Skimming the paper and searching for some simple terms makes it seem like they never expand on what exact models they…
The pattern is effectively long-running research tasks that drive a search tool. You give them a prompt, they churn away for 5-10 minutes running searches and they output a report (with "citations") at the end.
This Tongyi model has been fine-tuned to be really good at using its search tool in a loop to produce a report.
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#18It makes me wonder if we'll see an explosion of purpose trained LLMs because we hit diminishing returns on invest with pre training or if it takes a couple of months to fold these advantages back into the frontier models. Given the size of frontier models I would assume that they can incorporate many specializations and the most lasting thing here is the training environment. But there is probably already some tradeo…
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#19I switch between gemini and ChatGpt whenever I feel one fails to fully grasp what I want, I do coding in claude.
How are they supposed to become the 1 trillion dollar company they want to be, with strong competition and open source disruptions every few months?
Re: Tongyi DeepResearch – open-source 30B MoE Model that rivals OpenAI DeepResearch
#20This whole series of work is quite cool. The use of `word-break: break-word;` makes this really hard to read though.
I actually can’t read it for some reason? My brain just can’t connect the words
function replaceInTextNodes(node) { if (node.nodeType === Node.TEXT_NODE) { node.nodeValue = node.nodeValue .replace(/\u00A0/g, ' '); } else { node.childNodes.forEach(replaceInTextNodes); } }
replaceInTextNodes(document.body);