Flidget
“Databaset let us add memory to Flidget's retention copilot without a vector DB side quest. We store user context once and recall it on every exit flow.”
Vishal Chaudhary
Founder, Flidget
Databaset stores user context semantically and delivers the right memory to the LLM, every time.
Start with 3,000 API calls in your first month. No credit card required.
Store user context once. Databaset indexes it for meaning, not keywords.
Fetch the right memories before every LLM call. Sub-50ms target latency.
Works with GPT, Claude, Gemini, LangChain, and Vercel AI SDK.
Dashboard, API keys, usage limits, and billing built in from day one.
3K
API calls month 1
<50ms
recall target
2
official SDKs
PostgreSQL + dark mode
DATABASE
MEMORY LAYER
What stack should I use?
AI ANSWER
Since you prefer PostgreSQL and dark mode...
Integrations
Databaset is built on the habits that make the best AI teams successful: ship memory fast, keep retrieval semantic, and never rebuild vector plumbing per project.
store(userId, text)
await memory.store({
userId: "u_42",
text: "Prefers PostgreSQL"
})
recall(userId, query)
const { memories } = await memory.recall({
userId: "u_42",
query: userMessage
})
inject into prompt
system += memories.map(m => m.text)
await openai.chat.completions.create(...)
Quickstart
Install, store, recall, inject. No vector database project required.
One package. No other dependencies.
npm install @databaset/sdk
Send any text. We handle chunking, embedding, and storage automatically.
await memory.store(userId, "User prefers dark mode")
Semantic search returns the most relevant memories.
const context = await memory.recall(userId, userMessage)
Inject context into Claude, GPT-4, Gemini, or any model.
const reply = await anthropic.messages.create({
system: `You know this about the user: ${context}`,
messages: [{ role: 'user', content: userMessage }]
})Developers do not want another infrastructure project.
Install the SDK, store a memory, recall context, and reply. That is the full AI agent memory loop.
await memory.store(...) const context = await memory.recall(...) reply(context)
That is it.
Read the quickstart →import { Memory } from '@databaset/sdk' const memory = new Memory() await memory.store({ userId: 'user_123', text: 'User prefers dark mode and VS Code', metadata: { source: 'onboarding' },})Install
npm i @databaset/sdk
Latency target
<50ms p95 recall
Models
GPT · Claude · Gemini
Platform
Everything you need to add long-term memory to AI products without standing up a vector stack.
recall → 3 memories
• PostgreSQL preference
• dark mode UI
• side project stack
npm i @databaset/sdk
await memory.store({...})Live demo
Save up to 3 memories, ask 3 questions, and watch Databaset recall context before answering. No signup to start.
Demo: 0/3 memories·0/3 questions
Stored
Testimonials
Founders at Flidget, PRBoard, and MedOn use Databaset for long-term AI memory without standing up their own vector stack.
Start free with your whole team. Upgrade when you need more API calls, apps, and support.
Perfect for side projects and prototypes
For production apps with real users
For teams scaling AI products
Custom limits and dedicated support
If you cannot find what you are looking for, get in touch.