Prompt demo
Coding assistant
Draft a TypeScript adapter for an Alibaba Model Studio compatible chat completion endpoint.
GLM
GLMToken Plan GLM model for text generation and reasoning.
Visual demos
Draft a TypeScript adapter for an Alibaba Model Studio compatible chat completion endpoint.
Summarize the business case for Alibaba Token Plan Team Edition in five bullets.
Choose the best Qwen model for a low-latency catalog search assistant with cost controls.
These are safe placeholder slots. Swap in official Alibaba-provided logos, posters, and demo videos when asset usage is approved.
Pricing has not been verified. Treat this model as needs_review for production use.
No run output yet.
Provider terms Commercial status: unknown.
Available through Token Plan Team Edition. Execution requires a Token Plan-specific key/base URL adapter.
Limits need admin review.
curl -X POST https://nfero.com/api/models/glm-5.1/run \
-H 'content-type: application/json' \
-d '{"system_prompt":"You are a precise, helpful assistant.","prompt":"Explain why Singapore-region inference matters for a public AI demo.","temperature":0.7,"top_p":0.8,"max_tokens":512,"stream":false,"json_mode":false}'await fetch('/api/models/glm-5.1/run', {
method: 'POST',
headers: { 'content-type': 'application/json' },
body: JSON.stringify({
"system_prompt": "You are a precise, helpful assistant.",
"prompt": "Explain why Singapore-region inference matters for a public AI demo.",
"temperature": 0.7,
"top_p": 0.8,
"max_tokens": 512,
"stream": false,
"json_mode": false
})
});import requests
requests.post('https://nfero.com/api/models/glm-5.1/run', json={
"system_prompt": "You are a precise, helpful assistant.",
"prompt": "Explain why Singapore-region inference matters for a public AI demo.",
"temperature": 0.7,
"top_p": 0.8,
"max_tokens": 512,
"stream": false,
"json_mode": false
})No runs recorded yet.