@xynehq/jaf
Version:
Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools
13 lines • 396 B
TypeScript
/**
* JAF ADK - Production Weather Tool
*
* Real weather data fetching using OpenWeatherMap API
*/
import { Tool } from '../types';
/**
* Create a production weather tool using OpenWeatherMap API
* Requires OPENWEATHER_API_KEY environment variable
*/
export declare const createWeatherTool: (apiKey?: string) => Tool;
export default createWeatherTool;
//# sourceMappingURL=weather.d.ts.map