GLM-5.3 is a large-scale reasoning model from Z.ai, built for complex software engineering and long-horizon agent tasks. It supports text input and output with a 1M-token context window, and improves...
# Запрос к API VEGA через z-ai/glm-5.3:online
curl https://api.vega.chat/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $VEGA_API_KEY" \
-d '{
"model": "z-ai/glm-5.3:online",
"messages": [
{ "role": "user", "content": "Hello!" }
]
}'