UNPKG

@ai-foundry/llm-sdk

Version:

This is just another SDK for the common LLM API providers.

11 lines 252 B
import { stringSchema } from '../models/data.models'; export const isString = (value) => { try { stringSchema.parse(value); return true; } catch { return false; } }; //# sourceMappingURL=validation.helpers.js.map