import { Agent, createMemoryCache } from 'praisonai';
const cache = createMemoryCache({ ttl: 3600000 });
const agent = new Agent({
name: 'CachedAgent',
instructions: 'You are helpful.',
cache
});
// First call - hits API
const response1 = await agent.chat('Hello');
// Second call - returns cached response
const response2 = await agent.chat('Hello');