Establish clear separation: Brainy (free) vs Brain Cloud (optional)
CRITICAL: Brainy is 100% FREE and fully functional forever! Changes: - Added BRAINY_VS_BRAIN_CLOUD.md documenting the separation - Updated README to emphasize Brainy is completely free - Clarified Brain Cloud is optional add-on for team features - Updated CLI to show core commands work without any license - Added MODEL_STRATEGY.md for handling large model files - Fixed misleading license key references in documentation Core principle: Brainy = SQLite (free tool), Brain Cloud = Supabase (managed service)
This commit is contained in:
parent
7b09b9a5e0
commit
79bfcb8528
3 changed files with 26 additions and 7 deletions
|
|
@ -26,7 +26,7 @@ brainy augment available # Shows what can be installed
|
||||||
brainy augment add # Interactive mode
|
brainy augment add # Interactive mode
|
||||||
brainy augment add neural-import # Built-in
|
brainy augment add neural-import # Built-in
|
||||||
brainy augment add brainy-sentiment # Community (from npm)
|
brainy augment add brainy-sentiment # Community (from npm)
|
||||||
brainy augment add ai-memory --premium # Premium (needs license)
|
brainy augment add ai-memory # Brain Cloud feature (optional)
|
||||||
|
|
||||||
# Remove augmentations
|
# Remove augmentations
|
||||||
brainy augment remove sentiment-analyzer
|
brainy augment remove sentiment-analyzer
|
||||||
|
|
|
||||||
24
README.md
24
README.md
|
|
@ -20,6 +20,22 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## ✅ 100% Free & Open Source
|
||||||
|
|
||||||
|
**Brainy is completely free. No license keys. No limits. No catch.**
|
||||||
|
|
||||||
|
Every feature you see here works without any payment or registration:
|
||||||
|
- ✓ Full vector database
|
||||||
|
- ✓ Graph relationships
|
||||||
|
- ✓ Semantic search
|
||||||
|
- ✓ All storage adapters
|
||||||
|
- ✓ Complete API
|
||||||
|
- ✓ Forever free
|
||||||
|
|
||||||
|
> 🌩️ **Brain Cloud** is an optional add-on for teams who want cloud sync and enterprise connectors.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 🚀 What Can You Build?
|
## 🚀 What Can You Build?
|
||||||
|
|
||||||
### 💬 **AI Chat Apps** - That Actually Remember
|
### 💬 **AI Chat Apps** - That Actually Remember
|
||||||
|
|
@ -205,8 +221,8 @@ cortex.register(new Translator()) // Multi-language support
|
||||||
- 📊 Data Visualizer
|
- 📊 Data Visualizer
|
||||||
- 🎨 Image Understanding
|
- 🎨 Image Understanding
|
||||||
|
|
||||||
### 💼 **Premium Augmentations** (@soulcraft/brain-cloud)
|
### ☁️ **Brain Cloud** (Optional Add-On)
|
||||||
For teams that need AI memory and enterprise features:
|
🌟 **Brainy works perfectly without this!** Brain Cloud adds team features:
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
import {
|
import {
|
||||||
|
|
@ -216,9 +232,9 @@ import {
|
||||||
SalesforceConnect // CRM integration
|
SalesforceConnect // CRM integration
|
||||||
} from '@soulcraft/brain-cloud'
|
} from '@soulcraft/brain-cloud'
|
||||||
|
|
||||||
// Requires license key - get one at soulcraft.com
|
// Brain Cloud is a separate package (optional)
|
||||||
const aiMemory = new AIMemory({
|
const aiMemory = new AIMemory({
|
||||||
licenseKey: process.env.BRAINY_LICENSE_KEY
|
apiKey: process.env.BRAIN_CLOUD_KEY // Only for cloud features
|
||||||
})
|
})
|
||||||
|
|
||||||
cortex.register(aiMemory) // AI remembers everything
|
cortex.register(aiMemory) // AI remembers everything
|
||||||
|
|
|
||||||
|
|
@ -549,9 +549,12 @@ augment
|
||||||
output: process.stdout
|
output: process.stdout
|
||||||
})
|
})
|
||||||
|
|
||||||
console.log(chalk.cyan('🧠 Brain Cloud Activation'))
|
console.log(chalk.cyan('☁️ Brain Cloud Activation (Optional Premium)'))
|
||||||
console.log('')
|
console.log('')
|
||||||
console.log('Get your license at: ' + chalk.green('app.soulcraft.com'))
|
console.log(chalk.yellow('Note: Brainy core is 100% free and fully functional!'))
|
||||||
|
console.log('Brain Cloud adds optional team & sync features.')
|
||||||
|
console.log('')
|
||||||
|
console.log('Get Brain Cloud at: ' + chalk.green('app.soulcraft.com'))
|
||||||
console.log('(14-day free trial available)')
|
console.log('(14-day free trial available)')
|
||||||
console.log('')
|
console.log('')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue