langcode
Version:
A Plugin-Based Framework for Managing and Using LangChain
15 lines (14 loc) • 448 B
TypeScript
import { RequestsGetTool } from "langchain/tools";
import { PluginDescriptions } from "./plugin";
export type RequestsGetToolInitConfig = {};
export type RequestsGetToolRunArgs = {
url: string;
};
export interface RequestsGetToolExpose extends PluginDescriptions {
tool: RequestsGetTool | null;
}
export declare const RequestsGetToolPluginTypes: {
runArgs: RequestsGetToolRunArgs;
return: any;
expose: RequestsGetToolExpose;
};