Anuma
아누마로 할 수 있는 일
채팅창작앱 만들기문제 해결
핵심 기능
카운슬 모드대화 맥락 유지통합 메모리다양한 AI 모델프라이버시 우선 설계
업무 및 커리어
전문직개발자창업가구직자프리랜서소상공인부모
웰니스 및 건강
건강 및 피트니스정신 건강음식 및 영양
학생 및 학습
학생연구자언어 학습자교사 및 교육자
크리에이티브 및 콘텐츠
작가디자이너콘텐츠 크리에이터뮤지션
금융 및 법률
개인 재무법률 및 계약투자 클럽부동산
회사 소개채용브랜딩문의하기제휴
고객 지원 센터새로운 소식블로그자주 묻는 질문AI 프롬프트 라이브러리메모리 작동 방식오픈소스 LLM클로즈드소스 LLM
요금제
Get the appTry Anuma
Anuma
아누마로 할 수 있는 일
채팅창작앱 만들기문제 해결
핵심 기능
카운슬 모드대화 맥락 유지통합 메모리다양한 AI 모델프라이버시 우선 설계
업무 및 커리어
전문직개발자창업가구직자프리랜서소상공인부모
웰니스 및 건강
건강 및 피트니스정신 건강음식 및 영양
학생 및 학습
학생연구자언어 학습자교사 및 교육자
크리에이티브 및 콘텐츠
작가디자이너콘텐츠 크리에이터뮤지션
금융 및 법률
개인 재무법률 및 계약투자 클럽부동산
회사 소개채용브랜딩문의하기제휴
고객 지원 센터새로운 소식블로그자주 묻는 질문AI 프롬프트 라이브러리메모리 작동 방식오픈소스 LLM클로즈드소스 LLM
요금제
Get the appTry Anuma

프라이버시 우선 설계.
말이 아닌 구조로.

데이터는 내 기기에 저장되고, 자동으로 암호화됩니다. 아누마 서버도 암호화되지 않은 내 데이터를 볼 수 없습니다.

무료로 시작하기
01
on-device

Local-first storage

All data lives on your device by default. Conversations, memories, and files never leave unless you choose cloud backup.

02
AES-256

Field-level encryption

Sensitive content is encrypted before it touches the database. Metadata for queries stays in plaintext. Content stays locked.

03
isolated

Memory separation

A hard boundary between open source and closed source contexts. Private conversations are invisible to closed source LLMs.

04
opt-in

Encrypted backup

Cloud sync is optional. When enabled, data is encrypted on your device before upload. The backup service stores opaque blobs it cannot read.

05
in-memory

Session-scoped keys

Encryption keys exist only in memory. They are never written to disk. When you close the app, the keys are gone.

Data stays on your device.

Every piece of user data starts and stays on the device. The SDK uses WatermelonDB backed by IndexedDB in the browser and SQLite on mobile. Each wallet address gets its own isolated database instance.

Media files use the browser's Origin Private File System, a sandboxed filesystem that other web pages cannot access. Nothing is sent to a server unless you enable cloud backup.

Local databasePer-wallet isolationNo server storage
WatermelonDBORM
IndexedDB / SQLiteEngine
Per-wallet databaseIsolated
OPFS media sandboxSandboxed
Server storageNone
Local storage stack — On-device. WatermelonDB with per-wallet isolation, sandboxed media, no server storage by default.

Encrypted at the field level.

Sensitive content is encrypted — metadata needed for queries stays in plaintext. Your encryption key is derived from your wallet signature using 256-bit AES-GCM. Keys exist only in memory and are never written to disk.

Each encrypted value is version-prefixed (enc:v3:) so encrypted and plaintext data coexist seamlessly. Domain separation ensures distinct keys across applications.

AES-256-GCMIn-memory keysWallet-derived
What gets encrypted
Content
Thinking traces
Embeddings
File names
Memory entries
What stays readable
Role
Model ID
Timestamps
Token counts
Field-level encryption — Selective. Sensitive content is encrypted with AES-256-GCM; query metadata stays readable.

Your memory is private. Always.

Open source models do not retain your data or use it for training. Closed source models may retain data according to their own policies.

Because of this, open source models can access all your memories. Closed source models can only access memories from closed source conversations — unless you explicitly share specific memories with them through My Memory.

Separate memory scopesManual controlMy Memory
Open source modelsFull access
No data retention. No training. Can access all memories.
Restricted
Closed source modelsLimited access
May retain data or use it for training. Can only access closed source memories unless you share more.
You control what gets shared through My Memory
Memory separation — Scoped by source. Open-source models access every memory; closed-source models only see closed-source conversations unless you share more.

