Spaces:
Runtime error
Runtime error
File size: 1,163 Bytes
5f70643 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | # Codebase baseline (active)
You should be on this stack locally and in production unless you explicitly opt into agentic mode.
| Field | Value |
|--------|--------|
| **Git baseline** | `e561e67` — RAG upload sanitisation |
| **Label** | `standard-rag-llm` |
| **Default generate** | `PRIMARY_GENERATE_PIPELINE=standard` |
| **Notes-only reports** | `AGENTIC_INSPECTOR_WHEN_NOTES_ONLY=false` (standard path) |
| **Agentic** | Opt-in: `PRIMARY_GENERATE_PIPELINE=agentic` or `POST /agentic/generate` |
## Verify at runtime
```bash
curl -s http://localhost:7860/health | jq '.primary_generate_pipeline, .codebase_baseline'
```
Expected:
```json
"standard"
{ "git_sha": "e561e67", "label": "standard-rag-llm", ... }
```
## Verify git
```bash
git log -1 --oneline
# e561e67 feat: RAG upload sanitisation layer before vector indexing
```
## Not on this baseline
These commits were rolled back (do not expect their behaviour):
- `7fa723a` — agentic inspector forced on notes-only
- `be9fd4a` — HF pilot / parallel SLA docs
- `970bad4` — HF OpenAI key guard (re-apply from stash if needed)
Stashed WIP: `git stash list` → `pre-rollback-to-e561e67`
|