UNPKG

@jackhua/mini-langchain

Version:

A lightweight TypeScript implementation of LangChain with cost optimization features

11 lines 290 B
import { BaseTool } from './base'; /** * Mock weather tool for demonstration */ export declare class WeatherTool extends BaseTool { name: string; description: string; private mockWeatherData; execute(input: string): Promise<string>; } //# sourceMappingURL=weather.d.ts.map