typia 12.0.0-dev.20260312 → 12.0.0-dev.20260312-2
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/README.md +9 -14
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -25,17 +25,11 @@ export namespace json {
|
|
|
25
25
|
|
|
26
26
|
// AI FUNCTION CALLING SCHEMA
|
|
27
27
|
export namespace llm {
|
|
28
|
-
// collection of function calling schemas
|
|
28
|
+
// collection of function calling schemas + validators/parsers
|
|
29
29
|
export function application<Class>(): ILlmApplication<Class>;
|
|
30
|
-
export function
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
): ILlmController; // +executor
|
|
34
|
-
// structured output
|
|
35
|
-
export function parameters<P>(): ILlmSchema.IParameters;
|
|
36
|
-
export function schema<T>(
|
|
37
|
-
$defs: Record<string, ILlmSchema>,
|
|
38
|
-
): ILlmSchema; // type schema
|
|
30
|
+
export function structuredOutput<P>(): ILlmStructuredOutput;
|
|
31
|
+
// lenient json parser + type corecion
|
|
32
|
+
export function parse<T>(str: string): T;
|
|
39
33
|
}
|
|
40
34
|
|
|
41
35
|
// PROTOCOL BUFFER
|
|
@@ -132,10 +126,11 @@ Check out the document in the [website](https://typia.io/docs/):
|
|
|
132
126
|
- [`parse()` functions](https://typia.io/docs/json/parse/)
|
|
133
127
|
- LLM Function Calling
|
|
134
128
|
- [`application()` function](https://typia.io/docs/llm/application/)
|
|
135
|
-
- [`
|
|
136
|
-
- [`
|
|
137
|
-
- [
|
|
138
|
-
- [
|
|
129
|
+
- [`structuredOutput()` function](https://typia.io/docs/llm/structuredOutput/)
|
|
130
|
+
- [`LlmJson` module](https://typia.io/docs/llm/json/)
|
|
131
|
+
- [MCP (Model Context Protocol)](https://typia.io/docs/llm/mcp/)
|
|
132
|
+
- [Vercel AI SDK](https://typia.io/docs/llm/vercel/)
|
|
133
|
+
- [LangChain](https://typia.io/docs/llm/langchain/)
|
|
139
134
|
- Protocol Buffer
|
|
140
135
|
- [Message Schema](https://typia.io/docs/protobuf/message)
|
|
141
136
|
- [`decode()` functions](https://typia.io/docs/protobuf/decode/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typia",
|
|
3
|
-
"version": "12.0.0-dev.20260312",
|
|
3
|
+
"version": "12.0.0-dev.20260312-2",
|
|
4
4
|
"description": "Superfast runtime validators with only one line",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"inquirer": "^8.2.5",
|
|
51
51
|
"package-manager-detector": "^0.2.0",
|
|
52
52
|
"randexp": "^0.5.3",
|
|
53
|
-
"@typia/transform": "^12.0.0-dev.20260312",
|
|
54
|
-
"@typia/
|
|
55
|
-
"@typia/
|
|
56
|
-
"@typia/
|
|
53
|
+
"@typia/transform": "^12.0.0-dev.20260312-2",
|
|
54
|
+
"@typia/core": "^12.0.0-dev.20260312-2",
|
|
55
|
+
"@typia/utils": "^12.0.0-dev.20260312-2",
|
|
56
|
+
"@typia/interface": "^12.0.0-dev.20260312-2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"typescript": ">=4.8.0 <5.10.0"
|