Skip to content

NeuroClient

Narrow entry point fed to TypeDoc by the docs site.

The generated neuro.<group>.<method> surface (~654 wrappers) is documented separately by apps/docs/scripts/generate-api-docs.ts from prompts.json, which gives us cleaner per-method pages with the actual system prompts.

Here we only expose the small client-control surface so TypeDoc produces a focused “Client API” section.

new NeuroClient(options): NeuroClient;
Parameter Type

options

NeuroClientOptions

NeuroClient

readonly mode: Mode;

readonly model: string;

readonly temperature: number;

readonly maxTokens: number;
executeFunction(input): Promise<unknown>;

Execute a wrapped JS method via the LLM.

Parameter Type

input

ExecuteFunctionInput

Promise<unknown>