* refactor(memory): rename package second-brain to memory * refactor(memory): use OpenAI env naming and fix trailing slash * feat(memory): add chunking with env-configurable size and overlap * feat(memory): dedup search results by source in top-K * test(memory): add chunking, batching, dedup, live tests * docs(memory): update README and project map after rename * docs(handoff): add handoff and ADR-032 for memory refactor * docs(handoff): set PR number * fix(ci): reduce index.py complexity to rank A --------- Co-authored-by: opencode-agent <agent@opencode.local>
42 lines
No EOL
1.3 KiB
Text
42 lines
No EOL
1.3 KiB
Text
# AI Provider
|
|
AI_PROVIDER_BASE_URL=https://your-ai-provider.example.com/v1/
|
|
AI_PROVIDER_API_KEY=your-api-key-here
|
|
|
|
# OpenAI Embeddings (Memory CLI)
|
|
OPENAI_BASE_URL=https://api.openai.com/v1
|
|
OPENAI_API_KEY=your-openai-api-key
|
|
OPENAI_EMBEDDING_MODEL=gemini-embedding-2-preview
|
|
OPENAI_EMBEDDING_BATCH_SIZE=2048
|
|
MEMORY_CHUNK_SIZE=512
|
|
MEMORY_CHUNK_OVERLAP=64
|
|
|
|
# OpenCode Server
|
|
OPENCODE_SERVER_PASSWORD=your-opencode-server-password
|
|
|
|
# GitHub
|
|
GITHUB_TOKEN=your-github-token-here
|
|
|
|
# Context7 MCP
|
|
CONTEXT7_API_KEY=your-context7-api-key-here
|
|
|
|
# Telegram (optional)
|
|
TELEGRAM_API_ID=your-telegram-api-id
|
|
TELEGRAM_API_HASH=your-telegram-api-hash
|
|
TELEGRAM_BOT_TOKEN=your-telegram-bot-token
|
|
|
|
# Redis (optional)
|
|
REDIS_PASSWORD=your-redis-password
|
|
|
|
# Cloudflare Tunnel (optional — see separate tunnel repo)
|
|
CLOUDFLARE_TUNNEL_TOKEN=
|
|
TUNNEL_DOMAIN=
|
|
|
|
# Antidetect Browser MCP
|
|
# Local: http://localhost:8765/mcp
|
|
# Remote: http://<your-server-ip>:8765/mcp
|
|
ANTIDETECT_BROWSER_MCP_URL=http://localhost:8765/mcp
|
|
|
|
# OpenCode Memory (required — memory-setup tool exits 1 if OPENCODE_MEMORY_REMOTE unset)
|
|
# Point at your fork of opencode-memory (see README "Memory setup" for the upstream repo)
|
|
OPENCODE_MEMORY_REMOTE=https://github.com/your-username/your-opencode-memory.git
|
|
OPENCODE_MEMORY_DIR=/root/.local/share/opencode/opencode-memory |