@xynehq/jaf
Version:
Juspay Agent Framework - A purely functional agent framework with immutable state and composable tools
10 lines • 395 B
TypeScript
/**
* A2A PostgreSQL Task Provider for JAF
* Pure functional PostgreSQL-based storage for A2A tasks
*/
import { A2ATaskProvider, A2APostgresTaskConfig } from '../types.js';
/**
* Create a PostgreSQL-based A2A task provider
*/
export declare const createA2APostgresTaskProvider: (config: A2APostgresTaskConfig, client: any) => Promise<A2ATaskProvider>;
//# sourceMappingURL=postgres.d.ts.map