A memory layer with ConceptNet integration and LLM-friendly interfaces
Project description
🧠 HawkinsDB: Neuroscience-Inspired Memory Layer for AI Applications
Building smarter AI applications isn't just about better models - it's about better memory. HawkinsDB is our take on giving AI systems a more human-like way to store and recall information, inspired by how our own brains work. Based on Jeff Hawkins' Thousand Brains Theory, it helps AI models manage complex information in a way that's both powerful and intuitive.
Why HawkinsDB?
While vector databases and embeddings have revolutionized AI applications, they often miss the nuanced, multi-dimensional nature of information. Here's why we built HawkinsDB:
-
It's not just another vector database: Instead of relying on fuzzy similarity searches, we enable precise, context-aware queries that understand the actual meaning and relationships of your data.
-
One memory system to rule them all: We've unified different types of memory (semantic, episodic, and procedural) into a single framework. Think about a customer support AI that can simultaneously access product specs, past customer interactions, and troubleshooting guides - all working together seamlessly.
-
Inspired by the human brain: We've based our architecture on neuroscience research, using concepts like Reference Frames and Cortical Columns to create a more robust and adaptable system.
-
You can actually understand what's happening: Unlike black-box embeddings, our structured approach lets you see and understand how information is connected and why certain decisions are made.
Requirements
- Python 3.10 or higher
- OpenAI API key (for LLM operations)
- SQLite or JSON storage backend
Installation
# Basic installation
pip install hawkinsdb
# Recommended installation with all features
pip install hawkinsdb[all]
# Install specific features
pip install hawkinsdb[conceptnet] # ConceptNet tools
Quick Start
Here's a simple example showing the power of HawkinsDB:
from hawkinsdb import HawkinsDB, LLMInterface
# Initialize
db = HawkinsDB()
llm = LLMInterface(db)
# Store knowledge with multiple perspectives
db.add_entity({
"column": "Semantic",
"name": "Coffee Cup",
"properties": {
"type": "Container",
"material": "Ceramic",
"capacity": "350ml"
},
"relationships": {
"used_for": ["Drinking Coffee", "Hot Beverages"],
"found_in": ["Kitchen", "Coffee Shop"]
}
})
# Query using natural language
response = llm.query("What can you tell me about the coffee cup?")
print(response)
How It Works
HawkinsDB manages information through three core concepts:
🧩 Reference Frames
Smart containers for information that capture what something is, its properties, relationships, and context. This enables natural handling of complex queries like "Find kitchen items related to coffee brewing."
🌐 Cortical Columns
Just like your brain processes information from multiple perspectives (visual, tactile, conceptual), our system stores knowledge in different "columns." This means an object isn't just stored as a single definition - it's understood from multiple angles.
Memory Types
We support three key types of memory:
- Semantic Memory: For storing facts, concepts, and general knowledge
- Episodic Memory: For keeping track of events and experiences over time
- Procedural Memory: For capturing step-by-step processes and workflows
💾 Storage Options
- SQLite: Rock-solid storage for production systems
- JSON: Quick and easy for prototyping
🔗 Smart Integrations
ConceptNet integration for automatic knowledge enrichment and relationship discovery.
Contributing
We love contributions! Here's how to help:
- Fork the repository
- Create your feature branch
- Make your changes
- Run the tests
- Submit a pull request
Development
# Clone and set up
git clone https://github.com/harishsg993010/HawkinsDB.git
cd HawkinsDB
pip install -e ".[dev]"
pytest tests/
🗺️ Status and Roadmap
Currently under active development. Our focus areas:
- Enhanced multi-modal processing
- Performance optimizations for large-scale deployments
- Extended LLM provider support
- Advanced querying capabilities
- Improved documentation and examples
License
HawkinsDB is available under the MIT License. See LICENSE for details.
Built by developers who think memory matters. Questions? Issues? Ideas? We'd love to hear from you!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hawkinsdb-1.0.1.tar.gz.
File metadata
- Download URL: hawkinsdb-1.0.1.tar.gz
- Upload date:
- Size: 55.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
308ab76c7b1c700efc8f5e5cc644532e94e67a458e9c7bd147538a61597a1882
|
|
| MD5 |
b784ceeef224e0416cee16719fe6c3f3
|
|
| BLAKE2b-256 |
05c90e474f525d5070df5af516a2a61902356b79e417da85d2194df4c64ffd95
|
File details
Details for the file hawkinsdb-1.0.1-py3-none-any.whl.
File metadata
- Download URL: hawkinsdb-1.0.1-py3-none-any.whl
- Upload date:
- Size: 28.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e9290cb737f12ef07d59ae63a868f85e0460fc5dff3a25d595953947db4069b
|
|
| MD5 |
dcd1c2418bb53995cee21864dd72cd0a
|
|
| BLAKE2b-256 |
39c7849fd4c917c5ac3bf5e4e2cc058883121b5ac316f875cbc8b642e901ab9f
|