@samchon/openapi
Version:
Universal OpenAPI to LLM function calling schemas. Transform any Swagger/OpenAPI document into type-safe schemas for OpenAI, Claude, Qwen, and more.
10 lines (9 loc) • 431 B
TypeScript
import { IHttpLlmApplication } from "../structures/IHttpLlmApplication";
import { IHttpMigrateApplication } from "../structures/IHttpMigrateApplication";
export declare namespace HttpLlmComposer {
const application: (props: {
migrate: IHttpMigrateApplication;
config?: Partial<IHttpLlmApplication.IConfig>;
}) => IHttpLlmApplication;
const shorten: (app: IHttpLlmApplication, limit?: number) => void;
}