Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,20 @@ venv.bak/
# but do not ignore docs/openapi.json
!docs/openapi.json

# do not ignore apps/ config files
!apps/**/*.json
!apps/**/*.html
!apps/**/*.ts
!apps/**/*.tsx
!apps/**/*.js
!apps/**/*.cjs
!apps/**/*.css
!apps/**/*.md
!apps/**/*.yaml
!apps/**/*.yml
!apps/**/*.svg
!apps/**/*.sh


# mypy
.mypy_cache/
Expand Down
25 changes: 25 additions & 0 deletions apps/memos-local-openclaw/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ─── Embedding API ───
# Use any OpenAI-compatible embedding service, or leave blank for local offline model (Xenova/all-MiniLM-L6-v2)
EMBEDDING_PROVIDER=openai_compatible
EMBEDDING_API_KEY=your-embedding-api-key
EMBEDDING_ENDPOINT=https://your-embedding-api.com/v1
EMBEDDING_MODEL=bge-m3

# ─── Summarizer API ───
# OpenAI-compatible LLM for one-sentence chunk summaries
# Leave blank to use rule-based fallback (no LLM needed)
SUMMARIZER_PROVIDER=openai_compatible
SUMMARIZER_API_KEY=your-summarizer-api-key
SUMMARIZER_ENDPOINT=https://api.openai.com/v1
SUMMARIZER_MODEL=gpt-4o-mini
SUMMARIZER_TEMPERATURE=0

# ─── Memory Viewer ───
# Port for the web-based Memory Viewer (default: 18799)
# VIEWER_PORT=18799

# ─── Telemetry (opt-out) ───
# Anonymous usage analytics to help improve the plugin.
# No memory content, queries, or personal data is ever sent — only tool names, latencies, and version info.
# Enabled by default. Set to false to opt-out.
# TELEMETRY_ENABLED=false
23 changes: 23 additions & 0 deletions apps/memos-local-openclaw/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
node_modules/
dist/
*.tsbuildinfo
.env

# OS files
.DS_Store
Thumbs.db

# IDE
.vscode/
.idea/

# Generated / non-essential
package-lock.json
www/
docs/
ppt/

# Database files
*.sqlite
*.sqlite-journal
*.db
789 changes: 789 additions & 0 deletions apps/memos-local-openclaw/README.md

Large diffs are not rendered by default.

Loading