@soulcraft/brainy 0.49.0 → 0.50.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](CONTRIBUTING.md)
|
|
9
9
|
|
|
10
|
-
**
|
|
10
|
+
**The world's only true Vector + Graph database - unified semantic search and knowledge graphs**
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -84,6 +84,34 @@ RUN npm run download-models # Download during build for offline production
|
|
|
84
84
|
|
|
85
85
|
---
|
|
86
86
|
|
|
87
|
+
## 🏆 Industry First: True Vector + Graph Database
|
|
88
|
+
|
|
89
|
+
**Brainy is the only database that natively combines vector search and graph relationships in a single, unified system.**
|
|
90
|
+
|
|
91
|
+
Unlike other solutions that bolt vector search onto traditional databases or require multiple systems:
|
|
92
|
+
|
|
93
|
+
✅ **Native Vector + Graph Architecture** - Purpose-built for both semantic search AND knowledge graphs
|
|
94
|
+
✅ **Single API, Dual Power** - Vector similarity search AND graph traversal in one database
|
|
95
|
+
✅ **True Semantic Relationships** - Not just "similar vectors" but meaningful connections like "develops", "owns", "causes"
|
|
96
|
+
✅ **Zero Integration Complexity** - No need to sync between Pinecone + Neo4j or pgvector + graph databases
|
|
97
|
+
|
|
98
|
+
**Why This Matters:**
|
|
99
|
+
```javascript
|
|
100
|
+
// Other solutions: Manage 2+ databases
|
|
101
|
+
const vectors = await pinecone.search(query) // Vector search
|
|
102
|
+
const graph = await neo4j.run("MATCH (a)-[r]->(b)") // Graph traversal
|
|
103
|
+
// How do you keep them in sync? 😢
|
|
104
|
+
|
|
105
|
+
// Brainy: One database, both capabilities
|
|
106
|
+
const results = await brainy.search("AI models", 10, {
|
|
107
|
+
includeVerbs: true, // Include relationships
|
|
108
|
+
verbTypes: ["develops"] // Filter by relationship type
|
|
109
|
+
})
|
|
110
|
+
// Everything stays perfectly synchronized! 🎉
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
This revolutionary architecture enables entirely new classes of AI applications that were previously impossible or prohibitively complex.
|
|
114
|
+
|
|
87
115
|
## ✨ What is Brainy?
|
|
88
116
|
|
|
89
117
|
**One API. Every environment. Zero configuration.**
|
|
@@ -885,6 +913,13 @@ spec:
|
|
|
885
913
|
❌ **Neo4j** - Great for graphs, no vector support
|
|
886
914
|
✅ **Brainy** - Vectors + graphs in one. Best of both worlds
|
|
887
915
|
|
|
916
|
+
### vs. "Vector + Graph" Solutions
|
|
917
|
+
|
|
918
|
+
❌ **Pinecone + Neo4j** - Two databases, sync nightmares, double the cost
|
|
919
|
+
❌ **pgvector + graph extension** - Hacked together, not native, performance issues
|
|
920
|
+
❌ **Weaviate "references"** - Limited graph capabilities, not true relationships
|
|
921
|
+
✅ **Brainy** - Purpose-built vector+graph architecture, single source of truth
|
|
922
|
+
|
|
888
923
|
### vs. DIY Solutions
|
|
889
924
|
|
|
890
925
|
❌ **Building your own** - Months of work, optimization nightmares
|