typia
Version:
Superfast runtime validators with only one line
54 lines (53 loc) • 1.52 kB
JavaScript
import { __exportAll } from "./_virtual/_rolldown/runtime.mjs";
import { NoTransformConfigurationError } from "./transformers/NoTransformConfigurationError.mjs";
//#region src/llm.ts
var llm_exports = /* @__PURE__ */ __exportAll({
application: () => application,
coerce: () => coerce,
controller: () => controller,
createCoerce: () => createCoerce,
createParse: () => createParse,
parameters: () => parameters,
parse: () => parse,
schema: () => schema,
structuredOutput: () => structuredOutput
});
/** @internal */
function controller(..._args) {
NoTransformConfigurationError("llm.controller");
}
/** @internal */
function application() {
NoTransformConfigurationError("llm.application");
}
/** @internal */
function structuredOutput() {
NoTransformConfigurationError("llm.structuredOutput");
}
/** @internal */
function parameters() {
NoTransformConfigurationError("llm.parameters");
}
/** @internal */
function schema() {
NoTransformConfigurationError("llm.schema");
}
/** @internal */
function parse() {
NoTransformConfigurationError("llm.parse");
}
/** @internal */
function coerce() {
NoTransformConfigurationError("llm.coerce");
}
/** @internal */
function createParse() {
NoTransformConfigurationError("llm.createParse");
}
/** @internal */
function createCoerce() {
NoTransformConfigurationError("llm.createCoerce");
}
//#endregion
export { application, coerce, controller, createCoerce, createParse, llm_exports, parameters, parse, schema, structuredOutput };
//# sourceMappingURL=llm.mjs.map