🧠
Neural
by Neutron

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
agent.ts
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'
});
Free tier available
Works with any LLM
2-minute integration
🧠
Neural
by Neutron
Get your free API key
No credit card · Free tier · 30 seconds

Already have a key? Enter your email to access your dashboard.

Check your inbox
We sent a 6-digit code to your email.

Didn't get it? Check spam. Expires in 10 minutes.

Welcome back,

API Key ● Active
nrl_...
Free tier
1,000 chars · 30 day retention
Get started
1
Install: npm install @neutron_me/neural
2
Init: new Neural({ apiKey: 'nrl_...' })
3
getMemory() before + log() after each session