Backup that can't be read.

Cloud backup is completely opt-in. When enabled, your data is encrypted with your wallet-derived key and verified with a SHA-256 checksum before anything leaves your device. Anuma stores only the encrypted result on Cloudflare R2 — even a full server compromise yields nothing readable.

Delta sync means only changes are uploaded, not your entire history every time. You choose exactly what gets backed up and where it's stored.

Opt-in onlyEncrypted before uploadDelta sync
Encrypt on device
Your wallet key encrypts data before upload
Verify integrity
SHA-256 checksum confirms nothing was altered
Upload encrypted blob
Stored on Cloudflare R2. Anuma cannot read it.
You choose what to back up
Conversations
Media
Profile & Memories
Backup controls — Opt-in only. Encrypted on your device and verified with a SHA-256 checksum before anything leaves.

Only you hold the key.

Your encryption key is derived from your wallet each time you open Anuma. It lives in memory for the duration of your session and is cleared the moment you close the page. It is never saved to disk, never sent to a server, and never held by Anuma.

There is no escrow, no recovery mechanism, and no backdoor. If you lose your wallet, your encrypted data is gone. That's the point — no one else can ever access it.

No escrowNo backdoorSession-scoped
You sign in
Wallet authenticates through Privy
Start
Key is derived
SHA-256 + HKDF from your wallet signature
Derive
Key is active
Held in memory only. Encrypts and decrypts your data.
Active
You close the page
Key is gone. No trace on disk.
Gone
Key lifecycle — Session-scoped. Derived from your wallet on sign-in, held in memory only, gone the moment you close the page.

Layered security by design.

Five layers protect your data at every level of the stack.

LayerProtects againstImplementation
Local-first storageServer-side data breaches, central database compromiseWatermelonDB + IndexedDB/SQLite, per-wallet isolation
Field-level encryptionLocal device access, browser devtools inspectionAES-GCM-256 with HKDF-derived keys, version-prefixed
Memory separationData retention and training by closed source providersOpen source: full memory access, no retention. Closed source: restricted scope unless user shares
Encrypted backupCloud storage compromise, provider data accessClient-side encryption before upload, delta sync
Session-scoped keysPost-session device theft, storage-level attacksIn-memory only, cleared on page unload, wallet re-derivation

Architecture questions.

How Anuma keeps your data private at every layer.

Anuma uses 256-bit AES-GCM encryption. Keys are derived from your wallet signature using SHA-256 and HKDF with domain separation. Encrypted values are version-prefixed (enc:v3:) so encrypted and plaintext data coexist seamlessly. Encryption happens on your device before data goes anywhere.

No. By default, all data stays on your device. If you opt in to encrypted cloud backup, only encrypted blobs are stored on Cloudflare R2. Anuma cannot read them.

Your wallet is the only key. There is no server-side escrow, no recovery mechanism, and no backdoor. If you lose your wallet, all encrypted data — both local and cloud backups — is unrecoverable. This is by design.

No. Anuma never holds your encryption keys. Data is encrypted on your device before it leaves. Even with full server access, employees cannot decrypt your content.

Open source models do not retain your data or use it for training. Closed source models may retain data according to their own policies. Because of this, open source models can access all your memories. Closed source models can only access memories from closed source conversations unless you explicitly share more through My Memory.

Yes. Backup is opt-in only. Data is encrypted with your wallet-derived key before upload and verified with a SHA-256 checksum. Anuma stores only encrypted blobs on Cloudflare R2 using delta sync. Without your wallet, the data is unreadable.

Local data can be cleared from the app at any time. If you enabled cloud backup, you can delete all encrypted backups from settings. Deletion is immediate and permanent.

Built for privacy. Built for you.

Get Started Free

아누마로 할 수 있는 일

  • 채팅
  • 창작
  • 앱 만들기
  • 문제 해결

핵심 기능

  • 통합 메모리
  • 다양한 AI 모델
  • 카운슬 모드
  • 프라이버시 우선 설계

솔루션

  • 업무 및 커리어
  • 학생 및 학습
  • 크리에이티브 및 콘텐츠
  • 웰니스 및 건강
  • 금융 및 법률

회사 소개

  • 회사 소개
  • 채용
  • 브랜딩
  • 문의하기
  • 제휴

리소스

  • 도움말 센터
  • 블로그
  • 자주 묻는 질문
  • 프롬프트 라이브러리
  • 메모리 작동 방식
  • 오픈소스 LLM
  • 클로즈드소스 LLM
Anuma
Powered by
© 2026 Anuma, Inc. All rights reserved.|개인정보 처리방침|이용약관|쿠키 정책||