Configure models and endpoints
Set model selection and service endpoints explicitly for local and hosted workflows.
Service endpoints
The production Noumena service endpoints are:
NOUMENA_BASE_URL=https://api.noumena.com
NOUMENA_PLATFORM_BASE_URL=https://api.noumena.com
NOUMENA_OAUTH_WEB_BASE_URL=https://code.noumena.com
These variables are supported overrides. Normal managed use already selects the production values; set them explicitly for automation or when Noumena provides a compatible environment. Do not point a production credential at an untrusted proxy.
Model selection
The Noumena-hosted model aliases documented by this release are kimi-2.7-coder and glm-5.2:
ncode --model kimi-2.7-coder
ncode --model glm-5.2
You can also enter /model in the REPL, or set the same selection through NOUMENA_MODEL:
NOUMENA_MODEL=glm-5.2 ncode
The model selector reports the exact aliases available to the signed-in account after organization policy and plan entitlements are applied.
Direct-provider workflows
For a direct-provider workflow, pass the provider key and the provider-specific model or base URL required by that integration. Environment variables are the supported non-interactive configuration path; use a secret manager to inject them in persistent automation.
Source note
This page is adapted from the public Noumena-Network/code README, licensed under Apache-2.0.