Your AI agents
have amnesia.
We fixed that.
Neural gives your agents persistent memory across every session.
It learns, compounds, and improves — so your users never have to re-introduce themselves.
🐟 "Wait, who are you again?" — your agent, session #847
import { Neural } from '@neutron_me/neural';
const neural = new Neural({ apiKey: 'nrl_...' });
// Inject memory before every session
const { block } = await neural.getMemory({
agentId: 'support-bot', userId: user.id
});
// Log outcome — Neural learns
await neural.log({
agentId: 'support-bot', userId: user.id,
summary: 'User upgraded to Pro', outcome: 'success'
});