@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.
7 lines (6 loc) • 302 B
text/typescript
import type { HttpLlm } from "../HttpLlm";
import { IHttpResponse } from "../structures/IHttpResponse";
export declare namespace HttpLlmFunctionFetcher {
const execute: (props: HttpLlm.IFetchProps) => Promise<unknown>;
const propagate: (props: HttpLlm.IFetchProps) => Promise<IHttpResponse>;
}