SShortSingh.
Back to feed

Consultant Benchmarks DeepSeek, Qwen, Kimi and GLM on Cost, Speed and Quality

0
·1 views

A developer and consultant spent six weeks benchmarking four leading Chinese large language models — DeepSeek, Qwen, Kimi, and GLM — while building an inference layer for a client project. Testing used 200 production prompts spanning coding, summarisation, Chinese-language Q&A, and creative writing, with metrics covering latency, throughput, and cost per million output tokens. DeepSeek's V4 Flash emerged as a standout for price-performance, delivering 58 tokens per second and an 89% HumanEval coding pass rate at just $0.25 per million output tokens. Kimi was the most expensive option, priced around $3.00–$3.50 per million output tokens across its entire catalogue, roughly 12 times costlier than the cheapest GLM and Qwen models. The author cautioned that with a sample size of 200 prompts per model, results indicate trends rather than definitive rankings, and noted DeepSeek's limited vision support as a practical drawback.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

10xHire Seeks Remote Backend Engineers at Up to $130K Plus Equity

10xHire, a startup building AI-native technical hiring tools, is recruiting software engineers for backend and distributed systems roles. The positions are fully remote and open to candidates worldwide with at least one year of engineering experience. Compensation ranges from $60,000 to $130,000 USD annually, with equity included. The company uses technologies such as Go, Node.js, PostgreSQL, Redis, Kubernetes, and AWS, and expects engineers to be comfortable working alongside AI coding tools. Selected candidates will collaborate directly with the founding team to develop assessment platforms that evaluate real-world engineering skills rather than algorithmic memorization.

0
ProgrammingDEV Community ·

Developer builds keyword-based Chrome extension to filter and speak browser notifications aloud

A developer created 'Serious Notification', a Chrome extension that reads browser notifications aloud only when they contain user-defined keywords, filtering out irrelevant alerts. The core extension was built over a weekend, but two undocumented Manifest V3 architectural issues significantly extended development time. The first problem was that standard content scripts run in an isolated JavaScript context and cannot intercept the browser's Notification API before a page uses it. The fix required using a MAIN world content script to override window.Notification, but this introduced a second issue: MAIN world scripts lack access to Chrome extension APIs like storage and speech synthesis. The developer resolved this by bridging two scripts via a custom DOM event, allowing the MAIN world script to capture notifications and pass them to an isolated script that handles keyword matching and text-to-speech.

0
ProgrammingDEV Community ·

Atlases Launches 16 Free Interactive Tech Guides With Real In-Browser Code Execution

A developer has launched Atlases, a free learning platform featuring 16 in-depth technical guides across topics such as Databases, Python, C++, Linux, and AI/LLM Engineering. Each guide spans 12 chapters and includes interactive sandboxes that run real code engines — including SQLite, CPython, and a JavaScript REPL — entirely within the browser with no backend server. The platform requires no sign-up, displays no ads, and does no user tracking, with progress stored locally via localStorage. Built using Vite, React 18, and Tailwind CSS, the site is deployed on Vercel and the source code is publicly available on GitHub. The project was developed with Claude as an AI pair programmer, with the creator manually fact-checking all content before publication.

0
ProgrammingDEV Community ·

Developer Integrates Scrapling MCP Server to Give Claude Code Live Web Access

A developer has connected the open-source Scrapling web-scraping framework to Claude Code via its built-in Model Context Protocol (MCP) server, enabling the AI agent to fetch real web pages that bypass modern anti-bot defenses like Cloudflare. The integration exposes ten scraping tools to Claude Code, including standard HTTP fetches, headless-browser fetches using Playwright, stealth fetches via patchright, and screenshot capture. The setup was installed locally on Windows using a dedicated Python 3.14 virtual environment, requiring roughly 700 MB of browser binaries for full rendering and stealth capabilities. To reduce token consumption, the tools default to returning markdown with only main content, which the developer reports cut payload size by around 71 percent on content-heavy pages. The developer credited the core scraping engine entirely to the Scrapling maintainer, describing their own contribution as the local installation and MCP wiring that makes those capabilities available to the agent.