Skip to content

v6.10.0

Compare
Choose a tag to compare
@samchon samchon released this 09 Sep 17:31
· 86 commits to master since this release
ebf637c

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

Full Changelog: v6.9.0...v6.10.0