refactor(search): structural per-instance query side-channel; doc search billing gap
Round-7 claude-review (no blockers): - 🟡 query_token_count/query_embedding were class-level defaults on SearchAlgorithm, relying on each subclass's __init__ to shadow them. Added SearchAlgorithm.__init__ that sets both as instance attributes and had BM25HybridSearchAlgorithm + SemanticSearchAlgorithm call super().__init__(), so per-request concurrency isolation is structural, not by convention. - 🟡 Documented the v1 search-path billing gap: record_search_usage fires only on a fully successful search, so if the query embed succeeded (provider billed + Prometheus recorded) but a later step (Qdrant/verify) raised, no tokens_embedded billing row is written. Added a NOTE at the call site. Left as-is (reasons in PR reply): deployment sequencing (CP METRIC_EVENT_NAMES already renamed; pipeline inert); Ollama _detect_dimension double dimension-set (idempotent, same value); SonarQube issues — 1 is the deliberate TODO(#282) (INFO), 4 are S7503 false positives on async test stubs that must be awaitable (gate green). Deck #284. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
973f80e7b9
commit
9369832977
@@ -593,6 +593,14 @@ def configure_semantic_tools(mcp: FastMCP):
|
||||
# query is embedded — and metered — exactly once regardless of how
|
||||
# many doc_types were searched. See record_search_usage for the
|
||||
# metric/privacy details.
|
||||
#
|
||||
# NOTE (v1 billing gap): this fires only on a fully successful
|
||||
# search. If the query embed succeeded (provider billed the tokens,
|
||||
# and Prometheus recorded them via record_embedding_tokens) but a
|
||||
# later step (Qdrant/verify) raised, no tokens_embedded row is
|
||||
# written — the embed cost is real but absent from the billing
|
||||
# ledger. Acceptable for v1 (search failures are rare and the meter
|
||||
# is not billed today); revisit if billing accuracy needs it.
|
||||
await record_search_usage(
|
||||
enabled=settings.usage_metering_enabled,
|
||||
user_id=username,
|
||||
|
||||
Reference in New Issue
Block a user