Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ REMEMBERSTACK_OPENROUTER_MAX_COMPLETION_TOKENS=32000
# reasoning model.
# REMEMBERSTACK_OPENROUTER_REASONING_EFFORT_MAP={"z-ai/glm-4.7-flash":"none","openai/gpt-5.6-luna":"high"}

# OBSERVABILITY (optional; empty or unset keeps all exporters disabled).
# Sentry-protocol error tracking works with Sentry, GlitchTip, and Bugsink.
# The environment defaults to REMEMBERSTACK_SELFHOST_DEPLOYMENT_SLUG and the
# error-event sample rate defaults to 1.0.
# REMEMBERSTACK_SENTRY_DSN=
# REMEMBERSTACK_SENTRY_ENVIRONMENT=
# REMEMBERSTACK_SENTRY_SAMPLE_RATE=1.0
# LoCoMo answer/judge tracing activates only when all three values are non-empty.
# LANGFUSE_PUBLIC_KEY=
# LANGFUSE_SECRET_KEY=
# LANGFUSE_HOST=https://cloud.langfuse.com

# Optional benchmark/deployment model overrides. Keep explicit model IDs for a
# reproducible run; do not use a rotating router such as openrouter/free.
# REMEMBERSTACK_E2_EXTRACT_MODEL=nvidia/nemotron-3-super-120b-a12b:free
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ RUN addgroup --system app \
--home /var/lib/rememberstack --no-create-home app \
&& mkdir -p /var/lib/rememberstack/forget-manifests \
&& chown -R app:app /var/lib/rememberstack \
&& uv sync --locked --no-dev --extra server --no-install-project
&& uv sync --locked --no-dev --extra observability --extra server --no-install-project

COPY src ./src

RUN uv sync --locked --no-dev --extra server
RUN uv sync --locked --no-dev --extra observability --extra server

# Provenance: the exact source revision baked into this image. The benchmark
# harness compares it against the revision it prepared with, so a run can never
Expand Down
Loading
Loading