Continue
Who it’s for
Section titled “Who it’s for”Developers who use Continue inside an IDE and want a custom OpenAI-compatible model endpoint.
Prerequisites
Section titled “Prerequisites”- Continue installed
- A GlideflowAI API key
Get your API key
Section titled “Get your API key”Create a key in the GlideflowAI dashboard.
Base URL
Section titled “Base URL”Use https://api.glideflowai.com/v1.
Model ID
Section titled “Model ID”Start with glm-5.2. Copy the exact ID from the model catalog.
Minimal working config
Section titled “Minimal working config”Enter these values in Continue’s OpenAI-compatible provider fields:
Provider : OpenAI CompatibleBase URL : https://api.glideflowai.com/v1API Key : sk-your-keyModel ID : glm-5.2Test it
Section titled “Test it”Send a short prompt in Continue, or verify the endpoint directly:
curl https://api.glideflowai.com/v1/chat/completions \ -H "Authorization: Bearer sk-your-key" \ -H "Content-Type: application/json" \ -d '{"model":"glm-5.2","messages":[{"role":"user","content":"Say OK"}],"max_tokens":512}'Common errors
Section titled “Common errors”- If the tool exposes an output-token limit, use at least 512 for reasoning models.
- HTTP 503 with
无可用渠道means the model ID is wrong or not enabled for the key.
Notes / limitations
Section titled “Notes / limitations”Continue configuration formats can change between releases. This page documents provider values rather than a version-specific file schema.