ClinePass - Open Source LLM Subscription
Cline now has monthly subscription for open source AI models where you can get powerful latest models like GLM-5.2, Kimi, MiniMax, etc for a monthly fee of $9.99
If you wanted to try out those models without having to worrying about individually subscribing to it, then this is a good option.
How to use API?
Once you’ve the subscription, you can use the following inference endpoint to use those models. They support chat completing api endpoint
export CLINE_API_KEY="your_api_key_here"
curl -X POST https://api.cline.bot/api/v1/chat/completions \
-H "Authorization: Bearer $CLINE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "cline-pass/qwen3.7-max",
"messages": [
{"role": "user", "content": "Write a TypeScript function that validates an email address."}
],
"stream": false
}'
| Model | Model ID |
|---|---|
| GLM-5.2 | cline-pass/glm-5.2 |
| Kimi K2.7 Code | cline-pass/kimi-k2.7-code |
| Kimi K2.6 | cline-pass/kimi-k2.6 |
| DeepSeek V4 Pro | cline-pass/deepseek-v4-pro |
| DeepSeek V4 Flash | cline-pass/deepseek-v4-flash |
| MiMo-V2.5 | cline-pass/mimo-v2.5 |
| MiMo-V2.5-Pro | cline-pass/mimo-v2.5-pro |
| MiniMax M3 | cline-pass/minimax-m3 |
| Qwen3.7 Max | cline-pass/qwen3.7-max |
| Qwen3.7 Plus | cline-pass/qwen3.7-plus |