Create and manage portable, consent-scoped database pods. Handles document ingestion with embeddings and semantic search.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Ingestion │ ──► │ DB Pods │ ──► │ Generation │
│ (ingest) │ │ (storage) │ │ (query) │
└─────────────┘ └─────────────┘ └─────────────┘
When user asks to create a pod:
python3 .../scripts/pod.py create --type When user asks to add content:
python3 .../scripts/pod.py add --title "" --content "" --tags "" When user wants to ingest files:
python3 .../scripts/ingest.py ingest When user wants to search:
python3 .../scripts/ingest.py search "" When user asks to search notes:
python3 .../scripts/pod.py query --text "" When user asks to export:
python3 .../scripts/podsync.py pack pip install PyPDF2 python-docx pillow pytesseract sentence-transformers
~/.openclaw/data-pods/
# Create pod
python3 .../scripts/pod.py create research --type scholar
# Add note
python3 .../scripts/pod.py add research --title "..." --content "..." --tags "..."
# Ingest folder
python3 .../scripts/ingest.py ingest research ./documents/
# Semantic search
python3 .../scripts/ingest.py search research "transformers"
# List documents
python3 .../scripts/ingest.py list research
# Query notes
python3 .../scripts/pod.py query research --text "..."
共 1 个版本