@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.
9 lines (8 loc) • 381 B
text/typescript
export declare namespace EndpointUtil {
const capitalize: (str: string) => string;
const pascal: (path: string) => string;
const splitWithNormalization: (path: string) => string[];
const reJoinWithDecimalParameters: (path: string) => string;
const normalize: (str: string) => string;
const escapeDuplicate: (keep: string[]) => (change: string) => string;
}