🚀 Product Update

Introducing Caveman Compression & 4 Free Models

📅 July 12, 2026 ⏱ 3 min read

Today we're shipping two features that make AI Nexus even more cost-effective:

  1. Caveman Compression — automatically removes filler text from your API requests, saving 30-57% on tokens. Zero config.
  2. 4 Free Models — GLM-4.7-Flash, GLM-4V-Flash, CogView-3-Flash, and CogVideoX-Flash are now completely free.

🗜️ What Is Caveman Compression?

Caveman is a lightweight, rule-based compression engine that runs at the API gateway layer. Before your request reaches the upstream model, Caveman strips out text that adds tokens without adding meaning:

Compression Ratios

LanguageModeAvg SavingsExample
🇨🇳 Chinese Lite 57% "你好,请问你能帮我写首诗吗?谢谢!" → "你能帮我写首诗吗?"
Standard (default)40%Removes hedging + verbose phrasing
Aggressive55%Also removes filler adverbs and modal verbs
🇺🇸 English Lite 21% "Thank you for your help! I think this is great." → "for your help! this is great."
Standard35%Also compresses verbose phrases + redundant instructions
⚡ No quality impact. Caveman only removes text that doesn't carry semantic meaning — greetings, polite framings, hedging words, and verbose stock phrases. The model receives the same core question, just with less fluff. We verified this across 500+ test cases with DeepSeek V4 Flash, Qwen 3.5 Flash, and GLM-4.7-Flash — response quality was statistically identical.

How It Works

Caveman runs as a middleware proxy between your application and the AI model. It intercepts the messages[] array, applies rule-based compression per language, then forwards the optimized request:

Your App → [Caveman Proxy] → AI Model
                ↓
        ✂ Remove filler words
        ✂ Compress verbose phrases  
        ✂ Strip greetings/sign-offs
        ✂ Auto-detect language (zh/en)

The engine is language-aware — it applies Chinese rules when it detects Chinese text, English rules for English, and intelligently skips short messages (<10 characters) where compression wouldn't help.

Is It Enabled?

Yes, it's on by default. Every request through https://www.tokencnn.com/v1 already benefits from compression. If you want to verify, check the response headers for X-Caveman-Compression: enabled.

You don't need to change a single line of code. Caveman works with any OpenAI SDK, any framework — it compresses at the proxy level, transparently.

🆓 4 Completely Free Models

We've partnered with Zhipu AI to offer the following models at $0/0 — no tokens consumed, no charges applied:

ModelTypeUse Case
🧠 GLM-4.7-FlashTextChat, classification, content generation, RAG
👁️ GLM-4V-FlashVisionImage understanding, OCR, visual QA
🎨 CogView-3-FlashImage GenerationText-to-image, creative assets
🎬 CogVideoX-FlashVideo GenerationText-to-video, short clips
💡 Pro tip: GLM-4.7-Flash is excellent for high-volume classification tasks. Process 1M+ texts per day at $0 — ideal for sentiment analysis, content moderation, and ticket routing.

📊 Real-World Savings Example

Say you're running a customer support chatbot that processes 50,000 conversations per month, averaging 500 tokens per conversation:

Before CavemanAfter CavemanWith Free Models
ModelGPT-4oDeepSeek V4 FlashGLM-4.7-Flash
Tokens/month25M~15M (-40%)$0
Cost/month$480$9$0
Savings98%100%

🔌 Get Started in 30 Seconds

  1. Sign up at tokencnn.com/register — no phone number needed, get $1 free credit
  2. Get your API key from the console
  3. Change one line in your code:
# Before
client = OpenAI(base_url="https://api.openai.com/v1")

# After  
client = OpenAI(base_url="https://www.tokencnn.com/v1")

That's it. Caveman compression is automatically active. Free models are available at model="glm-4.7-flash" — try them with zero spend.

🚀 Start Saving Today

No credit card required. Get $1 free credit + 4 free models on signup.

Get API Key →

📚 What's Next