@nola-lang/runtime
v0.1.4
Published
The Nola runtime apps depend on: intent resolution, ask boundary, defineConfig
Maintainers
Readme
@nola-lang/runtime
The runtime half of Nola — the one
package a Nola app depends on in production. Lowered .tsi code imports it,
and nola.config.ts gets defineConfig from it:
import { defineConfig } from "@nola-lang/runtime";
import { openai } from "@nola-lang/providers";
export default defineConfig({
providers: { default: openai("gpt-5-mini") },
});Public surface: defineConfig, the Intent<T>/Askable<T> types, the
NolaError family, redaction helpers, and the runtime configuration API.
Provider factories live in
@nola-lang/providers;
the dev toolchain (nola CLI, loader) is
nola-lang. The scaffold
(npm create nola) wires all three.
