You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
("Architecture" and "Concurrency model" sections).
443
+
399
444
## Quickstart: repository graph
400
445
401
446
```bash
@@ -721,8 +766,8 @@ file. It never searches the working directory for `.env`, and explicit process v
721
766
|`ENGRAPHIS_ALLOW_AUTOMATIC_CRITICAL_RETENTION`|`false`| Opt in only when an LLM supervisor may automatically assign the long-lived `critical` class; explicit user-selected critical retention is unaffected |
722
767
|`ENGRAPHIS_WHISPER_MODEL`| Not set | Enables local faster-whisper audio/video transcription |
723
768
|`ENGRAPHIS_POSTGRES_DSN`| Not set | CLI-only PostgreSQL source; used for the connection and never stored |
724
-
|`ENGRAPHIS_POSTGRES_CONNECT_TIMEOUT`|`10`| PostgreSQL introspection connection timeout in seconds (bounded to 1–120) |
725
-
|`ENGRAPHIS_POSTGRES_STATEMENT_TIMEOUT_MS`|`30000`| Per-introspection PostgreSQL statement timeout in milliseconds (bounded to 1–300000) |
769
+
|`ENGRAPHIS_POSTGRES_CONNECT_TIMEOUT`|`10`| PostgreSQL introspection connection timeout in seconds (bounded to 1--120) |
770
+
|`ENGRAPHIS_POSTGRES_STATEMENT_TIMEOUT_MS`|`30000`| Per-introspection PostgreSQL statement timeout in milliseconds (bounded to 1--300000) |
726
771
|`ENGRAPHIS_GRAPH_TOKEN`| Not set | Bearer token for `engraphis-graph-server`; required off-loopback |
|`ENGRAPHIS_LLM_PROVIDER`|`openai`|`openai \| anthropic \| google \| openrouter \| custom`|
@@ -743,10 +788,20 @@ file. It never searches the working directory for `.env`, and explicit process v
743
788
|`ENGRAPHIS_CLOUD_ACCESS_TOKEN`| Not set | Optional short-lived access token for ephemeral jobs |
744
789
|`ENGRAPHIS_MANAGED_COMPUTE_CONSENT`|*(auto)*| Operator override only; default follows whether a cloud session is configured (connected = allowed, local-only = never). `0` opts a connected installation out; `1` permits local snapshot preparation but does not create a cloud credential or authorize an upload |
745
790
791
+
The optional cross-encoder reranker is model- and hardware-dependent. Treat its quality and
792
+
latency as deployment-specific until a versioned model identity, exact configuration, and
793
+
reproducible evaluation artifact are available for the comparison being reported.
794
+
746
795
See `.env.example` for the full variable inventory. Supply those values through the process
747
796
environment or the trusted config file above; copying it to an arbitrary `./.env` does not make
748
797
Engraphis load it.
749
798
799
+
> **Ablation fixture:**`python -m eval.ablation` is an offline deterministic check that prints
800
+
> `recall@5` comparisons for vector-only and hybrid retrieval, multi-hop graph arms, and
801
+
> retrieval policies, plus ordinary-recall age and semantic-confidence checks. It does not
802
+
> produce MRR, hit@5, or ms/query results. Use `python -m eval.reinforcement` for retention
803
+
> trajectories, and register evidence before quoting any benchmark results.
0 commit comments