|
11 | 11 | [](https://github.com/Maverick0351a/neuralcache/actions/workflows/codeql.yml) |
12 | 12 | [](LICENSE) |
13 | 13 | [](https://github.com/Maverick0351a/neuralcache/stargazers) |
| 14 | +[](./coverage-policy) |
14 | 15 |
|
15 | 16 | NeuralCache is a lightweight reranker for RAG pipelines that*actually remembers what helped*. It blends dense semantic similarity with a narrative memory of past wins and stigmergic pheromones that reward helpful passages while decaying stale ones—then spices in MMR diversity and ε-greedy exploration. The result: more relevant context for your LLM without rebuilding your stack. |
16 | 17 |
|
@@ -311,11 +312,12 @@ Have ideas? [Open an issue](https://github.com/Maverick0351a/neuralcache/issues/ |
311 | 312 | ```bash |
312 | 313 | pip install -e .[dev,test] |
313 | 314 | pre-commit install |
314 | | -ruff check&& mypy&& pytest |
| 315 | +ruff check&& mypy&& pytest --cov=neuralcache --cov-report=term-missing |
315 | 316 | ``` |
316 | 317 |
|
317 | 318 | - Look for[good first issues](https://github.com/Maverick0351a/neuralcache/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22). |
318 | 319 | - Add test coverage for user-visible changes. |
| 320 | +- Coverage gate currently enforces >=67%. We intend to ratchet this to 70%+ after adding deterministic mode & retention sweep tests. |
319 | 321 | - PRs with docs, demos, and eval improvements are extra appreciated. |
320 | 322 |
|
321 | 323 | Optionally, join the discussion in**#neuralcache** on Discord (coming soon—watch this space). |
|