555e282cc4
ci / changelog_check (push) Waiting to run
ci / check_changes (push) Waiting to run
ci / build_mem0 (3.10) (push) Blocked by required conditions
ci / build_mem0 (3.11) (push) Blocked by required conditions
ci / build_mem0 (3.12) (push) Blocked by required conditions
CLI Node CI / lint (push) Waiting to run
CLI Node CI / test (20) (push) Waiting to run
CLI Node CI / test (22) (push) Waiting to run
CLI Node CI / build (push) Waiting to run
CLI Python CI / lint (push) Waiting to run
CLI Python CI / test (3.10) (push) Waiting to run
CLI Python CI / test (3.11) (push) Waiting to run
CLI Python CI / test (3.12) (push) Waiting to run
CLI Python CI / build (push) Waiting to run
openclaw checks / lint (push) Waiting to run
openclaw checks / test (20) (push) Waiting to run
openclaw checks / test (22) (push) Waiting to run
openclaw checks / build (push) Waiting to run
opencode-plugin checks / build (push) Waiting to run
pi-agent-plugin checks / lint (push) Waiting to run
pi-agent-plugin checks / test (20) (push) Waiting to run
pi-agent-plugin checks / test (22) (push) Waiting to run
pi-agent-plugin checks / build (push) Waiting to run
TypeScript SDK CI / check_changes (push) Waiting to run
TypeScript SDK CI / changelog_check (push) Blocked by required conditions
TypeScript SDK CI / build_ts_sdk (20) (push) Blocked by required conditions
TypeScript SDK CI / build_ts_sdk (22) (push) Blocked by required conditions
TypeScript SDK CI / integration_ts_sdk (20) (push) Blocked by required conditions
TypeScript SDK CI / integration_ts_sdk (22) (push) Blocked by required conditions
35 lines
1.1 KiB
Bash
35 lines
1.1 KiB
Bash
OPENAI_API_KEY=
|
|
|
|
# Optional: other bundled LLM/embedder providers (set the key for the one you want to use)
|
|
# ANTHROPIC_API_KEY=
|
|
# GOOGLE_API_KEY=
|
|
|
|
# Postgres — POSTGRES_PASSWORD is required; docker-compose will not start without it.
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_DB=postgres
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=
|
|
POSTGRES_COLLECTION_NAME=memories
|
|
|
|
ADMIN_API_KEY=
|
|
JWT_SECRET=
|
|
# Local development only. Leave false in production.
|
|
AUTH_DISABLED=false
|
|
DASHBOARD_URL=http://localhost:3000
|
|
APP_DB_NAME=mem0_app
|
|
|
|
# Default LLM and embedder models. Provider must be in BUNDLED_*_PROVIDERS
|
|
# (see server/main.py). Override to pin a specific model without editing code.
|
|
MEM0_DEFAULT_LLM_MODEL=gpt-4.1-nano-2025-04-14
|
|
MEM0_DEFAULT_EMBEDDER_MODEL=text-embedding-3-small
|
|
|
|
# Anonymous telemetry. Sends a single onboarding event per install
|
|
# (install UUID, email domain, server version, source). No PII.
|
|
# Set to false to opt out.
|
|
MEM0_TELEMETRY=true
|
|
|
|
# Days of request_logs history to keep when `make prune-logs` runs.
|
|
# Wire the prune command into cron/systemd in production.
|
|
REQUEST_LOG_RETENTION_DAYS=30
|