Skip to content

sandboxConsoleEntrySchema

const sandboxConsoleEntrySchema: ZodObject<{
level: ZodEnum<{
debug: "debug";
error: "error";
info: "info";
log: "log";
warn: "warn";
}>;
message: ZodString;
}, $strip>;

Defined in: console/console.ts:9

One captured console call from a script run. The console is the script’s only output channel — the notebook-cell stdout: data is internal kernel state, and whatever the script wants its caller (e.g. an agent) to see, it logs explicitly.