DEV Community

tinyhuman-fpj
tinyhuman-fpj

Posted on

big modle coding plan of china

Compared with Claude Opus, Chinese models offer better value for money and are very affordable.
If you are developing complex engineering systems, GLM-5 is your top choice, with 744 billion parameters, suitable for enterprise-level projects and system reconstruction. If you are looking for a more budget-friendly option, DeepSeek is a great choice, with 685 billion parameters and an extremely low price. Oh, and there's Kimi, which is an expert in long context, with 1 trillion parameters, capable of supporting 300 agents working together for 13 hours, making it ideal for maintaining large-scale projects and multi-document analysis. Try out Chinese models, click https://teniuapi.online/

Install claude code

# install npm
npm install -g @anthropic-ai/claude-code

# verify version
claude --version

# update to the latest
sudo npm i -g @anthropic-ai/claude-code
sudo claude update
Enter fullscreen mode Exit fullscreen mode

setting for claude code

mkdir -p ~/.claude && cat > ~/.claude/settings.json << 'EOF'
{
   "env": {
    "ANTHROPIC_BASE_URL": "https://teniuapi.online",
    "ANTHROPIC_AUTH_TOKEN": "Your Api key",
    "API_TIMEOUT_MS": "3000000",
    "CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
    "ANTHROPIC_MODEL": "glm-5",
    "ANTHROPIC_SMALL_FAST_MODEL": "glm-5",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "glm-5",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "glm-5",
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "glm-5"
  }
}
EOF
Enter fullscreen mode Exit fullscreen mode

Click the website to get your api key.

Top comments (0)