@typia/transform 12.0.1 → 12.1.0-dev.20260325
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -21
- package/README.md +25 -25
- package/lib/FileTransformer.js +16 -12
- package/lib/FileTransformer.js.map +1 -1
- package/lib/FileTransformer.mjs +16 -12
- package/lib/FileTransformer.mjs.map +1 -1
- package/package.json +5 -5
- package/src/CallExpressionTransformer.ts +581 -581
- package/src/FileTransformer.ts +143 -143
- package/src/features/llm/LlmApplicationTransformer.ts +89 -89
- package/src/features/llm/LlmCoerceTransformer.ts +95 -95
- package/src/features/llm/LlmControllerTransformer.ts +100 -100
- package/src/features/llm/LlmCreateCoerceTransformer.ts +84 -84
- package/src/features/llm/LlmCreateParseTransformer.ts +84 -84
- package/src/features/llm/LlmParametersTransformer.ts +76 -76
- package/src/features/llm/LlmParseTransformer.ts +95 -95
- package/src/features/llm/LlmSchemaTransformer.ts +88 -88
- package/src/features/llm/LlmStructuredOutputTransformer.ts +86 -86
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
import {
|
|
2
|
-
LlmMetadataFactory,
|
|
3
|
-
LlmStructuredOutputProgrammer,
|
|
4
|
-
MetadataCollection,
|
|
5
|
-
MetadataFactory,
|
|
6
|
-
MetadataSchema,
|
|
7
|
-
} from "@typia/core";
|
|
8
|
-
import { ILlmSchema, ValidationPipe } from "@typia/interface";
|
|
9
|
-
import ts from "typescript";
|
|
10
|
-
|
|
11
|
-
import { ITransformProps } from "../../ITransformProps";
|
|
12
|
-
import { TransformerError } from "../../TransformerError";
|
|
13
|
-
|
|
14
|
-
export namespace LlmStructuredOutputTransformer {
|
|
15
|
-
export const transform = (props: ITransformProps): ts.Expression => {
|
|
16
|
-
// GET GENERIC ARGUMENT
|
|
17
|
-
if (!props.expression.typeArguments?.length)
|
|
18
|
-
throw new TransformerError({
|
|
19
|
-
code: "typia.llm.structuredOutput",
|
|
20
|
-
message: "no generic argument.",
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
const top: ts.Node = props.expression.typeArguments[0]!;
|
|
24
|
-
if (ts.isTypeNode(top) === false) return props.expression;
|
|
25
|
-
|
|
26
|
-
// GET TYPE AND CONFIG
|
|
27
|
-
const config: Partial<ILlmSchema.IConfig & { equals: boolean }> =
|
|
28
|
-
LlmMetadataFactory.getConfig({
|
|
29
|
-
context: props.context,
|
|
30
|
-
method: "structuredOutput",
|
|
31
|
-
node: props.expression.typeArguments[1],
|
|
32
|
-
}) as Partial<ILlmSchema.IConfig & { equals: boolean }>;
|
|
33
|
-
|
|
34
|
-
const type: ts.Type = props.context.checker.getTypeFromTypeNode(top);
|
|
35
|
-
|
|
36
|
-
if (type.isTypeParameter())
|
|
37
|
-
throw new TransformerError({
|
|
38
|
-
code: "typia.llm.structuredOutput",
|
|
39
|
-
message: "non-specified generic argument.",
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
// VALIDATE TYPE
|
|
43
|
-
const analyze = (validate: boolean): MetadataSchema => {
|
|
44
|
-
const result: ValidationPipe<MetadataSchema, MetadataFactory.IError> =
|
|
45
|
-
MetadataFactory.analyze({
|
|
46
|
-
checker: props.context.checker,
|
|
47
|
-
transformer: props.context.transformer,
|
|
48
|
-
options: {
|
|
49
|
-
absorb: validate,
|
|
50
|
-
escape: true,
|
|
51
|
-
constant: true,
|
|
52
|
-
validate:
|
|
53
|
-
validate === true
|
|
54
|
-
? (next) =>
|
|
55
|
-
LlmStructuredOutputProgrammer.validate({
|
|
56
|
-
config,
|
|
57
|
-
metadata: next.metadata,
|
|
58
|
-
explore: next.explore,
|
|
59
|
-
})
|
|
60
|
-
: undefined,
|
|
61
|
-
},
|
|
62
|
-
components: new MetadataCollection({
|
|
63
|
-
replace: MetadataCollection.replace,
|
|
64
|
-
}),
|
|
65
|
-
type,
|
|
66
|
-
});
|
|
67
|
-
if (result.success === false)
|
|
68
|
-
throw TransformerError.from({
|
|
69
|
-
code: "typia.llm.structuredOutput",
|
|
70
|
-
errors: result.errors,
|
|
71
|
-
});
|
|
72
|
-
return result.data;
|
|
73
|
-
};
|
|
74
|
-
analyze(true);
|
|
75
|
-
|
|
76
|
-
// GENERATE CODE
|
|
77
|
-
return LlmStructuredOutputProgrammer.write({
|
|
78
|
-
context: props.context,
|
|
79
|
-
modulo: props.modulo,
|
|
80
|
-
type,
|
|
81
|
-
metadata: analyze(false),
|
|
82
|
-
config,
|
|
83
|
-
name: (top as ts.TypeNode).getFullText().trim(),
|
|
84
|
-
});
|
|
85
|
-
};
|
|
86
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
LlmMetadataFactory,
|
|
3
|
+
LlmStructuredOutputProgrammer,
|
|
4
|
+
MetadataCollection,
|
|
5
|
+
MetadataFactory,
|
|
6
|
+
MetadataSchema,
|
|
7
|
+
} from "@typia/core";
|
|
8
|
+
import { ILlmSchema, ValidationPipe } from "@typia/interface";
|
|
9
|
+
import ts from "typescript";
|
|
10
|
+
|
|
11
|
+
import { ITransformProps } from "../../ITransformProps";
|
|
12
|
+
import { TransformerError } from "../../TransformerError";
|
|
13
|
+
|
|
14
|
+
export namespace LlmStructuredOutputTransformer {
|
|
15
|
+
export const transform = (props: ITransformProps): ts.Expression => {
|
|
16
|
+
// GET GENERIC ARGUMENT
|
|
17
|
+
if (!props.expression.typeArguments?.length)
|
|
18
|
+
throw new TransformerError({
|
|
19
|
+
code: "typia.llm.structuredOutput",
|
|
20
|
+
message: "no generic argument.",
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
const top: ts.Node = props.expression.typeArguments[0]!;
|
|
24
|
+
if (ts.isTypeNode(top) === false) return props.expression;
|
|
25
|
+
|
|
26
|
+
// GET TYPE AND CONFIG
|
|
27
|
+
const config: Partial<ILlmSchema.IConfig & { equals: boolean }> =
|
|
28
|
+
LlmMetadataFactory.getConfig({
|
|
29
|
+
context: props.context,
|
|
30
|
+
method: "structuredOutput",
|
|
31
|
+
node: props.expression.typeArguments[1],
|
|
32
|
+
}) as Partial<ILlmSchema.IConfig & { equals: boolean }>;
|
|
33
|
+
|
|
34
|
+
const type: ts.Type = props.context.checker.getTypeFromTypeNode(top);
|
|
35
|
+
|
|
36
|
+
if (type.isTypeParameter())
|
|
37
|
+
throw new TransformerError({
|
|
38
|
+
code: "typia.llm.structuredOutput",
|
|
39
|
+
message: "non-specified generic argument.",
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
// VALIDATE TYPE
|
|
43
|
+
const analyze = (validate: boolean): MetadataSchema => {
|
|
44
|
+
const result: ValidationPipe<MetadataSchema, MetadataFactory.IError> =
|
|
45
|
+
MetadataFactory.analyze({
|
|
46
|
+
checker: props.context.checker,
|
|
47
|
+
transformer: props.context.transformer,
|
|
48
|
+
options: {
|
|
49
|
+
absorb: validate,
|
|
50
|
+
escape: true,
|
|
51
|
+
constant: true,
|
|
52
|
+
validate:
|
|
53
|
+
validate === true
|
|
54
|
+
? (next) =>
|
|
55
|
+
LlmStructuredOutputProgrammer.validate({
|
|
56
|
+
config,
|
|
57
|
+
metadata: next.metadata,
|
|
58
|
+
explore: next.explore,
|
|
59
|
+
})
|
|
60
|
+
: undefined,
|
|
61
|
+
},
|
|
62
|
+
components: new MetadataCollection({
|
|
63
|
+
replace: MetadataCollection.replace,
|
|
64
|
+
}),
|
|
65
|
+
type,
|
|
66
|
+
});
|
|
67
|
+
if (result.success === false)
|
|
68
|
+
throw TransformerError.from({
|
|
69
|
+
code: "typia.llm.structuredOutput",
|
|
70
|
+
errors: result.errors,
|
|
71
|
+
});
|
|
72
|
+
return result.data;
|
|
73
|
+
};
|
|
74
|
+
analyze(true);
|
|
75
|
+
|
|
76
|
+
// GENERATE CODE
|
|
77
|
+
return LlmStructuredOutputProgrammer.write({
|
|
78
|
+
context: props.context,
|
|
79
|
+
modulo: props.modulo,
|
|
80
|
+
type,
|
|
81
|
+
metadata: analyze(false),
|
|
82
|
+
config,
|
|
83
|
+
name: (top as ts.TypeNode).getFullText().trim(),
|
|
84
|
+
});
|
|
85
|
+
};
|
|
86
|
+
}
|