nowfound

Alternatives

Products that do what Jan-nano, 4B agentic model that outperforms DeepSeek-v3-671B using MCP does

We’ve been experimenting with how far a tiny model can go when it’s good at calling external tools - and have just released Jan-nano, a 4 B model trained for MCP. Jan-nano: - tops DeepSeek-V3-671B on MCP tool-use (SimpleQA 80.7%) - handles live web search and multi-step deep research - runs fully on-device (≈4GB VRAM) Tech notes - Base: Qwen3-4B - Fine-tuning: DAPO - We're going to release the full technical report soon Links - Demo tweet: https://x.com/menloresearch/status/1934809407604576559 - Model + GGUF:…

  1. 1
    Janus224

    Unified Multi-Modal AI by DeepSeek

    2025

  2. 2DD

    We recently used DeepSeek V4 Flash as a teacher for finance tasks with GPT-OSS-120B. Distillation works well on this problem. At a constrained 8k token budget, our self-distilled 120B scores 83.61% on FinanceReasoning, above Kimi K3 (81.93%) and Inkling (65.13%). We released the 20B open weights. With V4 as the teacher though, we realized it would be timely to measure if the censorship characteristic of it transferred to the distilled version of the base model. tl;dr it didn't, the teacher answered politically sensitive questions 7 SDs differently than expected, but the distilled model's…

    Jul 2026 · ctgt.ai

  3. 3

    Frontier agent intelligence at Flash prices

    Aug 2026 · huggingface.co

  4. 4

    Long-context efficiency with DeepSeek Sparse Attention

    Sep 2025

  5. 5MP
  6. 6

    Open-Source LLM matching GPT-5

    Dec 2025

  7. 7

    The first open model to beat Sonnet made for productivity

    Feb 2026

  8. 8

    New open-source LLM that rivals o3 in coding & reasoning

    2025

  9. 9

    Give your AI agent physical control over any screen

    Jul 2026 · github.com

  10. 10

    The on-device model for your personal data

    Sep 2025

  11. 11NG

    Hi everyone, I started working on nanoeuler after the ban of anthropic's fable because my ambition and dream is to work in the AI field in anthropic. The two interesting reasons that led me to create nanoeuler were (1) interfacing with llm does not mean understanding how they are composed and (2), working on llm with a very low-level layer to understand the correlation between parameters and data and growth of the model and how the GPU works and how some layers can be optimized. So I started working on it with a research aspect by making nanoeuler grow more and more but doing one step after…

    Jun 2026 · github.com

  12. 12

    A refined agentic model for developers

    Sep 2025

  13. 13AT

    A 3.16M-parameter INT4 transformer running entirely in the on-chip memory of a Xilinx Kria KV260. Zero DRAM in the token loop, 59,965 tok/s on the fabric, bit-exact. Chat with it live.

    27d ago · mikeayles.com

  14. 14

    A new SOTA for compact open models on the edge

    May 2026

  15. 15

    I built a specialized package of DeepSeek V4 Flash 0731 (originally 284B total parameters, 13B active), preserving reasoning, tool calling and coding capabilities: https://huggingface.co/steadfastgaze/DeepSeek-V4-Flash-0731-... I let it write a minimal C compiler targeting ARM64, then test the result with Fibonacci and FizzBuzz programs, and it succeeded in less than 1 hour, with the full recording at: https://youtu.be/XiwSilmV8B0 You can run it on Silicon Macs with my engine https://github.com/steadfastgaze/MoEspresso, while one of the…

    21d ago · huggingface.co

  16. 16RG

    I wanted to know how fast a 26B mixture-of-experts model could run on a desktop CPU with no GPU. Got ~40 tok/s single-stream (lossless) and ~124 batched. The surprising part was the byte budget: for this model you compress the output head (32% of per-token bytes), not the experts (16%). The writeup has the bandwidth roofline and the dead-ends; the repo has the reproducible recipe. Happy to answer questions. Repo: https://github.com/arun-prasath2005/gemma4-cpu-moe

    Jun 2026 · apeg.dev

  17. 17IW

    Input a SMILES string (or pick one molecule from the examples) and it returns up to 100k molecules closest in 3-D shape or electrostatic similarity – from 10+ billion scale databases — typically in under 5-10 s. *Why it might interest HN* * Entire index lives on disk — no GPU at query-time, less than ~10 GB RAM total. * Built from scratch (no FAISS index / Milvus / Pinecone). * Index-build cost: one Nvidia T4 (~ 300USD) for one 5.5B database. * Open to anyone, predict ADMET, export results as CSV/SDF. Full write-up & benchmarks (DUD-E, LIT-PCBA, SVS) in the pre-print:…

    2025 · cheese-new.deepmedchem.com

  18. 18Q6
  19. 19DJ

    i deployed deepseek janus pro on eachlabs to check potential usecases.

    2025 · eachlabs.ai

  20. 20

    Self-hosted, privacy-first analytics in a single Go binary. No Docker, no SDKs, no bloat, just POST JSON and go. Pageviews, custom events, funnels, cohorts, path analysis, and a built-in MCP server for AI agents. - var-raphael/Gnat

    23d ago · github.com

  21. 21RR

    runNburn is an Apache-2.0 Rust inference engine for quantized GGUF models that are too big for your fast memory. The core idea: weights stay file-backed (mmap), host residency stays under an explicit byte budget (--ram-budget), and GPU caches are sized from detected free/total VRAM — never from device-name presets. There is no conversion step, no sidecar cache files, no silent requantization. The GGUF on disk is the single source of truth. The result that made me want to post this: Tencent's Hy3 (295B total / 21B active sparse MoE, a single 97.8 GiB Q2_K GGUF) runs on my desktop…

    Jul 2026 · github.com

  22. 22NG

    Hi everyone, I started working on nanoeuler after the ban of anthropic's fable because my ambition and dream is to work in the AI field in anthropic. The two interesting reasons that led me to create nanoeuler were the first, interfacing with llm does not mean understanding how they are composed and two, working on llm with a very low-level layer to understand the correlation between parameters and data and growth of the model and how the GPU works and how some layers can be optimized. So I started working on it with a research aspect by making nanoeuler grow more and more but doing one step…

    Jun 2026 · github.com

  23. 23AN

    Kimi K3 has 2.78 trillion parameters and ships as 1.42 TB of weights. It clearly does not fit in the memory of a laptop. But K3 is a Mixture-of-Experts model. For each token, only a small fraction of its 896 experts per layer is activated. That changes the problem: the entire model does not need to be resident in RAM, as long as the weights required by each token can be reached quickly enough. We built WASTE — the Weight-Aware Streaming Tensor Engine — to explore that idea. WASTE keeps the dense, repeatedly used part of the model resident in memory, stores the routed experts in an…

    Jul 2026

  24. 24D0

    We used our platform to fine-tune a tiny text-to-SQL model using distillation from DeepSeek V3. Repo has instructions for how to replicate this. This is definitely not the best-performing model like this out there! But I found it surprising we were able to get to this much out of it: stone's throw away from a teacher 1000x the size! We also ran the same thing using the 4B Qwen and matched the teacher accuracy, though here the difference is merely 100x :) I find this pretty cool - obviously our distilled models can only do this one task and don't generalize, but that's often exactly what you…

    Jan 2026 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →