-
Notifications
You must be signed in to change notification settings - Fork 157
feat(website): new article about qwen3.5-27b success. #1288
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,29 @@ | ||||||
| <html> | ||||||
|
|
||||||
| <head> | ||||||
| <title> | ||||||
| [AutoBe] Qwen 3.5-27B Just Built Complete Backends from Scratch — 100% Compilation, 25x Cheaper | ||||||
| </title> | ||||||
| <meta | ||||||
| http-equiv="refresh" | ||||||
| content="0; url=https://dev.to/samchon/autobe-qwen-35-27b-just-built-complete-backends-from-scratch-100-compilation-25x-cheaper-lmd"> | ||||||
| </meta> | ||||||
|
||||||
| </meta> |
Copilot
AI
Apr 8, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This redirect page’s og:image points to https://autobe.dev/images/blog/qwen3.5-27b-success-og.png, but the committed image appears to be named autobe_qwen3.5-27b-success-og.png. Align the URL with the actual asset filename (or rename the asset) so link previews resolve correctly.
| content="https://autobe.dev/images/blog/qwen3.5-27b-success-og.png" | |
| content="https://autobe.dev/images/blog/autobe_qwen3.5-27b-success-og.png" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,89 @@ | ||||||
| --- | ||||||
| title: "Qwen 3.5-27B Just Built Complete Backends from Scratch — 100% Compilation, 25x Cheaper" | ||||||
| description: "Qwen 3.5-27B generated complete backends with 100% compilation at 1/25th the cost of Claude Opus 4.6 — and the output quality is nearly identical. The benchmark proves it." | ||||||
| date: "2026-04-08" | ||||||
| author: "Jeongho Nam" | ||||||
| tags: | ||||||
| - ai | ||||||
| - typescript | ||||||
| - qwen | ||||||
| - opensource | ||||||
| og: https://autobe.dev/images/blog/qwen3.5-27b-success-og.png | ||||||
|
||||||
| og: https://autobe.dev/images/blog/qwen3.5-27b-success-og.png | |
| ogImage: https://autobe.dev/images/blog/autobe_qwen3.5-27b-success-og.png |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,7 @@ | |||||
| title: "AutoBE vs. Claude Code: 3rd-gen coding agent developer's review of the leaked source code" | ||||||
| description: "We learned a great deal from the leaked Claude Code source code. What separates a 2nd-generation agent (Claude Code) from a 3rd-generation one (AutoBE), and where do they converge—this is a story of coexistence, not replacement." | ||||||
| date: "2026-04-07" | ||||||
| ogImage: "https://autobe.dev/blog/autobe-vs-claude-code-og.png" | ||||||
|
||||||
| ogImage: "https://autobe.dev/blog/autobe-vs-claude-code-og.png" | |
| ogImage: "/images/blog/autobe-vs-claude-code-og.png" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -78,10 +78,10 @@ subgraph "Functional Agents" | |||||
| coder --"Main Program" --> realize("Realize") | ||||||
| end | ||||||
| subgraph "Compiler Feedback" | ||||||
| database --"validates" --> prismaCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/database/AutoBeDatabase.ts" target="_blank">Prisma Compiler</a>") | ||||||
| database --"validates" --> prismaCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/database/AutoBeDatabase.ts" target="_blank">Database Compiler</a>") | ||||||
|
||||||
| database --"validates" --> prismaCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/database/AutoBeDatabase.ts" target="_blank">Database Compiler</a>") | |
| database --"validates" --> databaseCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/database/AutoBeDatabase.ts" target="_blank">Database Compiler</a>") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The diagram label was updated to “Database Compiler”, but the node id is still named
prismaCompiler, which is now misleading. Consider renaming the node id to something likedatabaseCompiler(and keep ids consistent across README/docs) to match the updated terminology.