Docs
Connect your app
Any app with an "OpenAI-compatible" provider works. These are the values it asks for.
- Base URL
https://95-211-44-204.sslip.io/v1
- API key
- a key from the API keys page
- Model ID
glm-5.3-flash-uncensored
- Context window
- 1048576
- Max output tokens
- 16384
If the app asks for the API format, choose Chat Completions (OpenAI). The Anthropic and Responses formats are not supported.
OpenCodeCursorCline (VS Code)Roo Code (VS Code)Continue (VS Code, JetBrains)ZCodeZedJetBrains AI AssistantAiderSillyTavernOpen WebUI, Cherry Studio, LobeChat, Chatbox
Coding agents and editors
OpenCode
- Create a key on the API keys page.
- Add the provider below to opencode.json in your project folder, or globally to ~/.config/opencode/opencode.json.
- Put the key into the environment variable
AILOCAL_API_KEY, or paste the key itself into apiKey. - Start opencode, run /models and choose glm-5.3-flash-uncensored.
opencode.json
{
"provider": {
"ailocal": {
"npm": "@ai-sdk/openai-compatible",
"name": "AILocal",
"options": {
"baseURL": "https://95-211-44-204.sslip.io/v1",
"apiKey": "{env:AILOCAL_API_KEY}"
},
"models": {
"glm-5.3-flash-uncensored": {
"name": "GLM 5.3 Flash Uncensored",
"limit": { "context": 1048576, "output": 16384 }
}
}
}
}
}
Cursor
- Open Cursor Settings → Models.
- Under API Keys, turn on OpenAI API Key and paste your key.
- Turn on Override OpenAI Base URL and enter
https://95-211-44-204.sslip.io/v1. - Click + Add model, enter
glm-5.3-flash-uncensored and turn it on. Leave the Anthropic and Google fields empty. - Choose
glm-5.3-flash-uncensored in the chat or agent model list.
Cursor sends requests through its own servers, so it needs a public address like ours; localhost does not work.
Cline (VS Code)
- Open the Cline panel in VS Code and click the gear icon.
- Set API Provider to OpenAI Compatible.
- Base URL:
https://95-211-44-204.sslip.io/v1. API Key: your key. Model ID: glm-5.3-flash-uncensored. - In Model Configuration set Context Window to
1048576 and Max Output Tokens to 16384, then click Done.
Roo Code (VS Code)
- Open the Roo Code panel in VS Code, then Settings → Providers.
- Set API Provider to OpenAI Compatible.
- Base URL:
https://95-211-44-204.sslip.io/v1. API Key: your key. Model: glm-5.3-flash-uncensored. - Set Context Window to
1048576 and Max Output Tokens to 16384. Turn on image support if you send screenshots.
Continue (VS Code, JetBrains)
- Open the Continue config file config.yaml with the gear icon in the Continue panel.
- Add the model below to models and save. It appears in the Continue model list.
config.yaml
models:
- name: GLM 5.3 Flash Uncensored
provider: openai
model: glm-5.3-flash-uncensored
apiBase: https://95-211-44-204.sslip.io/v1
apiKey: sk-...
defaultCompletionOptions:
maxTokens: 16384
ZCode
- Open Settings → Model Settings and click Add Provider at the bottom of the list.
- Choose the OpenAI type, set Base URL to
https://95-211-44-204.sslip.io/v1, the format to Chat Completions, and paste your key. - Click Add Model and enter the ID
glm-5.3-flash-uncensored. - In Advanced set Context Window to
1048576 and Max Output to 16384. - Turn on the provider and the model.
Zed
- Run zed: open settings file and add the block below.
- Run agent: open settings, find OpenAI and paste your key.
- Choose
glm-5.3-flash-uncensored in the Agent panel.
settings.json
{
"language_models": {
"openai": {
"api_url": "https://95-211-44-204.sslip.io/v1",
"available_models": [
{ "name": "glm-5.3-flash-uncensored", "max_tokens": 1048576, "max_output_tokens": 16384 }
]
}
}
}
JetBrains AI Assistant
- Open Settings → Tools → AI Assistant → Providers & API keys.
- Under Third-party AI providers choose OpenAI-compatible, enter the URL
https://95-211-44-204.sslip.io/v1, paste your key and click Test Connection. - Choose
glm-5.3-flash-uncensored in AI Chat. In Model Assignment set the context to 1048576.
Aider
- Set two environment variables and start aider with the model name prefixed by openai/.
terminal
export OPENAI_API_BASE=https://95-211-44-204.sslip.io/v1
export OPENAI_API_KEY=sk-...
aider --model openai/glm-5.3-flash-uncensored
Chat apps
SillyTavern
- Open API Connections and choose Chat Completion.
- Set the source to Custom (OpenAI-compatible).
- Custom Endpoint:
https://95-211-44-204.sslip.io/v1. API Key: your key. Click Connect and choose glm-5.3-flash-uncensored.
Open WebUI, Cherry Studio, LobeChat, Chatbox
- Add a provider of the OpenAI (OpenAI-compatible) type.
- Base URL:
https://95-211-44-204.sslip.io/v1. API Key: your key. Add the model glm-5.3-flash-uncensored.