From now on, typia setup wizard can detect package manager.
Also, new function typia.llm.application<App>()
has come (requested by @ryoppippi).
It composes LLM function calling application from a native TypeScript interface or class type.
export namespace llm {
// LLM function calling application schema
export function application<App extends object>(
options?: ILlmApplication.IOptions
): ILlmApplication;
// Individual type schema
export function schema<T>(): ILlmSchema;
}
What's Changed
- fix(docs): update SWC usage instructions by @ryoppippi in #1236
- feat(docs): update additional info by @ryoppippi in #1237
- feat: add orphan Type to
IJSONApplication
to save types by @ryoppippi in #1210 - docs(setup): correct a small grammar mistake by @ryoppippi in #1241
- Add more reserved keywords by @samchon in #1242
- Close #760:
IJsonApplication<Version, Types>
by @samchon in #1239 - build(deps): update @samchon/openapi requirement from ^0.4.6 to ^0.4.9 in the ecosystem group by @dependabot in #1243
- feat(docs): setup for @ryoppippi/unplugin-typia by @ryoppippi in #1250
- feat(website): migrate from webpack to rspack by @ryoppippi in #1248
- Revive sitemap.xml by @samchon in #1256
typia.llm.schema<T>()
function. by @samchon in #1258typia.llm.application<T>()
function. by @samchon in #1259- Description comments on LLM module. by @samchon in #1260
- LLM function calling parameter separation. by @samchon in #1261
- Documentation of LLM function callling appllication by @samchon in #1267
- feat(cli): new cli by @ryoppippi in #1245
- V6.10 by @samchon in #1268
- CLI detects package manager automatically. by @samchon in #1269
- Publish v6.10 update with TS 6.2 adjusting by @samchon in #1270
Full Changelog: v6.9.0...v6.10.0