UNPKG

@copilotkit/runtime

Version:

<img src="https://github.com/user-attachments/assets/0a6b64d9-e193-4940-a3f6-60334ac34084" alt="banner" style="border-radius: 12px; border: 2px solid #d6d4fa;" />

24 lines (22 loc) 657 B
import { Action, Parameter } from "@copilotkit/shared"; //#region src/service-adapters/langchain/langserve.d.ts interface RemoteChainParameters { name: string; description: string; chainUrl: string; parameters?: Parameter[]; parameterType?: "single" | "multi"; } declare class RemoteChain { name: string; description: string; chainUrl: string; parameters?: Parameter[]; parameterType: "single" | "multi"; constructor(options: RemoteChainParameters); toAction(): Promise<Action<any>>; inferLangServeParameters(): Promise<void>; } //#endregion export { RemoteChain, RemoteChainParameters }; //# sourceMappingURL=langserve.d.cts.map