Feb 11, 2026 6 min read
Second Brain: Personal Knowledge Management Powered by AI
Upload documents, notes, bookmarks, and code snippets. Vincony's Second Brain indexes everything and lets you query your personal knowledge base using natural language — with AI that understands context across all your saved content.
Second Brain Knowledge Productivity
Your Personal AI Knowledge Base
Second Brain stores and indexes your documents, notes, code, and web clippings. When you ask a question, it searches your personal knowledge base first, then augments with AI — giving you answers grounded in your own context and notes.
Add Knowledge
second_brain.py
python
import vincony
client = vincony.Client(api_key="YOUR_KEY")
# Upload documents to your Second Brain
client.brain.upload(
files=["architecture.md", "meeting-notes.pdf", "api-spec.yaml"],
collection="project-alpha"
)
# Query your knowledge base
answer = client.brain.query(
question="What authentication method did we decide on for Project Alpha?",
collection="project-alpha"
)
print(answer.response)
for source in answer.sources:
print(f" From: {source.file} (page {source.page})")What You Can Store
- • Documents (PDF, DOCX, MD, TXT)
- • Code files and repositories
- • Web page bookmarks and clippings
- • Meeting notes and transcripts
- • Images with OCR text extraction
Pricing
Second Brain includes 1GB storage on Starter ($24.99/mo), 10GB on Power ($54.99/mo), and 100GB on Business ($199/mo). Queries cost 1-2 credits each.
Try It Free — 100 API Credits
Start using these tools today with Vincony's free Developer plan.
Get Free API Key