semanticNumber.ts
utils/semanticNumber.ts
No strong subsystem tag
37
Lines
1486
Bytes
1
Exports
1
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is one piece of the larger system. Its name, directory, imports, and exports show where it fits. Start by reading the exports and related files first.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with general runtime concerns. It contains 37 lines, 1 detected imports, and 1 detected exports.
Important relationships
Detected exports
semanticNumber
Keywords
innersemanticnumberthemschemaunknownacceptsliteralslikemodelhead_limit
Detected imports
zod/v4
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import { z } from 'zod/v4'
/**
* Number that also accepts numeric string literals like "30", "-5", "3.14".
*
* Tool inputs arrive as model-generated JSON. The model occasionally quotes
* numbers — `"head_limit":"30"` instead of `"head_limit":30` — and z.number()
* rejects that with a type error. z.coerce.number() is the wrong fix: it
* accepts values like "" or null by converting them via JS Number(), masking
* bugs rather than surfacing them.
*
* Only strings that are valid decimal number literals (matching /^-?\d+(\.\d+)?$/)
* are coerced. Anything else passes through and is rejected by the inner schema.
*
* z.preprocess emits {"type":"number"} to the API schema, so the model is
* still told this is a number — the string tolerance is invisible client-side
* coercion, not an advertised input shape.
*
* .optional()/.default() go INSIDE (on the inner schema), not chained after:
* chaining them onto ZodPipe widens z.output<> to unknown in Zod v4.
*
* semanticNumber() → number
* semanticNumber(z.number().optional()) → number | undefined
* semanticNumber(z.number().default(0)) → number
*/
export function semanticNumber<T extends z.ZodType>(
inner: T = z.number() as unknown as T,
) {
return z.preprocess((v: unknown) => {
if (typeof v === 'string' && /^-?\d+(\.\d+)?$/.test(v)) {
const n = Number(v)
if (Number.isFinite(n)) return n
}
return v
}, inner)
}