Login
Back to Blog
한국어Comparison

GLM-5.2 vs Claude Fable 5 실측: 출력 예산, reasoning_tokens, 그리고 0.8 가격 계수

Crazyrouter OpenAI 호환 API에서 glm-5.2와 claude-fable-5를 수학, 물리, Canvas 애니메이션 과제로 비교하고, glm-5.2의 현재 0.8 discount 정보를 함께 정리합니다.

C
Crazyrouter Team
July 6, 2026 / 1 views
Share:
GLM-5.2 vs Claude Fable 5 실측: 출력 예산, reasoning_tokens, 그리고 0.8 가격 계수

GLM-5.2 vs Claude Fable 5: 차이는 모델 능력보다 출력 예산에서 먼저 드러났다#

이번 글은 단순한 승패표가 아닙니다. 실제 API 호출에서 GLM-5.2는 출력 예산을 늘리면 수학과 물리 문제를 맞혔지만, 낮은 예산에서는 보이는 본문이 비는 경우가 있었습니다. Claude Fable 5는 같은 조건에서 더 짧고 안정적이었고, 긴 HTML 애니메이션 과제에서는 더 완성도가 높았습니다.

GLM-5.2 vs Claude Fable 5 benchmark

이 테스트가 필요한 이유#

The test used the Crazyrouter OpenAI-compatible API rather than a chat UI. That matters because the result was not judged only by prose quality. Each response was checked with operational metadata:

text
Base URL: https://cn.crazyrouter.com/v1
Endpoint: POST /v1/chat/completions
Models: glm-5.2, claude-fable-5
temperature: 0.2
Test date: 2026-07-06

The important fields were max_tokens, completion_tokens, reasoning_tokens, finish_reason, visible content length, whether the generated HTML was closed, and whether the animation actually moved in a browser.

테스트 설계#

The benchmark deliberately mixed three task types:

TaskPurposeReference result
MATH-003State-based expectation reasoningExpected flips until HH = 6
PHYS-003Momentum plus energy accountingV = 3.0 m/s, x ≈ 0.148 m
CODE-003-ANIMLong runnable artifact generationComplete 800x500 Canvas animation HTML

The first two tasks measured reasoning. The third task measured whether a model can produce a complete artifact, not merely a convincing partial code block.

관찰된 결과#

Taskglm-5.2claude-fable-5
Math, original budgetfinish_reason=length, completion_tokens=1601, reasoning_tokens=1600, visible body emptyfinish_reason=stop, complete and correct
Math, retestCorrect after max_tokens=3200Retest not needed
Physics, original budgetfinish_reason=length, visible body emptyComplete and correct
Physics, retestCorrect after max_tokens=8000Retest not needed
Animation, original budgetEmpty visible HTML at max_tokens=3200Partial HTML, truncated
Animation, retestStill truncated at max_tokens=8000Complete HTML; browser validation passed

The most important observation is that GLM-5.2 was not failing the reasoning itself. In the math and physics tasks, it produced correct answers after a larger output budget. The problem was visibility and completion: a request could return HTTP 200 while the user-facing content was empty or incomplete.

For the long Canvas animation, the difference was sharper. GLM-5.2 produced a visible HTML fragment at max_tokens=8000, but it stopped inside JavaScript and did not close the file. Claude Fable 5 completed the HTML at max_tokens=8000; browser validation showed no console errors, an 800x500 canvas, controls, a speed slider, and changedPixels=55090 after 700 ms.

비용 대비 성능#

작성 시점 Crazyrouter pricing API는 glm-5.2에 대해 discount: 0.8을 반환합니다. 따라서 reasoning_tokensmax_tokens를 운영 지표로 관리할 수 있다면 GLM-5.2는 비용 대비 매력적인 선택지가 됩니다.

This is the practical tradeoff:

WorkloadBetter fit from this test
Short reasoning with enough output budgetGLM-5.2 can be a cost-effective option
Low-budget reasoning responsesClaude Fable 5 was steadier
Long single-file code generationClaude Fable 5 was stronger in this run
Batch evaluations where metadata is loggedGLM-5.2 becomes easier to operate safely

Do not treat the 0.8 multiplier as a permanent universal price. It is a pricing-data snapshot from Crazyrouter at publication time and should be checked again before a large deployment.

연동 시 체크포인트#

Minimal request:

bash
curl https://cn.crazyrouter.com/v1/chat/completions \
  -H "Authorization: Bearer $CRAZYROUTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "glm-5.2",
    "messages": [
      {
        "role": "user",
        "content": "Solve the HH expected-flips problem with state equations."
      }
    ],
    "temperature": 0.2,
    "max_tokens": 3200
  }'

To compare Claude Fable 5, keep the same payload and change only the model:

json
{
  "model": "claude-fable-5"
}

For production-style evaluations, log this shape for every request:

