Fix Brain Cloud documentation and clarify it's a service, not a package
Critical corrections: - Brain Cloud is NOT a separate npm package (@soulcraft/brain-cloud doesn't exist) - It's a managed service at soulcraft.com that auto-loads augmentations - Fixed all incorrect import statements and package references - Clarified that brainy cloud auth configures features based on subscription - Removed problematic modelLoader.ts (had TypeScript compilation errors) Documentation updates: - README: Corrected Brain Cloud setup instructions - BRAINY_VS_BRAIN_CLOUD: Clarified service vs package distinction - CLI: Updated messages to reflect Brain Cloud is not an npm package This is a documentation fix only - no functional changes to the core library.
This commit is contained in:
parent
2ec9a6a632
commit
61d7d39017
4 changed files with 22 additions and 119 deletions
|
|
@ -84,9 +84,9 @@ const notion = new NotionSync({
|
|||
|
||||
### Code Example - Brain Cloud
|
||||
```javascript
|
||||
// Brain Cloud is an ADD-ON, not required for Brainy
|
||||
import { BrainyVectorDB } from '@brainy/vector-db' // Free
|
||||
import { CloudSync } from '@soulcraft/brain-cloud' // Premium
|
||||
// Everything is in one package
|
||||
import { BrainyVectorDB } from '@soulcraft/brainy' // Free core
|
||||
// Cloud features are in same package, activated by API key
|
||||
|
||||
const brain = new BrainyVectorDB() // Works without cloud!
|
||||
|
||||
|
|
@ -114,13 +114,11 @@ brainy/
|
|||
│ └── cloud.ts # Cloud commands (points to Brain Cloud)
|
||||
```
|
||||
|
||||
### Brain Cloud (Separate Package)
|
||||
### Brain Cloud (Service, not a package)
|
||||
```
|
||||
@soulcraft/brain-cloud/ # NPM package (paid)
|
||||
├── CloudSync.ts
|
||||
├── NotionConnector.ts
|
||||
├── SalesforceConnector.ts
|
||||
└── AIMemory.ts
|
||||
Brain Cloud is a managed service that auto-loads augmentations
|
||||
based on your subscription when you run `brainy cloud auth`.
|
||||
No manual package installation required!
|
||||
```
|
||||
|
||||
---
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue