惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园_首页
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
The Cloudflare Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work Top 15 Reinforcement Learning Questions That Will Appear in Exams The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026
China's AI Giants: Adding Tencent Hunyuan & ByteDance Dou...
kanta13jp1 · 2026-04-17 · via DEV Community

kanta13jp1

China's AI Giants: Tencent Hunyuan & ByteDance Doubao — AI University Update

I've added Tencent Hunyuan and ByteDance Doubao to the AI University in my app, bringing the total provider count to 74 companies. With Baidu already registered, China's "BAT" trio is now complete.

Tencent Hunyuan — Open Source Multimodal Powerhouse

Tencent's AI brand stands out by releasing world-class open-source models across ALL modalities: text, image, video, and 3D.

Model Scale Highlight
Hunyuan-Large 389B MoE (52B active) Largest OSS MoE at release / 256K context
Hunyuan Image 3.0 80B World's largest OSS image generation model
HunyuanVideo 13B+ Largest OSS video generation model
Hunyuan 3D 2.0 Single image → 3D mesh
Hunyuan Compact 0.5B–7B 4 variants for edge/device deployment

Why it matters

Most AI companies specialize in one modality. Tencent offers competitive open-source models in text, image, video, AND 3D from a single organization — backed by production experience from WeChat and QQ.

# Tencent Cloud SDK
from tencentcloud.hunyuan.v20230901 import hunyuan_client, models

req = models.ChatCompletionsRequest()
req.Model = "hunyuan-turbo"  # Fast + cost-effective
req.Messages = [{"Role": "user", "Content": "Write a Deno Edge Function"}]

Enter fullscreen mode Exit fullscreen mode


ByteDance Doubao — The "Agent Era" Model

TikTok's parent company ByteDance launched Doubao 2.0 in February 2026 with an explicit "Agent Era" focus — multi-step autonomous task execution.

Model Highlight
Seed 2.0 Pro Highest accuracy, long context
Seed 2.0 Lite Lightweight, fast
Seed 2.0 Mini Minimal edge model
Seed 2.0 Code Code-specialized
Seedance 2.0 TikTok-integrated video generation

Price competitiveness

Doubao API is reportedly 3.7x cheaper than GPT-5.2 — significant for high-volume batch processing.

// Doubao in a Supabase Edge Function
const response = await fetch('https://ark.cn-beijing.volces.com/api/v3/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${Deno.env.get('DOUBAO_API_KEY')}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: 'doubao-seed-1-6-250615',
    messages: [{ role: 'user', content: 'Hello!' }],
  }),
});

Enter fullscreen mode Exit fullscreen mode


AI University: 74 Providers Across All Categories

China AI (4 providers — now complete):
  baidu    → ERNIE Bot         ✅ existing
  tencent  → Hunyuan           ✅ new (73rd)
  bytedance → Doubao           ✅ new (74th)
  deepseek → DeepSeek V3/R1    ✅ existing

Enter fullscreen mode Exit fullscreen mode

The full 74-provider catalog covers LLM giants, image/video generation, AI infrastructure, code models, and specialized AI tools — all free to explore in the app.

Key Takeaways

  • Tencent Hunyuan: Best-in-class OSS coverage across all modalities. If you need a free, large-scale model for text, image, or video, Hunyuan is worth evaluating.
  • ByteDance Doubao: Agent-focused design + lowest-tier API pricing. Strong candidate for high-volume automation pipelines.

Try AI University (74 providers, free): https://my-web-app-b67f4.web.app/

AI #LLM #buildinpublic #FlutterWeb #Supabase