json
{
  "model": "glm-5.2",
  "max_tokens": 3200,
  "finish_reason": "length",
  "completion_tokens": 3200,
  "reasoning_tokens": 3178,
  "visible_content_chars": 0,
  "html_closed": false,
  "browser_validation": "not_run_incomplete_html"
}

API endpoints should stay clean. Do not add UTM parameters to https://cn.crazyrouter.com/v1. Use tracking only on human-facing article or registration links.

Crazyrouter의 OpenAI 호환 엔드포인트에서 같은 요청을 실행해 본인 업무에 맞는 결과를 직접 비교할 수 있습니다.

https://crazyrouter.com/register?utm_source=crazyrouter_blog&utm_medium=article&utm_campaign=glm52_fable5_budget_cost_20260706&utm_content=crazyrouter_blog_glm-52-vs-claude-fable-5-output-budget-cost-ko_20260706__bottom&utm_term=glm-5.2+claude+fable+5+benchmark

FAQ#

Did GLM-5.2 fail the reasoning tasks?#

No. In this run, GLM-5.2 solved the math task after max_tokens=3200 and the physics task after max_tokens=8000. The issue was that lower budgets were consumed mostly by reasoning tokens before visible content appeared.

Why not score HTTP 200 as success?#

Because HTTP 200 only means the API call returned. A benchmark answer can still be unusable if finish_reason=length, visible content is empty, or generated code is incomplete.

Why was the animation task included?#

Long code generation exposes a different failure mode. A model can write a convincing first half of a file and still fail if the HTML or JavaScript is cut off.

Is GLM-5.2 still worth testing?#

Yes. The current 0.8 discount multiplier makes it attractive for workloads where you can allocate enough output budget and monitor response metadata.

What should be recorded in future comparisons?#

At minimum: max_tokens, completion_tokens, reasoning_tokens, finish_reason, visible output length, artifact completeness, and runtime validation.

Final verdict#

요약하면 GLM-5.2는 가격 면에서 강점이 있고 추론도 가능하지만 출력 예산 관리가 필수입니다. Claude Fable 5는 낮은 예산과 긴 단일 파일 코드 생성에서 더 안정적이었습니다.

Implementation Guides

Topics

Comparison

Related Posts

Claude Fable 5 vs GPT-5.5: max_tokens 오판이 모델 비교 결론을 바꾼 사례Comparison

Claude Fable 5 vs GPT-5.5: max_tokens 오판이 모델 비교 결론을 바꾼 사례

Crazyrouter OpenAI-compatible API로 claude-fable-5와 gpt-5.5를 수학 추론, 물리 추론, Canvas 애니메이션 장문 코드 과제로 비교했다. 핵심은 max_tokens, finish_reason=length, completion_tokens, 브라우저 검증이 모델 평가 결론을 어떻게 바꾸는지다.

Jul 6
Claude Opus 4.6 vs 4.7 vs 4.8: Crazyrouter 실 API 테스트Claude

Claude Opus 4.6 vs 4.7 vs 4.8: Crazyrouter 실 API 테스트

한국어 결론: Opus 4.7은 통과율, Opus 4.8은 평균 지연시간, Opus 4.6은 기존 안정 프롬프트에 적합했습니다.

Jun 3
Claude Sonnet vs Opus: 코딩 에이전트에는 어떤 모델이 맞을까Claude

Claude Sonnet vs Opus: 코딩 에이전트에는 어떤 모델이 맞을까

코딩 에이전트 관점에서 Claude Sonnet과 Opus를 비교하고 비용, 속도, 추론, 리뷰, CrazyRouter 라우팅 전략을 설명합니다.

Jul 5
2026년 개발자를 위한 최고의 AI API 게이트웨이: 9개 플랫폼 테스트Comparison

2026년 개발자를 위한 최고의 AI API 게이트웨이: 9개 플랫폼 테스트

모델 커버리지, 가격, 멀티모달 지원 및 개발자 경험을 위해 9개의 AI API 게이트웨이를 테스트했습니다.

Mar 27
Claude Code와 CrazyRouter 연결 가이드: Base URL, 인증, 모델 설정, 문제 해결Claude

Claude Code와 CrazyRouter 연결 가이드: Base URL, 인증, 모델 설정, 문제 해결

Claude Code를 CrazyRouter로 연결하는 한국어 가이드입니다. base_url, API Key, 모델 설정, 스모크 테스트, 오류 해결, fallback을 다룹니다.

Jul 5
토큰 vs 바이트: AI가 실제로 텍스트를 처리하는 방식 완벽 해설Tutorial

토큰 vs 바이트: AI가 실제로 텍스트를 처리하는 방식 완벽 해설

"바이트, 문자, 단어, 토큰의 차이를 정확히 이해하세요. BPE 토크나이저의 작동 원리, 한국어가 영어보다 비싼 이유, 토큰 비용을 최적화하는 방법까지 상세히 설명합니다."

Mar 30