3.23.0
This commit is contained in:
parent
75ae282861
commit
b066fbd333
3 changed files with 5 additions and 10 deletions
|
|
@ -631,7 +631,7 @@ const similar = await brain.search(existingContent, {
|
||||||
### AI Memory Layer with Context
|
### AI Memory Layer with Context
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
// Store conversation with relationships
|
// Store messages with relationships
|
||||||
const userId = await brain.add("User 123", {
|
const userId = await brain.add("User 123", {
|
||||||
nounType: NounType.User,
|
nounType: NounType.User,
|
||||||
tier: "premium"
|
tier: "premium"
|
||||||
|
|
@ -648,7 +648,7 @@ const topicId = await brain.add("Product Support", {
|
||||||
category: "support"
|
category: "support"
|
||||||
})
|
})
|
||||||
|
|
||||||
// Link conversation elements
|
// Link message elements
|
||||||
await brain.relate(userId, messageId, "sent")
|
await brain.relate(userId, messageId, "sent")
|
||||||
await brain.relate(messageId, topicId, "about")
|
await brain.relate(messageId, topicId, "about")
|
||||||
|
|
||||||
|
|
@ -872,11 +872,6 @@ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
||||||
|
|
||||||
## 📖 Documentation
|
## 📖 Documentation
|
||||||
|
|
||||||
### Infinite Agent Memory 💬
|
|
||||||
- [Conversation API Overview](docs/conversation/README.md) - **NEW!** Complete conversation management guide
|
|
||||||
- [MCP Integration for Claude Code](docs/conversation/MCP_INTEGRATION.md) - **NEW!** One-command setup
|
|
||||||
- [API Reference](docs/conversation/API_REFERENCE.md) - **NEW!** Full API documentation
|
|
||||||
|
|
||||||
### Framework Integration
|
### Framework Integration
|
||||||
- [Framework Integration Guide](docs/guides/framework-integration.md) - Complete framework setup guide
|
- [Framework Integration Guide](docs/guides/framework-integration.md) - Complete framework setup guide
|
||||||
- [Next.js Integration](docs/guides/nextjs-integration.md) - React and Next.js examples
|
- [Next.js Integration](docs/guides/nextjs-integration.md) - React and Next.js examples
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@soulcraft/brainy",
|
"name": "@soulcraft/brainy",
|
||||||
"version": "3.22.0",
|
"version": "3.23.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@soulcraft/brainy",
|
"name": "@soulcraft/brainy",
|
||||||
"version": "3.22.0",
|
"version": "3.23.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.540.0",
|
"@aws-sdk/client-s3": "^3.540.0",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@soulcraft/brainy",
|
"name": "@soulcraft/brainy",
|
||||||
"version": "3.22.0",
|
"version": "3.23.0",
|
||||||
"description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. 31 nouns × 40 verbs for infinite expressiveness.",
|
"description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. 31 nouns × 40 verbs for infinite expressiveness.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.js",
|
"module": "dist/index.js",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue