mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
fix: install.md
This commit is contained in:
parent
492024bd48
commit
fbd70806ba
1 changed files with 11 additions and 3 deletions
|
|
@ -71,9 +71,17 @@ containerTag: orgId // Org members share memories
|
|||
```
|
||||
|
||||
**BOTH (ask which):**
|
||||
- Option A: `containerTag: \`\${userId}-\${orgId}\``
|
||||
- Option B: `containerTag: orgId, metadata: { userId }`
|
||||
- Option C: `containerTag: userId, metadata: { orgId }`
|
||||
|
||||
```typescript
|
||||
// Option A: Unique per user-org combination
|
||||
containerTag: `${userId}-${orgId}`
|
||||
|
||||
// Option B: Org-scoped with user metadata
|
||||
containerTag: orgId, metadata: { userId }
|
||||
|
||||
// Option C: User-scoped with org metadata
|
||||
containerTag: userId, metadata: { orgId }
|
||||
```
|
||||
|
||||
## STEP 5: INTEGRATION CODE
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue