diff --git a/examples/README.md b/examples/README.md index 863068eb..bd0709be 100644 --- a/examples/README.md +++ b/examples/README.md @@ -25,6 +25,9 @@ service keys. | [Multi-model contract review with the OpenAI Agents SDK](./contract-review-agent) | Running an OpenAI Agents SDK agent whose every model call (triage, orchestration, vision, OCR, embeddings, rerank, entity extraction, text-to-SQL, reasoning, and a safety guardrail) is served by one SIE cluster, each step on the right catalog model, with per-model observability | `chat/completions`, `encode`, `score`, `extract` | GPU SIE deployment required; standalone `uv` project; real contracts fetched from CUAD (CC BY 4.0) | Runnable demo | | [Turn difficult PDFs into Markdown](./document-to-markdown) | Preserving tables, reading order, headings, and form labels across real financial, academic, and government PDFs | `extract` | SIE endpoint with `docling`; standalone `uv` project; source PDFs fetched at run time | Runnable evaluation example | | [Review a flood claim packet](./insurance-claims-agent) | Finding an unsigned form and a $400 evidence mismatch across a policy, estimate, inventory, and damage photograph | `extract`, `score`, `chat/completions` | GPU SIE deployment; standalone `uv` project; public FEMA documents and public-domain photograph fetched at run time | Runnable agent example | +| [Trace a restated filing figure](./financial-filing-agent) | Following one reported figure through an original filing, corrective notice, and restatement while preserving source status | `extract`, `encode`, `score` | SIE endpoint; standalone `uv` project; public SEC facts and saved verified evidence | Runnable agent example | +| [Reproduce CMS's L1851 documentation finding](./prior-authorization-review-agent) | Tracing a published six-month requirement against a seven-month face-to-face encounter and CMS's recoupment result | `extract`, `encode`, `score` | SIE endpoint; standalone `uv` project; exact CMS published example | Runnable agent example | +| [Reconstruct a bearing failure](./maintenance-triage-agent) | Turning the NTSB's three East Palestine detector readings into a cited temperature and alert sequence without adding a new causal claim | `extract`, `encode`, `score` | SIE endpoint; standalone `uv` project; exact NTSB illustrated report spread | Runnable agent example | For docs publishing, lead with the quickest runnable demos, then use the benchmark and evaluation examples for deeper technical users. diff --git a/examples/financial-filing-agent/.env.example b/examples/financial-filing-agent/.env.example new file mode 100644 index 00000000..535bc541 --- /dev/null +++ b/examples/financial-filing-agent/.env.example @@ -0,0 +1,2 @@ +SIE_CLUSTER_URL=http://localhost:8080 +SIE_API_KEY= diff --git a/examples/financial-filing-agent/.gitignore b/examples/financial-filing-agent/.gitignore new file mode 100644 index 00000000..c1e16049 --- /dev/null +++ b/examples/financial-filing-agent/.gitignore @@ -0,0 +1,7 @@ +.env +.venv/ +.pytest_cache/ +.ruff_cache/ +__pycache__/ +*.pyc +runs/ diff --git a/examples/financial-filing-agent/README.md b/examples/financial-filing-agent/README.md new file mode 100644 index 00000000..5698f521 --- /dev/null +++ b/examples/financial-filing-agent/README.md @@ -0,0 +1,81 @@ +# Trace a restated figure back to the controlling filings + +This example follows one Pathward Financial fact through exact table rows from +an original Form 10-Q and a restated Form 10-K/A, plus exact sentences from an +Item 4.02 Form 8-K. It returns both versions, calculates the change, and keeps +the source status and company caveat attached. + +The result is narrow on purpose. It does not classify the restatement as fraud +or misconduct, and it does not make an investment recommendation. + +## What runs on SIE + +| Step | Model | Output | +|---|---|---| +| Parse the source packet | `docling-project/docling` | Markdown with source headings | +| Retrieve candidate passages | `BAAI/bge-m3` | Dense vectors and cosine ranking | +| Rerank against the exact question | `Qwen/Qwen3-Reranker-4B` | Ordered evidence with scores | +| Verify the cited spans | `urchade/gliner_multi-v2.1` | Exact source spans | +| Recover exact source spans | `fastino/gliner2-large-v1` | Table values, period, company and reliance-status entities | + +Each stage consumes the prior stage. The result fails closed if either entity +model omits a required source span. The original values come from the original +Form 10-Q table. The restated values come from the Form 10-K/A table, and the +pipeline checks that its “As Previously Reported” column matches the Form 10-Q. +The company caveat is retained verbatim only when the reranked evidence contains +its exact source sentence. Ordinary Python code calculates the difference with +decimal arithmetic. + +## Verified result + +The recorded component calls ran through the public SIE server on an NVIDIA L4. +The restated passage ranked first for the question about the restated Q3 FY2023 +figure. + +```text +Net income attributable to parent $45.096M -> $36.080M +Change -$9.016M (-20.0%) +Diluted EPS $1.68 -> $1.34 +Source status earlier affected filings should no longer be relied upon +``` + +Pathward's exact statement stays in the result: the accounting change does not +impact net income over the life of the portfolio, but changes when elements of +the programs are recognized. + +## Run it + +```bash +cd examples/financial-filing-agent +cp .env.example .env +uv sync + +uv run review-filing --run-id local +uv run eval-filing runs/local +``` + +Set `SIE_CLUSTER_URL` and `SIE_API_KEY` to use SIE Cloud. The default points to +a local server at `http://localhost:8080`. + +## Evidence bundle + +Every run writes: + +```text +runs//manifest.json endpoint, model IDs, fixture hashes, latency +runs//raw/parse.json complete Docling response +runs//raw/retrieve.json embeddings and cosine ranking +runs//raw/rerank.json complete reranker response +runs//raw/entities.json combined entity spans +runs//raw/gliner2-*.json raw GLiNER2 source-span responses +runs//raw/mapped.json validated record mapped from Docling table coordinates +runs//parsed.md parsed packet used downstream +runs//review.json source-versioned result and calculated delta +runs//evaluation.json deterministic checks +``` + +`verified-run/` contains the saved evidence used to design the example. It is +not a latency benchmark. The first request included model provisioning. + +See [fixtures/SOURCES.md](fixtures/SOURCES.md) for accession numbers, URLs, and +source checksums. diff --git a/examples/financial-filing-agent/config.yaml b/examples/financial-filing-agent/config.yaml new file mode 100644 index 00000000..de6bd713 --- /dev/null +++ b/examples/financial-filing-agent/config.yaml @@ -0,0 +1,16 @@ +cluster: + url: "http://localhost:8080" + api_key: "" + provision_timeout_s: 900 + +models: + parse: "docling-project/docling" + retrieve: "BAAI/bge-m3" + rerank: "Qwen/Qwen3-Reranker-4B" + entities: "urchade/gliner_multi-v2.1" + extract: "fastino/gliner2-large-v1" + +review: + query: "Compare Pathward's original and restated Q3 FY2023 net income and diluted EPS, then identify the superseded source and company caveat." + candidate_chunks: 8 + top_k: 8 diff --git a/examples/financial-filing-agent/financial_filing/__init__.py b/examples/financial-filing-agent/financial_filing/__init__.py new file mode 100644 index 00000000..0be4ba79 --- /dev/null +++ b/examples/financial-filing-agent/financial_filing/__init__.py @@ -0,0 +1 @@ +"""Source-versioned financial filing review.""" diff --git a/examples/financial-filing-agent/financial_filing/evaluate.py b/examples/financial-filing-agent/financial_filing/evaluate.py new file mode 100644 index 00000000..50afc0b1 --- /dev/null +++ b/examples/financial-filing-agent/financial_filing/evaluate.py @@ -0,0 +1,102 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +from dataclasses import asdict, dataclass +from pathlib import Path +from typing import Any + +from rich.console import Console +from rich.table import Table + +console = Console() + + +@dataclass(frozen=True) +class Check: + name: str + passed: bool + detail: str + + +def evaluate_review(review: dict[str, Any]) -> list[Check]: + change = review.get("change", {}) + excluded = set(review.get("claims_excluded", [])) + evidence = review.get("ranked_evidence", []) + evidence_text = "\n".join(str(row.get("text", "")) for row in evidence).casefold() + return [ + Check("route", review.get("route") == "superseded_figure", str(review.get("route"))), + Check("net-income-delta", abs(float(change.get("value_millions", 0)) + 9.016) < 0.0001, str(change)), + Check("eps-delta", abs(float(change.get("diluted_eps", 0)) + 0.34) < 0.0001, str(change)), + Check("percent-delta", abs(float(change.get("percent", 0)) + 20.0) < 0.05, str(change)), + Check( + "source-lineage", len(review.get("controlling_sources", [])) == 3, str(review.get("controlling_sources")) + ), + Check( + "caveat-preserved", + "over the life of the portfolio" in review.get("company_caveat", ""), + review.get("company_caveat", ""), + ), + Check( + "ranked-source-evidence", + bool(evidence) + and all( + token in evidence_text + for token in ( + "pathward financial", + "$45,096", + "$36,080", + "$1.68", + "$1.34", + "no longer", + "over the life of the portfolio", + ) + ), + str([row.get("chunk_id") for row in evidence]), + ), + Check( + "unsafe-claims-excluded", + {"fraud", "misconduct", "investment recommendation"} <= excluded, + ", ".join(sorted(excluded)), + ), + ] + + +def evaluate_run(run_dir: Path) -> bool: + review = json.loads((run_dir / "review.json").read_text(encoding="utf-8")) + checks = evaluate_review(review) + passed = all(check.passed for check in checks) + evaluation_path = run_dir / "evaluation.json" + evaluation_path.write_text( + json.dumps({"passed": passed, "checks": [asdict(check) for check in checks]}, indent=2) + "\n", + encoding="utf-8", + ) + manifest_path = run_dir / "manifest.json" + if manifest_path.exists(): + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + artifacts = [ + artifact for artifact in manifest.get("artifacts", []) if artifact.get("path") != "evaluation.json" + ] + artifacts.append( + {"path": "evaluation.json", "sha256": hashlib.sha256(evaluation_path.read_bytes()).hexdigest()} + ) + manifest["artifacts"] = artifacts + manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8") + table = Table("Check", "Result", "Detail") + for check in checks: + table.add_row(check.name, "[green]pass[/]" if check.passed else "[red]fail[/]", check.detail) + console.print(table) + return passed + + +def main() -> None: + parser = argparse.ArgumentParser(description="Evaluate a saved filing review") + parser.add_argument("run_dir", type=Path) + args = parser.parse_args() + if not evaluate_run(args.run_dir): + raise SystemExit(1) + + +if __name__ == "__main__": + main() diff --git a/examples/financial-filing-agent/financial_filing/review.py b/examples/financial-filing-agent/financial_filing/review.py new file mode 100644 index 00000000..1bc36ad4 --- /dev/null +++ b/examples/financial-filing-agent/financial_filing/review.py @@ -0,0 +1,605 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +import math +import os +import re +import time +from datetime import UTC, datetime +from decimal import Decimal +from pathlib import Path +from typing import Any + +import yaml +from dotenv import load_dotenv +from rich.console import Console +from sie_sdk import SIEClient +from sie_sdk.types import Item + +ROOT = Path(__file__).resolve().parents[1] +RUNS_DIR = ROOT / "runs" +DOCUMENT_PATH = ROOT / "fixtures" / "pathward-filing-packet.html" +CONFIG_PATH = ROOT / "config.yaml" +console = Console() + +FIGURE_ENTITY_LABELS = ["company", "reporting period", "filing", "money amount"] +STATUS_ENTITY_LABELS = ["company", "filing", "reliance status"] +REQUIRED_FIELDS = ( + "company", + "period", + "original_net_income", + "restated_net_income", + "original_diluted_eps", + "restated_diluted_eps", + "reliance_status", +) +GLINER2_FIGURE_LABELS = [ + "reporting period", + "previously reported net income", + "as restated net income", + "previously reported diluted EPS", + "as restated diluted EPS", +] +GLINER2_ORIGINAL_FIGURE_LABELS = ["reporting period", "net income", "diluted EPS"] +GLINER2_STATUS_LABELS = ["company", "prior filing reliance status"] +CAVEAT_SOURCE_TEXT = ( + "The change from net to gross basis presentation does not impact net income " + "over the life of the portfolio, but changes the timing of when elements of " + "the programs are recognized for accounting purposes." +) + + +def load_config() -> dict[str, Any]: + load_dotenv(ROOT / ".env") + config = yaml.safe_load(CONFIG_PATH.read_text(encoding="utf-8")) + config["cluster"]["url"] = os.getenv("SIE_CLUSTER_URL", config["cluster"]["url"]) + config["cluster"]["api_key"] = os.getenv("SIE_API_KEY", config["cluster"]["api_key"]) + return config + + +def _runtime_model_id(config: dict[str, Any], key: str) -> str: + model = str(config["models"][key]) + cluster_url = str(config["cluster"]["url"]).casefold() + if model == "docling-project/docling" and cluster_url.startswith( + ("http://localhost:", "http://127.0.0.1:", "http://[::1]:") + ): + return "docling" + return model + + +def sha256(path: Path) -> str: + return hashlib.sha256(path.read_bytes()).hexdigest() + + +def _json_default(value: Any) -> Any: + if hasattr(value, "tolist"): + return value.tolist() + if hasattr(value, "model_dump"): + return value.model_dump(mode="json") + raise TypeError(f"Cannot serialize {type(value).__name__}") + + +def _write_json(path: Path, value: Any) -> None: + path.write_text(json.dumps(value, indent=2, default=_json_default) + "\n", encoding="utf-8") + + +def _dense(result: dict[str, Any]) -> list[float]: + values: Any = result.get("dense") + if isinstance(values, dict): + values = values.get("values") or values.get("vector") + if hasattr(values, "tolist"): + values = values.tolist() + if not isinstance(values, list): + raise TypeError("Embedding response has no dense vector") + return [float(value) for value in values] + + +def _cosine(left: list[float], right: list[float]) -> float: + dot = sum(a * b for a, b in zip(left, right, strict=True)) + left_norm = math.sqrt(sum(value * value for value in left)) + right_norm = math.sqrt(sum(value * value for value in right)) + if left_norm == 0 or right_norm == 0: + raise RuntimeError("Embedding response has a zero-length vector") + return dot / (left_norm * right_norm) + + +def _chunks(markdown: str) -> list[str]: + chunks: list[str] = [] + current: list[str] = [] + for raw_line in markdown.splitlines(): + line = raw_line.strip() + if not line: + continue + if line.startswith("## ") and current: + chunks.append(" ".join(current)) + current = [line] + else: + current.append(line) + if current: + chunks.append(" ".join(current)) + chunks = [chunk for chunk in chunks if len(chunk) > 24] + if not chunks: + raise RuntimeError("Docling returned no usable filing chunks") + return chunks + + +def _number(value: str) -> Decimal: + match = re.search(r"-?\d+(?:\.\d+)?", value.replace(",", "")) + if not match: + raise RuntimeError(f"Structured field contains no number: {value!r}") + return Decimal(match.group()) + + +def _millions_from_thousands(value: str) -> Decimal: + amount = _number(value) + if abs(amount) < 1000: + raise RuntimeError(f"Expected a source-table value in thousands, received: {value!r}") + return amount / Decimal(1000) + + +def _normalize_source_text(value: str) -> str: + return " ".join(value.replace("$ ", "$").split()).casefold() + + +def _require_entity_evidence(result: dict[str, Any]) -> None: + observed = _normalize_source_text(" ".join(str(entity.get("text", "")) for entity in result.get("entities", []))) + required_spans = ("45,096", "36,080", "$1.68") + missing = sorted(span for span in required_spans if span.casefold() not in observed) + if missing: + raise RuntimeError(f"GLiNER omitted required source spans: {missing}") + if "pathward financial" not in observed or "june 30, 2023" not in observed: + raise RuntimeError("GLiNER omitted the company or reporting-period source span") + + +def _require_ranked_evidence(ranked: list[dict[str, Any]]) -> None: + if not ranked: + raise RuntimeError("Reranker returned no evidence") + texts: list[str] = [] + for row in ranked: + text = str(row.get("text", "")).strip() + if not row.get("chunk_id") or not text: + raise RuntimeError("Reranker evidence must retain its chunk identity and source text") + texts.append(text) + joined = _normalize_source_text("\n".join(texts)) + required = ( + "pathward financial", + "$45,096", + "$36,080", + "$1.68", + "$1.34", + "no longer be relied upon", + "over the life of the portfolio", + ) + missing = [token for token in required if token not in joined] + if missing: + raise RuntimeError(f"Reranker evidence omitted required filing source text: {missing}") + + +def _select_evidence_rows( + ranked: list[dict[str, Any]], + terms: tuple[str, ...], + stage: str, +) -> list[dict[str, Any]]: + selected = [row for row in ranked if any(term in str(row["text"]).casefold() for term in terms)] + if not selected: + raise RuntimeError(f"No reranked evidence remained for {stage}") + return sorted(selected, key=lambda row: int(str(row["chunk_id"]).split("-")[-1])) + + +def _select_source_sentences(text: str, terms: tuple[str, ...], stage: str) -> str: + sentences = re.split(r"(?<=[.!?])\s+", " ".join(text.split())) + selected = [sentence for sentence in sentences if any(term in sentence.casefold() for term in terms)] + if not selected: + raise RuntimeError(f"No exact source sentence remained for {stage}") + return " ".join(selected) + + +def _single_source_row(ranked: list[dict[str, Any]], term: str, stage: str) -> str: + rows = _select_evidence_rows(ranked, (term,), stage) + exact_rows = [str(row["text"]) for row in rows if term in str(row["text"]).casefold()] + if not exact_rows: + raise RuntimeError(f"No exact reranked source row remained for {stage}") + return min(exact_rows, key=len) + + +def _table_source_values(text: str, row_label: str) -> tuple[str, str]: + marker = f"| {row_label}" + start = text.casefold().find(marker.casefold()) + if start < 0: + raise RuntimeError(f"The reranked restated table omitted the {row_label} row") + cells = [cell.strip() for cell in text[start:].split("|")] + if len(cells) < 6 or cells[1].casefold() != row_label.casefold(): + raise RuntimeError(f"Docling returned an invalid {row_label} table row") + original, restated = cells[2], cells[5] + if not original or not restated: + raise RuntimeError(f"Docling omitted the original or restated {row_label} value") + return original, restated + + +def _original_table_source_value(text: str, row_label: str) -> str: + marker = f"| {row_label}" + start = text.casefold().find(marker.casefold()) + if start < 0: + raise RuntimeError(f"The reranked original Form 10-Q omitted the {row_label} row") + cells = [cell.strip() for cell in text[start:].split("|")] + if len(cells) < 3 or cells[1].casefold() != row_label.casefold(): + raise RuntimeError(f"Docling returned an invalid original Form 10-Q {row_label} row") + value = cells[2] + if not value: + raise RuntimeError(f"Docling omitted the original Form 10-Q {row_label} value") + return value + + +def _require_matching_source_values(original: str, previously_reported: str, stage: str) -> None: + if _normalize_source_text(original) != _normalize_source_text(previously_reported): + raise RuntimeError( + f"The original Form 10-Q and the Form 10-K/A 'As Previously Reported' {stage} values disagree" + ) + + +def _entity_span(result: dict[str, Any], label: str, tokens: tuple[str, ...], stage: str) -> str: + matches = [ + str(entity.get("text", "")).strip() + for entity in result.get("entities", []) + if str(entity.get("label", "")).casefold() == label.casefold() + and all(token in str(entity.get("text", "")).casefold() for token in tokens) + ] + if not matches: + raise RuntimeError(f"GLiNER2 omitted the exact {stage} source span") + return max(matches, key=len) + + +def _require_gliner2_figure_spans(result: dict[str, Any]) -> None: + observed = _normalize_source_text(" ".join(str(entity.get("text", "")) for entity in result.get("entities", []))) + required = ("three months ended june 30, 2023", "$45,096", "$36,080", "$1.68", "$1.34") + missing = [span for span in required if span not in observed] + if missing: + raise RuntimeError(f"GLiNER2 omitted required filing table spans: {missing}") + + +def _require_gliner2_original_figure_spans(result: dict[str, Any]) -> None: + observed = _normalize_source_text(" ".join(str(entity.get("text", "")) for entity in result.get("entities", []))) + required = ("$45,096", "$1.68") + missing = [span for span in required if span not in observed] + if missing: + raise RuntimeError(f"GLiNER2 omitted required original Form 10-Q spans: {missing}") + + +def build_review(data: dict[str, Any], ranked: list[dict[str, Any]]) -> dict[str, Any]: + _require_ranked_evidence(ranked) + missing = sorted(set(REQUIRED_FIELDS) - set(data)) + if missing: + raise RuntimeError(f"Mapped source evidence omitted required fields: {missing}") + original_income = _millions_from_thousands(str(data["original_net_income"])) + restated_income = _millions_from_thousands(str(data["restated_net_income"])) + original_eps = _number(str(data["original_diluted_eps"])) + restated_eps = _number(str(data["restated_diluted_eps"])) + expected = { + "original_income": Decimal("45.096"), + "restated_income": Decimal("36.080"), + "original_eps": Decimal("1.68"), + "restated_eps": Decimal("1.34"), + } + observed = { + "original_income": original_income, + "restated_income": restated_income, + "original_eps": original_eps, + "restated_eps": restated_eps, + } + if observed != expected: + raise RuntimeError(f"Mapped values do not match the cited source packet: {observed}") + period = str(data["period"]) + if "june 30, 2023" not in period.casefold(): + raise RuntimeError("Mapped period does not match the source table") + reliance = str(data["reliance_status"]) + if "no longer" not in reliance.casefold() or "relied" not in reliance.casefold(): + raise RuntimeError("Mapped reliance status does not identify the superseded source") + ranked_text = " ".join(str(row["text"]).strip() for row in ranked) + if CAVEAT_SOURCE_TEXT.casefold() not in ranked_text.casefold(): + raise RuntimeError("Reranked source evidence omitted Pathward's life-of-portfolio caveat") + + delta = restated_income - original_income + percent = (delta / original_income * Decimal(100)).quantize(Decimal("0.1")) + return { + "route": "superseded_figure", + "company": str(data["company"]), + "period": period, + "metric": "net income attributable to parent", + "original": { + "value_millions": float(original_income), + "diluted_eps": float(original_eps), + "source_id": "2023-10q", + }, + "restated": { + "value_millions": float(restated_income), + "diluted_eps": float(restated_eps), + "source_id": "2025-10ka", + }, + "change": { + "value_millions": float(delta), + "diluted_eps": float(restated_eps - original_eps), + "percent": float(percent), + }, + "source_status": reliance, + "company_caveat": CAVEAT_SOURCE_TEXT, + "controlling_sources": ["2023-10q", "2025-8k-item-4-02", "2025-10ka"], + "ranked_evidence": ranked, + "claims_excluded": ["fraud", "misconduct", "investment recommendation"], + } + + +def run(run_id: str) -> Path: + config = load_config() + parse_model = _runtime_model_id(config, "parse") + run_dir = RUNS_DIR / run_id + raw_dir = run_dir / "raw" + raw_dir.mkdir(parents=True, exist_ok=False) + calls: list[dict[str, Any]] = [] + timeout = config["cluster"]["provision_timeout_s"] + + with SIEClient(config["cluster"]["url"], api_key=config["cluster"]["api_key"] or None, timeout_s=900) as client: + started = time.perf_counter() + parsed = client.extract( + parse_model, + Item(id="pathward-source-packet", document=DOCUMENT_PATH), + options={"profile": "default"}, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "parse", + "model": parse_model, + "configured_model": config["models"]["parse"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "parse.json", parsed) + markdown = str(parsed.get("data", {}).get("markdown", "")) + (run_dir / "parsed.md").write_text(markdown, encoding="utf-8") + chunks = _chunks(markdown) + + started = time.perf_counter() + query_embedding = client.encode( + config["models"]["retrieve"], + Item(id="filing-query", text=config["review"]["query"]), + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + chunk_embeddings = [ + client.encode( + config["models"]["retrieve"], + Item(id=f"chunk-{index}", text=text), + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + for index, text in enumerate(chunks) + ] + retrieval = sorted( + [ + {"chunk_id": f"chunk-{index}", "text": text, "score": _cosine(_dense(query_embedding), _dense(result))} + for index, (text, result) in enumerate(zip(chunks, chunk_embeddings, strict=True)) + ], + key=lambda row: row["score"], + reverse=True, + )[: config["review"]["candidate_chunks"]] + calls.append( + { + "stage": "retrieve", + "model": config["models"]["retrieve"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json( + raw_dir / "retrieve.json", + {"query": query_embedding, "chunks": chunk_embeddings, "ranking": retrieval}, + ) + + started = time.perf_counter() + rerank_raw = client.score( + config["models"]["rerank"], + Item(id="filing-query", text=config["review"]["query"]), + [Item(id=row["chunk_id"], text=row["text"]) for row in retrieval], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + by_id = {row["chunk_id"]: row["text"] for row in retrieval} + ranked = [ + { + "chunk_id": row["item_id"], + "rank": row["rank"], + "score": row["score"], + "text": by_id[row["item_id"]], + } + for row in sorted(rerank_raw["scores"], key=lambda item: item["rank"]) + ][: config["review"]["top_k"]] + calls.append( + { + "stage": "rerank", + "model": config["models"]["rerank"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "rerank.json", rerank_raw) + original_table_text = _single_source_row(ranked, "original form 10-q", "original Form 10-Q extraction") + restated_table_text = _single_source_row(ranked, "restated form 10-k/a", "restated Form 10-K/A extraction") + status_rows = _select_evidence_rows(ranked, ("item 4.02 form 8-k",), "filing status") + status_text = "\n\n".join(row["text"] for row in status_rows) + status_model_text = _select_source_sentences( + status_text, + ('affected periods") should no longer be relied upon',), + "filing status extraction", + ) + + entity_outputs: list[dict[str, Any]] = [] + entity_inputs = [ + ("entities_original_10q", original_table_text, FIGURE_ENTITY_LABELS), + ("entities_restated_10ka", restated_table_text, FIGURE_ENTITY_LABELS), + ] + entity_inputs.append(("entities_status", status_model_text, STATUS_ENTITY_LABELS)) + for stage, text, labels in entity_inputs: + started = time.perf_counter() + response = client.extract( + config["models"]["entities"], + Item(id=stage, text=text), + labels=labels, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": stage, + "model": config["models"]["entities"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / f"{stage.replace('_', '-')}.json", response) + entity_outputs.append(response) + entities = { + "model": config["models"]["entities"], + "entities": [entity for response in entity_outputs for entity in response.get("entities", [])], + } + _write_json(raw_dir / "entities.json", entities) + _require_entity_evidence(entities) + + started = time.perf_counter() + gliner2_original = client.extract( + config["models"]["extract"], + Item(id="ranked-original-10q-table-evidence", text=original_table_text), + labels=GLINER2_ORIGINAL_FIGURE_LABELS, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "gliner2_original_10q", + "model": config["models"]["extract"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "gliner2-original-10q.json", gliner2_original) + _require_gliner2_original_figure_spans(gliner2_original) + + started = time.perf_counter() + gliner2_restated = client.extract( + config["models"]["extract"], + Item(id="ranked-restated-table-evidence", text=restated_table_text), + labels=GLINER2_FIGURE_LABELS, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "gliner2_restated_10ka", + "model": config["models"]["extract"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "gliner2-restated-10ka.json", gliner2_restated) + _require_gliner2_figure_spans(gliner2_restated) + + started = time.perf_counter() + gliner2_status = client.extract( + config["models"]["extract"], + Item(id="ranked-filing-status-evidence", text=status_text), + labels=GLINER2_STATUS_LABELS, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "gliner2_status", + "model": config["models"]["extract"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "gliner2-status.json", gliner2_status) + + original_income = _original_table_source_value(original_table_text, "Net income attributable to parent") + original_eps = _original_table_source_value(original_table_text, "Diluted") + previously_reported_income, restated_income = _table_source_values( + restated_table_text, "Net income attributable to parent" + ) + previously_reported_eps, restated_eps = _table_source_values(restated_table_text, "Diluted") + _require_matching_source_values(original_income, previously_reported_income, "net income") + _require_matching_source_values(original_eps, previously_reported_eps, "diluted EPS") + structured_data = { + "company": " ".join(_entity_span(gliner2_status, "company", ("pathward financial",), "company").split()), + "period": _entity_span( + gliner2_restated, + "reporting period", + ("june 30, 2023",), + "reporting period", + ), + "original_net_income": original_income, + "restated_net_income": restated_income, + "original_diluted_eps": original_eps, + "restated_diluted_eps": restated_eps, + "reliance_status": _entity_span( + gliner2_status, + "prior filing reliance status", + ("no longer", "relied"), + "reliance status", + ), + } + structured = { + "model": config["models"]["extract"], + "method": "Source-specific Docling table coordinates validated against source-specific GLiNER2 spans", + "data": structured_data, + "source_fields": { + "original_net_income": {"source_id": "2023-10q", "value": original_income}, + "original_diluted_eps": {"source_id": "2023-10q", "value": original_eps}, + "restated_net_income": {"source_id": "2025-10ka", "value": restated_income}, + "restated_diluted_eps": {"source_id": "2025-10ka", "value": restated_eps}, + }, + } + _write_json(raw_dir / "mapped.json", structured) + review = build_review(dict(structured.get("data", {})), ranked) + + _write_json(run_dir / "review.json", review) + artifact_paths = [run_dir / "parsed.md", run_dir / "review.json", *sorted(raw_dir.glob("*.json"))] + manifest = { + "created_at": datetime.now(UTC).isoformat(), + "endpoint": config["cluster"]["url"], + "sie_server_commit": os.getenv("SIE_SERVER_COMMIT"), + "run_command": os.getenv("SIE_RUN_COMMAND"), + "models": config["models"], + "fixture": {"path": str(DOCUMENT_PATH.relative_to(ROOT)), "sha256": sha256(DOCUMENT_PATH)}, + "artifacts": [{"path": str(path.relative_to(run_dir)), "sha256": sha256(path)} for path in artifact_paths], + "calls": calls, + "pipeline": [ + "parse", + "retrieve", + "rerank", + "entities_original_10q", + "entities_restated_10ka", + "entities_status", + "gliner2_original_10q", + "gliner2_restated_10ka", + "gliner2_status", + "source_specific_table_mapping", + "cross_filing_value_check", + "deterministic_validation", + ], + "decision_boundary": ( + "The review fails closed unless GLiNER and GLiNER2 recover source spans from both filing tables, " + "the original Form 10-Q values match the Form 10-K/A's previously reported column, and reranked " + "evidence retains the filing-status span and Pathward's exact life-of-portfolio caveat." + ), + } + _write_json(run_dir / "manifest.json", manifest) + console.print(f"[green]Wrote[/] {run_dir}") + return run_dir + + +def main() -> None: + parser = argparse.ArgumentParser(description="Trace a restated Pathward financial fact through SEC filings") + parser.add_argument("--run-id", default=datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ")) + args = parser.parse_args() + run(args.run_id) + + +if __name__ == "__main__": + main() diff --git a/examples/financial-filing-agent/fixtures/SOURCES.md b/examples/financial-filing-agent/fixtures/SOURCES.md new file mode 100644 index 00000000..244d94a3 --- /dev/null +++ b/examples/financial-filing-agent/fixtures/SOURCES.md @@ -0,0 +1,35 @@ +# Sources and fact boundaries + +The fixture contains exact table text and filing sentences from three public +SEC filings. The table excerpts retain the published headings, row labels, and +cell values in a smaller HTML table. It does not contain investor analysis. + +## Original Form 10-Q + +- Issuer: Pathward Financial, Inc. +- Accession: `0000907471-23-000090` +- Filed: August 8, 2023 +- URL: https://www.sec.gov/Archives/edgar/data/907471/000090747123000090/cash-20230630.htm +- Source SHA-256: `eb6db73a99332535297efeb8e70fee6d1bee4cb50c7d4f7744752c612d9d8c97` +- Exact text used: the table heading and the `Net income attributable to + parent` and `Diluted` rows. + +## Item 4.02 Form 8-K + +- Accession: `0000907471-25-000071` +- Filed: June 26, 2025 +- URL: https://www.sec.gov/Archives/edgar/data/907471/000090747125000071/cash-20250626.htm +- Source SHA-256: `d32864f4868c0c26f440cfe17a357bca5fe3f1095f5c74ed48bbb57db8d5dc69` +- Exact text used: part of the Item 4.02 non-reliance paragraph and the + sentence describing the effect on net income over the life of the portfolio. + +## Restated Form 10-K/A + +- Accession: `0000907471-25-000083` +- Filed: August 29, 2025 +- URL: https://www.sec.gov/Archives/edgar/data/907471/000090747125000083/cash-20240930.htm +- Source SHA-256: `eed8ca33bfaea864627fef65e0da305323e7d72e8640d47cb6c8781e3181b01a` +- Exact text used: the restatement table heading and the `Net income + attributable to parent` and `Diluted` rows. + +The example makes no fraud or misconduct claim and gives no investment advice. diff --git a/examples/financial-filing-agent/fixtures/pathward-filing-packet.html b/examples/financial-filing-agent/fixtures/pathward-filing-packet.html new file mode 100644 index 00000000..f9415e30 --- /dev/null +++ b/examples/financial-filing-agent/fixtures/pathward-filing-packet.html @@ -0,0 +1,112 @@ + + + + + Pathward Financial source excerpts + + +

Pathward Financial source excerpts

+ +
+

Original Form 10-Q

+

Accession 0000907471-23-000090. Filed August 8, 2023.

+

Three Months Ended June 30, 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Three Months Ended June 30, and Nine Months Ended June 30
(Dollars in thousands, except per share data)2023202220232022
Net income attributable to parent$45,096$22,391$127,709$132,966
Diluted$1.68$0.76$4.62$4.44
+
+ +
+

Item 4.02 Form 8-K

+

Accession 0000907471-25-000071. Filed June 26, 2025.

+

+ On June 26, 2025, the Audit Committee (the “Audit Committee”) of the Board of Directors of Pathward Financial, + Inc. (“Pathward Financial” or the “Company”), after discussion with management and the Company’s independent + registered public accounting firm, Crowe LLP, concluded that the Company’s audited consolidated financial + statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year + period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated + financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, + 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q + (collectively, the “Affected Periods”) should no longer be relied upon because of errors identified in such + financial statements, as described below. Similarly, any financial information in the Company’s prior earnings + releases, press releases, shareholder communications, investor presentations or other communications that + relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. +

+

+ The change from net to gross basis presentation does not impact net income over the life of the portfolio, but + changes the timing of when elements of the programs are recognized for accounting purposes. +

+
+ +
+

Restated Form 10-K/A

+

Accession 0000907471-25-000083. Filed August 29, 2025.

+

Three Months Ended June 30, 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Three Months Ended June 30, 2023, and Nine Months Ended June 30, 2023
(Dollars in thousands, except per share data)As Previously Reported on Form 10-QRestatement AdjustmentRestatement ReferenceAs RestatedAs Previously Reported on Form 10-QRestatement AdjustmentRestatement ReferenceAs Restated
Net income attributable to parent$45,096$(9,016)$36,080$127,709$(9,721)$117,988
Diluted$1.68$1.34$4.62$4.27
+
+ + diff --git a/examples/financial-filing-agent/fixtures/pathward-q3-fy2023.json b/examples/financial-filing-agent/fixtures/pathward-q3-fy2023.json new file mode 100644 index 00000000..0dbdd566 --- /dev/null +++ b/examples/financial-filing-agent/fixtures/pathward-q3-fy2023.json @@ -0,0 +1,30 @@ +{ + "company": "Pathward Financial, Inc.", + "period": "Q3 FY2023", + "facts": { + "original_net_income_millions": "45.096", + "restated_net_income_millions": "36.080", + "original_diluted_eps": "1.68", + "restated_diluted_eps": "1.34" + }, + "company_caveat": "Pathward expects the timing and presentation change to leave the life-of-portfolio net-income profile unchanged.", + "passages": [ + { + "id": "2023-10q", + "text": "The original Q3 FY2023 Form 10-Q reported net income attributable to the parent of $45.096 million and diluted EPS of $1.68." + }, + { + "id": "2025-10ka", + "text": "The restated filing reports Q3 FY2023 net income attributable to the parent of $36.080 million and diluted EPS of $1.34." + }, + { + "id": "2025-8k-item-4-02", + "text": "Pathward said affected prior filings and communications should no longer be relied upon." + }, + { + "id": "2025-company-caveat", + "text": "Pathward expects the change in timing and presentation to leave the life-of-portfolio net-income profile unchanged." + } + ], + "extraction_text": "Pathward Financial's original Q3 FY2023 Form 10-Q reported net income attributable to the parent of $45.096 million and diluted EPS of $1.68. The restated Form 10-K/A reports $36.080 million and $1.34 for the same quarter. The affected prior filings should no longer be relied upon. Pathward expects the timing and presentation change to leave the life-of-portfolio net-income profile unchanged." +} diff --git a/examples/financial-filing-agent/pyproject.toml b/examples/financial-filing-agent/pyproject.toml new file mode 100644 index 00000000..b19b48d8 --- /dev/null +++ b/examples/financial-filing-agent/pyproject.toml @@ -0,0 +1,36 @@ +[project] +name = "financial-filing-agent" +version = "0.1.0" +description = "Trace a restated financial fact through public SEC filings with SIE" +readme = "README.md" +requires-python = ">=3.12,<3.13" +dependencies = [ + "python-dotenv>=1.0", + "pyyaml>=6.0", + "rich>=13.7", + "sie-sdk>=0.6.23", +] + +[project.scripts] +review-filing = "financial_filing.review:main" +eval-filing = "financial_filing.evaluate:main" + +[dependency-groups] +dev = [ + "pytest>=9.0", + "ruff>=0.14", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["financial_filing"] + +[tool.ruff] +line-length = 120 +target-version = "py312" + +[tool.pytest.ini_options] +testpaths = ["tests"] diff --git a/examples/financial-filing-agent/tests/test_review.py b/examples/financial-filing-agent/tests/test_review.py new file mode 100644 index 00000000..dd1f79db --- /dev/null +++ b/examples/financial-filing-agent/tests/test_review.py @@ -0,0 +1,192 @@ +import hashlib +import json +from pathlib import Path + +from financial_filing.evaluate import evaluate_review +from financial_filing.review import ( + _chunks, + _original_table_source_value, + _require_entity_evidence, + _require_matching_source_values, + _runtime_model_id, + _table_source_values, + build_review, +) + +ROOT = Path(__file__).resolve().parents[1] + + +def test_fixture_preserves_the_sec_table_rows_and_item_402_sentences() -> None: + source = (ROOT / "fixtures" / "pathward-filing-packet.html").read_text(encoding="utf-8") + assert "$45,096" in source + assert "$36,080" in source + assert "$1.68" in source + assert "$1.34" in source + assert "should no longer be relied upon because of errors identified" in source + assert "does not impact net income over the life of the portfolio" in source + + +def test_public_docling_id_translates_only_for_a_direct_local_server() -> None: + local = {"cluster": {"url": "http://127.0.0.1:8080"}, "models": {"parse": "docling-project/docling"}} + cloud = {"cluster": {"url": "https://api.superlinked.com"}, "models": {"parse": "docling-project/docling"}} + assert _runtime_model_id(local, "parse") == "docling" + assert _runtime_model_id(cloud, "parse") == "docling-project/docling" + + +def structured_data() -> dict[str, str]: + return { + "company": "Pathward Financial", + "period": "Three Months Ended June 30, 2023", + "original_net_income": "$45,096", + "restated_net_income": "$36,080", + "original_diluted_eps": "$1.68", + "restated_diluted_eps": "$1.34", + "reliance_status": "Affected prior filings should no longer be relied upon.", + } + + +def ranked_evidence() -> list[dict[str, object]]: + return [ + { + "chunk_id": "chunk-0", + "rank": 1, + "score": 0.99, + "text": ( + "Pathward Financial, Three Months Ended June 30, 2023. Net income attributable to parent was " + "$45,096 and diluted EPS was $1.68. The restated table reports $36,080 and $1.34. The affected " + "periods should no longer be relied upon. The change from net to gross basis presentation does " + "not impact net income over the life of the portfolio, but changes the timing of when elements " + "of the programs are recognized for accounting purposes." + ), + } + ] + + +def test_build_review_computes_source_version_delta() -> None: + review = build_review(structured_data(), ranked_evidence()) + assert review["change"] == {"value_millions": -9.016, "diluted_eps": -0.34, "percent": -20.0} + assert review["route"] == "superseded_figure" + + +def test_verified_review_contract() -> None: + assert all(check.passed for check in evaluate_review(build_review(structured_data(), ranked_evidence()))) + + +def test_review_fails_closed_on_missing_structured_field() -> None: + data = structured_data() + del data["reliance_status"] + try: + build_review(data, ranked_evidence()) + except RuntimeError as exc: + assert "omitted required fields" in str(exc) + else: + raise AssertionError("build_review accepted incomplete model evidence") + + +def test_review_fails_closed_without_exact_company_caveat() -> None: + evidence = ranked_evidence() + evidence[0]["text"] = str(evidence[0]["text"]).replace( + "The change from net to gross basis presentation does not impact net income " + "over the life of the portfolio, but changes the timing of when elements of " + "the programs are recognized for accounting purposes.", + "Net income over the life of the portfolio may change.", + ) + try: + build_review(structured_data(), evidence) + except RuntimeError as exc: + assert "life-of-portfolio caveat" in str(exc) + else: + raise AssertionError("build_review accepted evidence without the exact company caveat") + + +def test_review_fails_closed_without_ranked_evidence() -> None: + try: + build_review(structured_data(), []) + except RuntimeError as exc: + assert "no evidence" in str(exc) + else: + raise AssertionError("build_review accepted an empty reranker response") + + +def test_gliner_gate_requires_all_primary_source_amounts() -> None: + complete_entities = { + "entities": [ + {"text": "Pathward Financial"}, + {"text": "June 30, 2023"}, + {"text": "$45,096"}, + {"text": "$36,080"}, + {"text": "$1.68"}, + {"text": "$1.34"}, + ] + } + _require_entity_evidence(complete_entities) + complete_entities["entities"] = [entity for entity in complete_entities["entities"] if entity["text"] != "$36,080"] + try: + _require_entity_evidence(complete_entities) + except RuntimeError as exc: + assert "required source spans" in str(exc) + else: + raise AssertionError("GLiNER gate accepted evidence without the restated amount") + + +def test_docling_line_breaks_do_not_split_source_sections() -> None: + markdown = """# Pathward Q3 FY2023 source packet + +## Original Form 10-Q + +Three Months Ended June 30, 2023. Net income + +was $45,096 and diluted EPS was $1.68. + +## Restated Form 10-K/A + +Three Months Ended June 30, 2023. Restated net income + +was $36,080 and diluted EPS was $1.34. +""" + assert _chunks(markdown) == [ + "# Pathward Q3 FY2023 source packet", + "## Original Form 10-Q Three Months Ended June 30, 2023. Net income was $45,096 and diluted EPS was $1.68.", + ( + "## Restated Form 10-K/A Three Months Ended June 30, 2023. " + "Restated net income was $36,080 and diluted EPS was $1.34." + ), + ] + + +def test_original_values_are_read_from_the_original_filing_and_cross_checked() -> None: + original = ( + "## Original Form 10-Q | Net income attributable to parent | $45,096 | $22,391 | | Diluted | $1.68 | $0.76 |" + ) + restated = ( + "## Restated Form 10-K/A " + "| Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | " + "| Diluted | $1.68 | | | $1.34 |" + ) + original_income = _original_table_source_value(original, "Net income attributable to parent") + original_eps = _original_table_source_value(original, "Diluted") + previously_reported_income, restated_income = _table_source_values(restated, "Net income attributable to parent") + previously_reported_eps, restated_eps = _table_source_values(restated, "Diluted") + _require_matching_source_values(original_income, previously_reported_income, "net income") + _require_matching_source_values(original_eps, previously_reported_eps, "diluted EPS") + assert (original_income, restated_income, original_eps, restated_eps) == ("$45,096", "$36,080", "$1.68", "$1.34") + + +def test_cross_filing_check_rejects_a_mismatched_previously_reported_value() -> None: + try: + _require_matching_source_values("$45,096", "$45,097", "net income") + except RuntimeError as exc: + assert "values disagree" in str(exc) + else: + raise AssertionError("Accepted a previously reported value that differs from the original Form 10-Q") + + +def test_verified_manifest_hashes() -> None: + manifest_path = ROOT / "verified-run" / "manifest.json" + manifest = json.loads(manifest_path.read_text()) + fixture = manifest["fixture"] + assert hashlib.sha256((ROOT / fixture["path"]).read_bytes()).hexdigest() == fixture["sha256"] + for entry in manifest["artifacts"]: + path = Path(entry["path"]) + resolved = ROOT / path if path.parts[0] == "verified-run" else manifest_path.parent / path + assert hashlib.sha256(resolved.read_bytes()).hexdigest() == entry["sha256"] diff --git a/examples/financial-filing-agent/uv.lock b/examples/financial-filing-agent/uv.lock new file mode 100644 index 00000000..24089003 --- /dev/null +++ b/examples/financial-filing-agent/uv.lock @@ -0,0 +1,541 @@ +version = 1 +revision = 3 +requires-python = "==3.12.*" + +[[package]] +name = "aiohappyeyeballs" +version = "2.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/f4/eec0465c2f67b2664688d0240b3212d5196fd89e741df67ddb81f8d35658/aiohappyeyeballs-2.7.1.tar.gz", hash = "sha256:065665c041c42a5938ed220bdcd7230f22527fbec085e1853d2402c8a3615d9d", size = 24757, upload-time = "2026-07-01T17:11:55.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/43/1947f06babed6b3f1d7f38b0c767f52df66bfb2bc10b468c4a7de9eceff2/aiohappyeyeballs-2.7.1-py3-none-any.whl", hash = "sha256:9243213661e29250eb41368e5daa826fc017156c3b8a11440826b2e3ed376472", size = 15038, upload-time = "2026-07-01T17:11:54.055Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "typing-extensions" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/d9/22ce5786ac0c1653ae8b6c23bded02c1686d11f0dbb45b31ce128e0df985/aiohttp-3.14.3.tar.gz", hash = "sha256:9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc", size = 7971213, upload-time = "2026-07-23T01:57:27.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/d4/eb96299230e20acf2efae207cb8d69051f1f68e357e5ea5e479bf6fb097a/aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:39aded8c7f3b935b54aab1d8d73c70ec0ee2d3ec3b943e0e86611bc150ba47f5", size = 754690, upload-time = "2026-07-23T01:53:47.332Z" }, + { url = "https://files.pythonhosted.org/packages/88/11/e7a70a209eb9a067c0d3212b518a0134e3484f5178c7533878b6b514d469/aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5bcb6ff3fdab1258a192679ff1a05d44f59626430aa05cd1a9d2447423599228", size = 509484, upload-time = "2026-07-23T01:53:51.159Z" }, + { url = "https://files.pythonhosted.org/packages/30/07/4bbc222cc8dbe31d4c3e8a5baad2286e4d42026ac0c570027b89afce6344/aiohttp-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:617105e2c3018ee38d0c8ce5ee3c84f621a6d8b9f723202aacaff28449ca91ee", size = 511949, upload-time = "2026-07-23T01:53:55.083Z" }, + { url = "https://files.pythonhosted.org/packages/54/b9/42e74c46b7b7c794b995bbc1f573fb48950c38b19d8600c62a6804ee2d67/aiohttp-3.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f631fe87a6f30df5fbe6d79640b25e4cffb38c31c7fb6f10871517b84b0f8c1a", size = 1765282, upload-time = "2026-07-23T01:53:59.662Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ed/62bc4d74363ad346d518e0720363a949f63e2e23439a79eb5813d4d29bb3/aiohttp-3.14.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a94dbaae5ae27bd849c93570669bff91e0510f33a80805738e3de72a7be0447b", size = 1741511, upload-time = "2026-07-23T01:54:04.063Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9f/181e8a8bc79e47d13c7fc4540bd7a3b729d9505609c61f392a8dd2fbfe55/aiohttp-3.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8f2f1c4c032c7cedd7d8da6f54c97b70266c6570c3108d3fdffee7188bb70529", size = 1810680, upload-time = "2026-07-23T01:54:09.882Z" }, + { url = "https://files.pythonhosted.org/packages/5c/9a/dec94d6ad694552fe3424e3f1928d7a606a5d9d9433a04e7ecdd9d38ae7f/aiohttp-3.14.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ea05e1f97ceea523942d9b2a7d7c0359d781d683d6b043f5943a602b14da4787", size = 1905646, upload-time = "2026-07-23T01:54:13.475Z" }, + { url = "https://files.pythonhosted.org/packages/52/b7/7cd31f29d6055bd711ae6e669367fba6f5ae9de463910a793e30556a8db7/aiohttp-3.14.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:543906c127fb1d929b95076db19b83fa2d46751006ff1e23b093aa5ac4d8db42", size = 1792122, upload-time = "2026-07-23T01:54:15.752Z" }, + { url = "https://files.pythonhosted.org/packages/66/73/10b1ef93afa61f4963c746257b70ced619cf31a4798671de5fdb2608501d/aiohttp-3.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0a5ff2dfbb9ce645fa5b8ef3e02c6c0b9cc3f6030ff863d0c51fffc50cb5541b", size = 1591127, upload-time = "2026-07-23T01:54:19.489Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/3b203fa6de1b338c14acdc06bf6ca9b043b7944f005966958c2ced932cde/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:041badb8f84396357c4d3ad26de6afd7a32b112f43d3c63045c0c8278cfd2043", size = 1725210, upload-time = "2026-07-23T01:54:24.129Z" }, + { url = "https://files.pythonhosted.org/packages/28/b7/1c2aab8c706436dcc28598452488ac9cd7c409da815237c28c27d58993e6/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:530125ee1163c4219af35dc3aa1206e541e7b31b6efc1a3f93b70a136f65d427", size = 1764848, upload-time = "2026-07-23T01:54:27.973Z" }, + { url = "https://files.pythonhosted.org/packages/54/50/94c28f08b131c4bf10984ea2c7a536c9920608bb2d6e7f95642c30cc87b7/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8653fd547c93a61aadc612007790f5555cdd18946fa48cf45e26d8ea4ea473d", size = 1777102, upload-time = "2026-07-23T01:54:31.775Z" }, + { url = "https://files.pythonhosted.org/packages/13/d4/e7d09ba7d345fb2d74440fd2fa033c5e079fac05552927705986f41a364f/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:89176250f686cb9853c0fb7ead90e639e915b84a6f43eedc2a4e7ec21f1037f0", size = 1580205, upload-time = "2026-07-23T01:54:34.518Z" }, + { url = "https://files.pythonhosted.org/packages/a3/84/072a91d68e1e1eb587985b54baab94221277f877e8ef274fc213a0ceae28/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3a26434dafe408229ff3403458ca58de24fb51936504decac49ce6755f77e59d", size = 1797219, upload-time = "2026-07-23T01:54:36.995Z" }, + { url = "https://files.pythonhosted.org/packages/e0/eb/aad34e897e668424d6e995da5dff8a4a09af93363d3392488772957a63aa/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19", size = 1768629, upload-time = "2026-07-23T01:54:40.103Z" }, + { url = "https://files.pythonhosted.org/packages/b6/2b/6bb88ddba0fecd9122aa3ebcad25996cf6c083a4a7040dbb3a4f97972af6/aiohttp-3.14.3-cp312-cp312-win32.whl", hash = "sha256:16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559", size = 451481, upload-time = "2026-07-23T01:54:42.547Z" }, + { url = "https://files.pythonhosted.org/packages/76/9b/f2f8f108da17ecef2cc3efc424e8b7ad3782b1a8360f7b8eae8ced84f6ea/aiohttp-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a", size = 476845, upload-time = "2026-07-23T01:54:44.853Z" }, + { url = "https://files.pythonhosted.org/packages/3e/44/28dac80a8941b604f4da10ce21097614ca1bf905ce93dca28d8d7de9c1e7/aiohttp-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c", size = 448050, upload-time = "2026-07-23T01:54:47.087Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "anyio" +version = "4.14.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/cc/a381afa6efea9f496eff839d4a6a1aed3bfafc7b3ab4b0d1b243a12573dd/anyio-4.14.2.tar.gz", hash = "sha256:cfa139f3ed1a23ee8f88a145ddb5ac7605b8bbfd8592baacd7ce3d8bb4313c7f", size = 260176, upload-time = "2026-07-12T20:29:07.082Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/35/f2287558c17e29fafc8ef3daf819bb9834061cfa43bff8014f7df7f63bdc/anyio-4.14.2-py3-none-any.whl", hash = "sha256:9f505dda5ac9f0c8309b5e8bd445a8c2bf7246f3ce950121e45ea15bc41d1494", size = 125813, upload-time = "2026-07-12T20:29:05.763Z" }, +] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "certifi" +version = "2026.7.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a3/c2/24167ea9858356b47a87a50d39908bfdb72ceeefe0041586e704e5376b3a/certifi-2026.7.22.tar.gz", hash = "sha256:741e2c3b351ddf169a738da9f2c048608ff7f2c5cc02f1ebc6b118bb090d5d55", size = 138112, upload-time = "2026-07-22T03:35:12.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/a7/71ac2cff56fec219ed242bb11b8efb69fcc4bec75db06fb7bfe35de520e6/certifi-2026.7.22-py3-none-any.whl", hash = "sha256:62f22742b58a1a33014a2b6b706588a8d7e2a88ae7bd1a6ebe8c992928483775", size = 136983, upload-time = "2026-07-22T03:35:11.276Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "financial-filing-agent" +version = "0.1.0" +source = { editable = "." } +dependencies = [ + { name = "python-dotenv" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "sie-sdk" }, +] + +[package.dev-dependencies] +dev = [ + { name = "pytest" }, + { name = "ruff" }, +] + +[package.metadata] +requires-dist = [ + { name = "python-dotenv", specifier = ">=1.0" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rich", specifier = ">=13.7" }, + { name = "sie-sdk", specifier = ">=0.6.23" }, +] + +[package.metadata.requires-dev] +dev = [ + { name = "pytest", specifier = ">=9.0" }, + { name = "ruff", specifier = ">=0.14" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" }, + { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" }, + { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" }, + { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" }, + { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" }, + { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" }, + { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" }, + { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" }, + { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" }, + { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" }, + { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "idna" +version = "3.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/63/9496c57188a2ee585e0f1db071d75089a11e98aa86eb99d9d7618fc1edce/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848", size = 196711, upload-time = "2026-06-02T14:34:07.794Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/5e/d4e9f1a599fb8e573b7b87160658329fbf28d19eac2718f51fc3def3aa5a/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", size = 65455, upload-time = "2026-06-02T14:34:06.319Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/ff/7841249c247aa650a76b9ee4bbaeae59370dc8bfd2f6c01f3630c35eb134/markdown_it_py-4.2.0.tar.gz", hash = "sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49", size = 82454, upload-time = "2026-05-07T12:08:28.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/81/4da04ced5a082363ecfa159c010d200ecbd959ae410c10c0264a38cac0f5/markdown_it_py-4.2.0-py3-none-any.whl", hash = "sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a", size = 91687, upload-time = "2026-05-07T12:08:27.182Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "msgpack" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/f9/c0a1c127f9049db9155afc316952ea571720dd01833ff5e4d7e8e6352dbb/msgpack-1.2.1.tar.gz", hash = "sha256:04c721c2c7448767e9e3f2520a475663d8ee0f09c31890f6d2bd70fd636a9647", size = 183960, upload-time = "2026-06-18T16:13:52.594Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/dd/9e8cbd8f5582ca4b590336f2b91ee5662f6a6ca562b565abaf696a0f81ff/msgpack-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2ef59c659f289eddf8aa6623823f19fa2f40a4029266889eac7a2505dd210c35", size = 83531, upload-time = "2026-06-18T16:12:58.249Z" }, + { url = "https://files.pythonhosted.org/packages/50/2e/ebdb85a8da151397a2790363676b7ed7c125924fe618e4c6d8befb0cc62c/msgpack-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d3567748a5107cb40cdf66a275430c2f87c07777698f4bfd25c35f44d533258c", size = 82657, upload-time = "2026-06-18T16:12:59.396Z" }, + { url = "https://files.pythonhosted.org/packages/26/aa/753ad8b007b464e1d8aa0c8e650b9c5f4f725e658fc5ac8a7635c55b7f6e/msgpack-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60926b75d00c8e816ef98f3034f484a8bc64242d66839cef4cf7e503142316a0", size = 410634, upload-time = "2026-06-18T16:13:00.383Z" }, + { url = "https://files.pythonhosted.org/packages/6a/fd/6adabd4f6d5e686f97dd02ce7fce3fe4cf672cbac36b8f67ff4040e8ad8b/msgpack-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:020e881a764b20d8d7ca1a54fc01b8175519d108e3c3f194fddc200bda95951a", size = 419989, upload-time = "2026-06-18T16:13:01.776Z" }, + { url = "https://files.pythonhosted.org/packages/5a/cc/85039b7b0eb168aaad7383a23c97e291a11f08351cb45a606ce865e4e3f1/msgpack-1.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4202c74688ca06591f78cb18988228bd4cca2cc75d57b60008372892d2f1e6e6", size = 377544, upload-time = "2026-06-18T16:13:03.637Z" }, + { url = "https://files.pythonhosted.org/packages/ed/bf/35963899493b32030c85fc513b723ae66144ac70c11ebc52e889e16e3d99/msgpack-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8b267ce94efb76fbd1b3373511420074ee3187f0f7811bf394531de13294735a", size = 400842, upload-time = "2026-06-18T16:13:05.012Z" }, + { url = "https://files.pythonhosted.org/packages/a6/df/8e2ac970c8f99264cd9997d1c73df5466bc19da3301d7dc5500862a9b089/msgpack-1.2.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e4f1d0f8f98ade9634e01fb704a408f9336c0a8f1117b369f5db83dc7551d8b1", size = 374108, upload-time = "2026-06-18T16:13:06.232Z" }, + { url = "https://files.pythonhosted.org/packages/17/dd/fa8bd265110dfa51c20cb529f9e6d240a16fafe7e645004c6af2d01353ba/msgpack-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f02cf17a6ca1abe29b5f980644f7551f94d71f2011509b26d8625ce038f0df64", size = 414939, upload-time = "2026-06-18T16:13:07.478Z" }, + { url = "https://files.pythonhosted.org/packages/2e/b9/8377a5ad8953fc0437c70cc98d9ae29f27fe5ac5109fbec0812085865735/msgpack-1.2.1-cp312-cp312-win32.whl", hash = "sha256:0c0d9802354507bcba62af19c17918e3eb437cc25e6f50657d511b5856a77aac", size = 64504, upload-time = "2026-06-18T16:13:08.822Z" }, + { url = "https://files.pythonhosted.org/packages/57/7f/ce1e377df7e62461fefd9eb23bfb93a4a523f40a517b377b8f844d836828/msgpack-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:5c24aa15d5963051e1a5c62b12c50cd705992502b5ec1f3bece6046f33c9fc24", size = 71421, upload-time = "2026-06-18T16:13:09.828Z" }, + { url = "https://files.pythonhosted.org/packages/8f/32/ebfe84c9929f08f188d56c7a2fd913406a9ddad76a634697c1c43b8112e6/msgpack-1.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:4227224aaec8f7fbcbfbd4272319347b2bb4030366502600f8c45588c5187b07", size = 64775, upload-time = "2026-06-18T16:13:11.056Z" }, +] + +[[package]] +name = "msgpack-numpy" +version = "0.4.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "msgpack" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/94/61e8aee142733ebfdc400a05bdac6e1763c4514bba3b42743d223f388450/msgpack-numpy-0.4.8.tar.gz", hash = "sha256:c667d3180513422f9c7545be5eec5d296dcbb357e06f72ed39cc683797556e69", size = 10923, upload-time = "2022-06-09T03:43:08.739Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/5d/f25ac7d4fb77cbd53ddc6d05d833c6bf52b12770a44fa9a447eed470ca9a/msgpack_numpy-0.4.8-py2.py3-none-any.whl", hash = "sha256:773c19d4dfbae1b3c7b791083e2caf66983bb19b40901646f61d8731554ae3da", size = 6919, upload-time = "2022-06-09T03:43:06.82Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" }, + { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" }, + { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" }, + { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" }, + { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" }, + { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" }, + { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" }, + { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" }, + { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "numpy" +version = "2.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/fd/89965aa4ac08c74998539fcbf24fa3540f3e15237fbeb6bcf9c908f4aade/numpy-2.5.1.tar.gz", hash = "sha256:a48a113e6afea91f5608793bafa7ef2ad481fefbda87ec5069f483de61cb9fa3", size = 20755553, upload-time = "2026-07-04T17:08:00.933Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/7b/14687aa674250e5e546f616f486b0d56d3631cd5b2415739141ce40bdcea/numpy-2.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2c889b56fe48b1018f764b0eec8df59ab654e9148aa91faa12596043500de277", size = 16801574, upload-time = "2026-07-04T17:06:12.423Z" }, + { url = "https://files.pythonhosted.org/packages/e1/19/cc5bb2a3f2913d27d6dbb2c78d25921fabaedc6741d4a5a615a11f3c5bf3/numpy-2.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ab451b59c5643c570974c43aef780703ef1d3b4965d2be07afd530615a9358d1", size = 11772250, upload-time = "2026-07-04T17:06:15.726Z" }, + { url = "https://files.pythonhosted.org/packages/42/77/fdf34a71dd30f54979b18603bee915e0aaf825b07afe79acd60b04b691e2/numpy-2.5.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:78798bd5b9ad744056af8efa90e3b9ddaa53272a0848a483084a1cc0a13b2dc0", size = 5331516, upload-time = "2026-07-04T17:06:17.913Z" }, + { url = "https://files.pythonhosted.org/packages/ce/e2/eb7efa015b4cce41e2517bf182a7fce0d7d5b9d9ed76a29bfa0f4fe4505c/numpy-2.5.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:2ae0ca40bcb22d6ba59c1dfd5446f49940b0f2d821fde133f10dda11f816b84e", size = 6664863, upload-time = "2026-07-04T17:06:20.02Z" }, + { url = "https://files.pythonhosted.org/packages/a9/4b/a2b32dd94ee9ffbeecb28152240042a3949db33b1c834d44090b80e1b3b8/numpy-2.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61ac47e772e6b8ea489e1d2f441a34c5c3ac17327e7ce294cbdf535795ad4e75", size = 15167977, upload-time = "2026-07-04T17:06:21.621Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a9/6e73d68500f80773f65f0654ea932019d6694329a0eb0ed0533de38df376/numpy-2.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:59fda5e192b570217ec2580c96f00e9a7e12ef6866a900eb089b62c1a32545ca", size = 16672469, upload-time = "2026-07-04T17:06:24.064Z" }, + { url = "https://files.pythonhosted.org/packages/24/7d/ad3e59015135f5261c95fd4cafeff159c955febd83a99a1d9250c4233815/numpy-2.5.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f7119ebff1a9829e9f431a4f9d28e703023bb6b9fe7c8f724467dbfc27c94ab3", size = 16527531, upload-time = "2026-07-04T17:06:26.69Z" }, + { url = "https://files.pythonhosted.org/packages/83/d0/a39b2fbcde9cb17a1dac678f254b33a6336298af9df338824c685425d5e8/numpy-2.5.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e824c2acf8862052246be5a44c15da1777940c60d010dd2aab897824d9c430f9", size = 18431940, upload-time = "2026-07-04T17:06:29.521Z" }, + { url = "https://files.pythonhosted.org/packages/04/12/cff070947791c1ed425ff76413189adbdc2fbe215eba7ce7fa454a03c7f8/numpy-2.5.1-cp312-cp312-win32.whl", hash = "sha256:08d60c810432eb83360958dea0999ac4cfb94531ea8efcbf0b7f277c2068aeb2", size = 6066764, upload-time = "2026-07-04T17:06:32.571Z" }, + { url = "https://files.pythonhosted.org/packages/65/66/53f31807a48a750f9d748da273bc3fcedd12b27ff1f3e373bfec55ef2dc0/numpy-2.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:f7d60026c0bdb1380e83bfa7a0419c4577ee4b9a08880afcb6dadeb74c649fa2", size = 12430966, upload-time = "2026-07-04T17:06:34.926Z" }, + { url = "https://files.pythonhosted.org/packages/2b/2a/d1a88066b1c14186f5d3c0d18c94f17b064511982bab0578d49ee9d43c29/numpy-2.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:17a25e09640602e10bc8de0e6fa2b3fd68eedd84ba6d7842dc8f32f9ab87bd0b", size = 10350488, upload-time = "2026-07-04T17:06:37.785Z" }, +] + +[[package]] +name = "packaging" +version = "26.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/f1/e7a6dd94a8d4a5626c03e4e99c87f241ba9e350cd9e6d75123f992427270/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661", size = 228134, upload-time = "2026-04-24T20:15:23.917Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/b2/87e62e8c3e2f4b32e5fe99e0b86d576da1312593b39f47d8ceef365e95ed/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e", size = 100195, upload-time = "2026-04-24T20:15:22.081Z" }, +] + +[[package]] +name = "pillow" +version = "12.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/3d/bb7fca845737cf9d7dbde16ed1843984665ff2e0a518f5db43e77ec540b9/pillow-12.3.0.tar.gz", hash = "sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce", size = 47025035, upload-time = "2026-07-01T11:56:38.965Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/bf/fb3ebff8ddcb76aac5a01389251bbbb9519922a9b520d8247c1ca864a25d/pillow-12.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965", size = 5345969, upload-time = "2026-07-01T11:54:06.397Z" }, + { url = "https://files.pythonhosted.org/packages/d8/66/9a386a92561f402389a4fc70c18838bf6d35eb5eb5c6850b4b2dc64f5048/pillow-12.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7", size = 4780323, upload-time = "2026-07-01T11:54:09.351Z" }, + { url = "https://files.pythonhosted.org/packages/25/27/ac8f99618ffd3dde21db0f4d4b1d2ab00c0880595bfd17df103f7f39fd0c/pillow-12.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9c7f76c0673154f044e9d78c8655fb4213f6ca31a836df48b40fe5d187717b9", size = 6266838, upload-time = "2026-07-01T11:54:11.71Z" }, + { url = "https://files.pythonhosted.org/packages/84/21/a35af28dcc61f37ed850a2d64c65c701321dfbf25085e469d5559360cbbf/pillow-12.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:78cb2c6865a35ab8ff8b75fd122f6033b92a62c82801110e48ddd6c936a45d91", size = 6940830, upload-time = "2026-07-01T11:54:13.732Z" }, + { url = "https://files.pythonhosted.org/packages/eb/51/8b08617af3ad95e33ce6d7dd2c99ed6c8298f7fb131636303956be022e25/pillow-12.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e491916b378fba47242221bb9ead245211b70d504f495d105d17b14a24b4907c", size = 6344383, upload-time = "2026-07-01T11:54:15.756Z" }, + { url = "https://files.pythonhosted.org/packages/1d/72/cf78ac9780bb93c28328f408973845a309d4d145041665f734572ced1b52/pillow-12.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0dd2064cbc55aaec028ef5fbb60fa47bb6c3e7918e07ff17935284b227a9d2df", size = 7052934, upload-time = "2026-07-01T11:54:17.721Z" }, + { url = "https://files.pythonhosted.org/packages/20/20/25e0f4dc178a6bc0696793720055519a0de89e7661dae886992decbd2f81/pillow-12.3.0-cp312-cp312-win32.whl", hash = "sha256:dbce0b29841537a2fa4a214c2bbf14de3587c9680caa9b4e217568472490b28f", size = 6472684, upload-time = "2026-07-01T11:54:19.839Z" }, + { url = "https://files.pythonhosted.org/packages/45/89/da2f7971a317f83d807fdd4065c0af40208e59e692cc43d315a71a0e96d1/pillow-12.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a2b55dd6b2a4c4b7d87ffa56bdb33fdc5fdb9a462173861a7bc097f17d91cb09", size = 7227137, upload-time = "2026-07-01T11:54:22.025Z" }, + { url = "https://files.pythonhosted.org/packages/de/47/4845a0a6c0dbf1db8456bd9fc791f13c5ced7ced20606d08a0aacfd25b49/pillow-12.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:331b624368d4f1d069149002f25f44bc61c8919ce8ddb3c45bdad8f6e2d89510", size = 2568267, upload-time = "2026-07-01T11:54:24.051Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "propcache" +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/c87281c333769159c50594f22610f77398a47ccbfbbf23074e744e86f87c/propcache-0.5.2.tar.gz", hash = "sha256:01c4fc7480cd0598bb4b57022df55b9ca296da7fc5a8760bd8451a7e63a7d427", size = 50208, upload-time = "2026-05-08T21:02:12.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/cb/e27bc2b2737a0bb49962b275efa051e8f1c35a936df7d5139b6b658b7dc9/propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:806719138ecd720339a12410fb9614ac9b2b2d3a5fdf8235d56981c36f4039ba", size = 95887, upload-time = "2026-05-08T21:00:11.277Z" }, + { url = "https://files.pythonhosted.org/packages/e6/13/b8ae04c59392f8d11c6cd9fb4011d1dc7c86b81225c770280300e259ffe1/propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:db2b80ea58eab4f86b2beec3cc8b39e8ff9276ac20e96b7cce43c8ae84cd6b5a", size = 54654, upload-time = "2026-05-08T21:00:12.604Z" }, + { url = "https://files.pythonhosted.org/packages/2c/7d/49777a3e20b55863d4794384a38acd460c04157b0a00f8602b0d508b8431/propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e5cbfac9f61484f7e9f3597775500cd3ebe8274e9b050c38f9525c77c97520bf", size = 55190, upload-time = "2026-05-08T21:00:13.935Z" }, + { url = "https://files.pythonhosted.org/packages/44/c7/085d0cd63062e84044e3f05797749c3f8e3938ff3aeb0eb2f69d43fafc91/propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbc581d2814337da56222fab8dc5f161cd798a434e49bac27930aaef798e144", size = 59995, upload-time = "2026-05-08T21:00:15.526Z" }, + { url = "https://files.pythonhosted.org/packages/9c/42/32cf8e3009e92b2645cf1e944f701e8ea4e924dffde1ee26db860bcbf7e4/propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:857187f381f88c8e2fa2fe56ab94879d011b883d5a2ee5a1b60a8cd2a06846d9", size = 63422, upload-time = "2026-05-08T21:00:16.824Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f112433f99fc979431b87a39ef169e3f8df070d99a72792c56d6937ac48b/propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:178b4a2cdaac1818e2bf1c5a99b94383fa73ea5382e032a48dec07dc5668dc42", size = 64342, upload-time = "2026-05-08T21:00:18.362Z" }, + { url = "https://files.pythonhosted.org/packages/14/15/5574111ae50dd6e879456888c0eadd4c5a869959775854e18e18a6b345f3/propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f328175a2cde1f0ff2c4ed8ce968b9dcfb55f3a7153f39e2957ed994da13476", size = 61639, upload-time = "2026-05-08T21:00:19.692Z" }, + { url = "https://files.pythonhosted.org/packages/cc/da/4d775080b1490c0ae604acda868bd71aabe3a89ed16f2aa4339eb8a283e7/propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5671d09a36b06d0fd4a3da0fccbcae360e9b1570924171a15e9e0997f0249fba", size = 61588, upload-time = "2026-05-08T21:00:21.155Z" }, + { url = "https://files.pythonhosted.org/packages/04/ac/f076982cbe2195ee9cf32de5a1e46951d9fb399fc207f390562dd0fd8fb2/propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80168e2ebe4d3ec6599d10ad8f520304ae1cad9b6c5a95372aef1b66b7bfb53a", size = 60029, upload-time = "2026-05-08T21:00:22.713Z" }, + { url = "https://files.pythonhosted.org/packages/70/60/189be62e0dd898dce3b331e1b8c7a543cd3a405ac0c81fe8ee8a9d5d77e1/propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:45f11346f884bc47444f6e6647131055844134c3175b629f84952e2b5cd62b64", size = 56774, upload-time = "2026-05-08T21:00:24.001Z" }, + { url = "https://files.pythonhosted.org/packages/ea/9e/93377b9c7939c1ffae98f878dee955efadfd638078bc86dbc21f9d52f651/propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e778ebd44ef4f66ed60a0416b06b489687db264a9c0b3620362f26489492913", size = 63532, upload-time = "2026-05-08T21:00:25.545Z" }, + { url = "https://files.pythonhosted.org/packages/14/f9/590ef6cfb9b8028d516d287812ece32bb0bc5f11fbb9c8bf6b2e6313fec8/propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c0cb9ed24c8964e172768d455a38254c2dd8a552905729ce006cad3d3dda59b1", size = 61592, upload-time = "2026-05-08T21:00:27.186Z" }, + { url = "https://files.pythonhosted.org/packages/b4/5e/70958b3034c297a630bba2f17ca7abc2d5f39a803ad7e370ab79d1ecd022/propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1d1ad32d9d4355e2be65574fd0bfd3677e7066b009cd5b9b2dee8aa6a6393b33", size = 64788, upload-time = "2026-05-08T21:00:28.8Z" }, + { url = "https://files.pythonhosted.org/packages/12/fd/77fe5936d8c3086ca9048f7f415f122ed82e53884a9ec193646b42deef06/propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c80f4ba3e8f00189165999a742ee526ebeccedf6c3f7beb0c7df821e9772435a", size = 62514, upload-time = "2026-05-08T21:00:30.098Z" }, + { url = "https://files.pythonhosted.org/packages/cf/74/66bd798b5b3be70aa1b391f5cc9d6a0a5532d7fd3b19ec0b213e72e6ad9d/propcache-0.5.2-cp312-cp312-win32.whl", hash = "sha256:8c7972d8f193740d9175f0998ab38717e6cd322d5935c5b0fef8c0d323fd9031", size = 39018, upload-time = "2026-05-08T21:00:31.622Z" }, + { url = "https://files.pythonhosted.org/packages/61/7c/5c0d34aa3024694d6dcb9271cdbdd08c4e47c1c0ad95ec7e7bc74cdea145/propcache-0.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:d9ee8826a7d47863a08ac44e1a5f611a462eefc3a194b492da242128bec75b42", size = 42322, upload-time = "2026-05-08T21:00:32.918Z" }, + { url = "https://files.pythonhosted.org/packages/4d/91/875812f1a3feb20ceba818ef39fbe4d92f1081e04ac815c822496d0d038b/propcache-0.5.2-cp312-cp312-win_arm64.whl", hash = "sha256:2800a4a8ead6b28cccd1ec54b59346f0def7922ee1c7598e8499c733cfbb7c84", size = 38172, upload-time = "2026-05-08T21:00:35.124Z" }, + { url = "https://files.pythonhosted.org/packages/3a/ed/1cdcab6ba3d6ab7feca11fc14f0eeea80755bb53ef4e892079f31b10a25f/propcache-0.5.2-py3-none-any.whl", hash = "sha256:be1ddfcbb376e3de5d2e2db1d58d6d67463e6b4f9f040c000de8e300295465fe", size = 14036, upload-time = "2026-05-08T21:02:10.673Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pytest" +version = "9.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e4/47/b9efed96c114afcfa3c9d3fe98a76a1d14c74a9e266d397cf6eb64be5e01/pytest-9.1.1.tar.gz", hash = "sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313", size = 1636369, upload-time = "2026-06-19T10:58:32.857Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/25/1de2678b631f5a49215c6c96fff41ba892b0a34df68d6d80292b1b48aa7f/pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c", size = 386536, upload-time = "2026-06-19T10:58:31.347Z" }, +] + +[[package]] +name = "python-dotenv" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "ruff" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/94/1e5e4967626faf12fa56999cd6222dff6992ceb086ad7945756baf70c7a7/ruff-0.16.0.tar.gz", hash = "sha256:e460aafd5495ec89efaa6ced2e4a9a581116451e1c88b9d37ef497e0f8e93982", size = 4790557, upload-time = "2026-07-23T19:11:30.981Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/81/1c8818fee7ce1a04cd7d1b3172e0a8f8e4f1dc4feb7fc390e16daa8af323/ruff-0.16.0-py3-none-linux_armv6l.whl", hash = "sha256:e5115729eb08c585e5121978ba5d5b60caeae394ce21b9fb5e6cd33a1c6c9b1e", size = 10754633, upload-time = "2026-07-23T19:10:46.415Z" }, + { url = "https://files.pythonhosted.org/packages/23/df/beaf59c09d68db84304d555f188b276a77132a5d5b0b67a5c762aa143628/ruff-0.16.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3c954b1d580bfa035b41654f7858cc7e71d5fc3ac5b723dd62bd9133830ed522", size = 10969164, upload-time = "2026-07-23T19:10:50.271Z" }, + { url = "https://files.pythonhosted.org/packages/42/ce/741cd197496a1abbf51352710fd15ed995d2a2be87189c1da26a450d6e83/ruff-0.16.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e01c21d10eb1b29f47b7454e1f4056db9a3f0260c646aa88457c610291db9f81", size = 10488846, upload-time = "2026-07-23T19:10:52.639Z" }, + { url = "https://files.pythonhosted.org/packages/52/2a/a2db8e88cade358f5cdcb05674a917751074109315d014eb6352d9a893f7/ruff-0.16.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e364e5ed22ed8dc05082fd78e35308618260907ac2d3c1d637b2e682415b6c9", size = 10889729, upload-time = "2026-07-23T19:10:54.89Z" }, + { url = "https://files.pythonhosted.org/packages/42/65/62a771694ebd63029dc953e27dbad40e1588bd4860ff9fe881018fddaa49/ruff-0.16.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d327b8fc113a1d4421a04f3839d3752057c8dd1ee320223a6f3f52d04ada462a", size = 10568275, upload-time = "2026-07-23T19:10:56.993Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e2/ced249fe8af5f086c5c58cc21cc3356d50f32f7401c5df87050c999620a7/ruff-0.16.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b50c55e263103586b3dcf5f73d479eb8cb5fdb6098fec59a62891dab653717", size = 11385112, upload-time = "2026-07-23T19:10:59.615Z" }, + { url = "https://files.pythonhosted.org/packages/87/0b/05154977a8fd69eeb6c103271f55403bfd8711f5c0f8ed07489d95a504e7/ruff-0.16.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ff4a79ce3ec0172f3241943835de1c4cb4e2dcd07f0f8c2d02603dbbbee4b17", size = 12207008, upload-time = "2026-07-23T19:11:02.154Z" }, + { url = "https://files.pythonhosted.org/packages/fb/29/98225831a3a1eab0e02f4acc6ca6559a98611dcc68b6965ff4b7234627c1/ruff-0.16.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e95c448fca1fb2a18372a9440926c5a6ee789639bb975c72e7ae6d0b04218ab4", size = 11650842, upload-time = "2026-07-23T19:11:04.557Z" }, + { url = "https://files.pythonhosted.org/packages/91/66/6bd3cf90500653d55dc0ffc8507aa8300bd49d0214b2e8cb4d3fef2943ba/ruff-0.16.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f11a8d11010301d0a398a2fdef67691feca7294da6aef55e2150e8fa2cd520b", size = 11400718, upload-time = "2026-07-23T19:11:09.233Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a2/a54eb4eae05d66364050a5d3b8a9c5ef88196531b3cbe7109d873f87f819/ruff-0.16.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:48044c678e9cb8698246c99b14aaccfa6601dea7379eb48a6f8f73f7a6d86cd0", size = 11426177, upload-time = "2026-07-23T19:11:11.994Z" }, + { url = "https://files.pythonhosted.org/packages/1a/be/16e3eea4b2a478a496919f5e36f17c4559e54620bd3bbac5d6affa068006/ruff-0.16.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7aa0959bad8eb8bef50340154fc9b58678dae31fa4293afa38b44b6e552c0213", size = 10856126, upload-time = "2026-07-23T19:11:14.221Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/252eb8b868a16eec7257c14f504f77537e734b2d69c762e639e588e304a3/ruff-0.16.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:28ea2b7df8ebf7f9da6b7d47b230ab48f387c0a29be3b474c4d0740e197bb9af", size = 10571208, upload-time = "2026-07-23T19:11:16.378Z" }, + { url = "https://files.pythonhosted.org/packages/21/09/817a482f542f7570cbb4554b26e896610c7114f539b1d9e2d2145bf6bef6/ruff-0.16.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:33a3dfac8c35f81498dea9181bccc2f4c4bc8f1521a1dd9406e77643e0f0fb09", size = 11063329, upload-time = "2026-07-23T19:11:19.173Z" }, + { url = "https://files.pythonhosted.org/packages/2e/23/9403c180ca1cb9b1f7335f5c3e5305c09d49ea5b345196682a36028bde4a/ruff-0.16.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a5237a0bda500d30d81b8e07a6973a5cbc772864cbf746ae2f4e8a2e01c9f4ed", size = 11489751, upload-time = "2026-07-23T19:11:21.74Z" }, + { url = "https://files.pythonhosted.org/packages/b2/1d/1b2ef7bcde851c78d7f17f1cca13fd6dc695fc4b3d6197941e72cae5b132/ruff-0.16.0-py3-none-win32.whl", hash = "sha256:7fab76fa065c873f41ff744347c6e77bcc3dfec4bcc754dc26b63d23c0f7f5fb", size = 10785885, upload-time = "2026-07-23T19:11:23.947Z" }, + { url = "https://files.pythonhosted.org/packages/b2/a3/d5e4ef7a56be3f928ffb90b94c25ba7d3cb9c7fe0736aeaaedf361770712/ruff-0.16.0-py3-none-win_amd64.whl", hash = "sha256:429c117f022bf481fabd9d551e7a3952b24c65e6ef44337ea09d90bebef14472", size = 11923141, upload-time = "2026-07-23T19:11:26.409Z" }, + { url = "https://files.pythonhosted.org/packages/cb/9a/8415f2657cbe200f41a4531ccededf135505a92d4a012229121f885b26f9/ruff-0.16.0-py3-none-win_arm64.whl", hash = "sha256:14296fedcd2705c77ab8235439278bbb38f285cf7da5528b00b3e330c3d4872d", size = 11273407, upload-time = "2026-07-23T19:11:28.705Z" }, +] + +[[package]] +name = "sie-sdk" +version = "0.6.23" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "httpx" }, + { name = "msgpack" }, + { name = "msgpack-numpy" }, + { name = "numpy" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "websockets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/c0/b0fd1ecb9cfd92271a22de027b2d924b16b1d5b526332da38e0a1265373c/sie_sdk-0.6.23.tar.gz", hash = "sha256:7a7455badd364b8bff05d3f36004ad959e524dd9fef3d1bf4148a67eb5132778", size = 197836, upload-time = "2026-07-24T04:05:17.119Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/58/ecf8d19e4a5e8797781433ebaf2e5034610c896d5a5595e7c901df34099e/sie_sdk-0.6.23-py3-none-any.whl", hash = "sha256:9e3d558a3b7b5d60f3d6deeededdd865b37a8ef7505dd922b5d2749e1efe1f0d", size = 130234, upload-time = "2026-07-24T04:05:15.755Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/cc/6253133b5bb138fc3306cebfbda2c520f545d36b5be2c7255cc528bb45d6/typing_extensions-4.16.0.tar.gz", hash = "sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5", size = 113555, upload-time = "2026-07-02T08:40:05.92Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/d3/b8441a820a491ddfc024b0b0cf0393375b75ea13866d9c66727e54c2fc80/typing_extensions-4.16.0-py3-none-any.whl", hash = "sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8", size = 45571, upload-time = "2026-07-02T08:40:04.659Z" }, +] + +[[package]] +name = "websockets" +version = "14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/54/8359678c726243d19fae38ca14a334e740782336c9f19700858c4eb64a1e/websockets-14.2.tar.gz", hash = "sha256:5059ed9c54945efb321f097084b4c7e52c246f2c869815876a69d1efc4ad6eb5", size = 164394, upload-time = "2025-01-19T21:00:56.431Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/81/04f7a397653dc8bec94ddc071f34833e8b99b13ef1a3804c149d59f92c18/websockets-14.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1f20522e624d7ffbdbe259c6b6a65d73c895045f76a93719aa10cd93b3de100c", size = 163096, upload-time = "2025-01-19T20:59:29.763Z" }, + { url = "https://files.pythonhosted.org/packages/ec/c5/de30e88557e4d70988ed4d2eabd73fd3e1e52456b9f3a4e9564d86353b6d/websockets-14.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:647b573f7d3ada919fd60e64d533409a79dcf1ea21daeb4542d1d996519ca967", size = 160758, upload-time = "2025-01-19T20:59:32.095Z" }, + { url = "https://files.pythonhosted.org/packages/e5/8c/d130d668781f2c77d106c007b6c6c1d9db68239107c41ba109f09e6c218a/websockets-14.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6af99a38e49f66be5a64b1e890208ad026cda49355661549c507152113049990", size = 160995, upload-time = "2025-01-19T20:59:33.527Z" }, + { url = "https://files.pythonhosted.org/packages/a6/bc/f6678a0ff17246df4f06765e22fc9d98d1b11a258cc50c5968b33d6742a1/websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:091ab63dfc8cea748cc22c1db2814eadb77ccbf82829bac6b2fbe3401d548eda", size = 170815, upload-time = "2025-01-19T20:59:35.837Z" }, + { url = "https://files.pythonhosted.org/packages/d8/b2/8070cb970c2e4122a6ef38bc5b203415fd46460e025652e1ee3f2f43a9a3/websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b374e8953ad477d17e4851cdc66d83fdc2db88d9e73abf755c94510ebddceb95", size = 169759, upload-time = "2025-01-19T20:59:38.216Z" }, + { url = "https://files.pythonhosted.org/packages/81/da/72f7caabd94652e6eb7e92ed2d3da818626e70b4f2b15a854ef60bf501ec/websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a39d7eceeea35db85b85e1169011bb4321c32e673920ae9c1b6e0978590012a3", size = 170178, upload-time = "2025-01-19T20:59:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/31/e0/812725b6deca8afd3a08a2e81b3c4c120c17f68c9b84522a520b816cda58/websockets-14.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0a6f3efd47ffd0d12080594f434faf1cd2549b31e54870b8470b28cc1d3817d9", size = 170453, upload-time = "2025-01-19T20:59:41.996Z" }, + { url = "https://files.pythonhosted.org/packages/66/d3/8275dbc231e5ba9bb0c4f93144394b4194402a7a0c8ffaca5307a58ab5e3/websockets-14.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:065ce275e7c4ffb42cb738dd6b20726ac26ac9ad0a2a48e33ca632351a737267", size = 169830, upload-time = "2025-01-19T20:59:44.669Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ae/e7d1a56755ae15ad5a94e80dd490ad09e345365199600b2629b18ee37bc7/websockets-14.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e9d0e53530ba7b8b5e389c02282f9d2aa47581514bd6049d3a7cffe1385cf5fe", size = 169824, upload-time = "2025-01-19T20:59:46.932Z" }, + { url = "https://files.pythonhosted.org/packages/b6/32/88ccdd63cb261e77b882e706108d072e4f1c839ed723bf91a3e1f216bf60/websockets-14.2-cp312-cp312-win32.whl", hash = "sha256:20e6dd0984d7ca3037afcb4494e48c74ffb51e8013cac71cf607fffe11df7205", size = 163981, upload-time = "2025-01-19T20:59:49.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/7d/32cdb77990b3bdc34a306e0a0f73a1275221e9a66d869f6ff833c95b56ef/websockets-14.2-cp312-cp312-win_amd64.whl", hash = "sha256:44bba1a956c2c9d268bdcdf234d5e5ff4c9b6dc3e300545cbe99af59dda9dcce", size = 164421, upload-time = "2025-01-19T20:59:50.674Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c8/d529f8a32ce40d98309f4470780631e971a5a842b60aec864833b3615786/websockets-14.2-py3-none-any.whl", hash = "sha256:7a6ceec4ea84469f15cf15807a747e9efe57e369c384fa86e022b3bea679b79b", size = 157416, upload-time = "2025-01-19T21:00:54.843Z" }, +] + +[[package]] +name = "yarl" +version = "1.24.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/33/ebe9e3d1f86c7a0b51094c0a146392045ca1631d2664889539dec8088a33/yarl-1.24.5.tar.gz", hash = "sha256:e81b83143bee16329c23db3c1b2d82b29892fcbcb849186d2f6e98a5abe9a57f", size = 228679, upload-time = "2026-07-20T02:07:45.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/84/71d051c850b5af41d168c679d9eb67eb7c55283ac4ee131673edf134bc4e/yarl-1.24.5-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d693396e5aea78db03decd60aec9ece16c9b40ba00a587f089615ff4e718a81d", size = 136035, upload-time = "2026-07-20T02:05:25.489Z" }, + { url = "https://files.pythonhosted.org/packages/03/4d/8ad27f9a1b7e69313cca5d695b925b48efe51208d3490e0844bae97cabc0/yarl-1.24.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3363fcc96e665878946ad7a106b9a13eac0541766a690ef287c0232ac768b6ec", size = 97642, upload-time = "2026-07-20T02:05:27.429Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b4/05b4131c407006cd1e410e9c6539f16a0945724677e5364447313c15ea3e/yarl-1.24.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9d399bdcfb4a0f659b9b3788bbc89babe63d9a6a65aacdf4d4e7065ff2e6316c", size = 97323, upload-time = "2026-07-20T02:05:29.441Z" }, + { url = "https://files.pythonhosted.org/packages/20/16/e618c875c73e0e39611f20a581b3d5e8d59b8857bf001bee3263044c6deb/yarl-1.24.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90333fd89b43c0d08ac85f3f1447593fc2c66de18c3d6378d7125ea118dc7a54", size = 107741, upload-time = "2026-07-20T02:05:31.367Z" }, + { url = "https://files.pythonhosted.org/packages/d9/9a/c4defeaf3ed33fcb346aacf9c6e971a8d4e2bde04a0310e79abb208e7965/yarl-1.24.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:665b0a2c463cc9423dd647e0bfd9f4ccc9b50f768c55304d5e9f80b177c1de12", size = 103570, upload-time = "2026-07-20T02:05:33.303Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e7/0e0e0de5865ebd5914537ef486f36c727a59865c3ac0cf5ff1b32aececbf/yarl-1.24.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e006d3a974c4ee19512e5f058abedb6eef36a5e553c14812bdeba1758d812e6d", size = 115815, upload-time = "2026-07-20T02:05:35.292Z" }, + { url = "https://files.pythonhosted.org/packages/2b/27/ca56b700cb170aba25a3893b75355b213935657dc5714d2383354a270e62/yarl-1.24.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e7d42c531243450ef0d4d9c172e7ed6ef052640f195629065041b5add4e058d1", size = 116025, upload-time = "2026-07-20T02:05:37.503Z" }, + { url = "https://files.pythonhosted.org/packages/d6/d0/d56c859b8222116f5d68459199f48359e0bf121b6f65a69bf329b3602ba0/yarl-1.24.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f08c7513ecef5aad65687bfdf6bc601ae9fccd04a42904501f8f7141abad9eb9", size = 109835, upload-time = "2026-07-20T02:05:39.506Z" }, + { url = "https://files.pythonhosted.org/packages/70/a2/3a35557e4d1a79425040eba202ccaf08bdc8717680fc77e2498a1ad2e0a5/yarl-1.24.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6c95b17fe34ed802f17e205112e6e10db92275c34fee290aa9bdc55a9c724027", size = 108884, upload-time = "2026-07-20T02:05:41.584Z" }, + { url = "https://files.pythonhosted.org/packages/e4/35/ef4c26356b7913c68983bac2d72a4212b3347af551cb8d250b99b5ed7b7f/yarl-1.24.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:56b149b22de33b23b0c6077ab9518c6dcb538ad462e1830e68d06591ccf6e38b", size = 107308, upload-time = "2026-07-20T02:05:43.697Z" }, + { url = "https://files.pythonhosted.org/packages/d5/91/ff0dc66c2ccf3e0153ab97ff61eabab4400e6a5264af427ab30cd69f1857/yarl-1.24.5-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a8fe66b8f300da93798025a785a5b90b42f3810dc2b72283ff84a41aaaebc293", size = 103646, upload-time = "2026-07-20T02:05:45.895Z" }, + { url = "https://files.pythonhosted.org/packages/74/f0/33b9271c7f881766359d58266fa0811d2e5210ed860e28da7dc6d7786344/yarl-1.24.5-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:377fe3732edbaf78ee74efdf2c9f49f6e99f20e7f9d2649fda3eb4badd77d76e", size = 115305, upload-time = "2026-07-20T02:05:47.832Z" }, + { url = "https://files.pythonhosted.org/packages/ef/65/fd79fb1868c4a80db8661091de525bf430f63c3bea1b20e8b6a84fc7d359/yarl-1.24.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e8ffa78582120024f476a611d7befc123cee59e47e8309d470cf667d806e613b", size = 108404, upload-time = "2026-07-20T02:05:49.604Z" }, + { url = "https://files.pythonhosted.org/packages/ff/ba/dbabe6b262f17a816c70cfc09558dbf03ece3ec76684d02f911a3d3a189c/yarl-1.24.5-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:daba5e594f06114e37db186efd2dd916609071e59daca901a0a2e71f02b142ce", size = 115940, upload-time = "2026-07-20T02:05:51.741Z" }, + { url = "https://files.pythonhosted.org/packages/a5/43/fab2d1dad9d340a268cdde63756a123d069723efff6a372d123fa74a9517/yarl-1.24.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:65be18ec59496c13908f02a2472751d9ef840b4f3fb5726f129306bf6a2a7bba", size = 110006, upload-time = "2026-07-20T02:05:53.554Z" }, + { url = "https://files.pythonhosted.org/packages/c4/27/41eb51bbd1b8d89546b83897cfb0164f1e109304fd408dbb151b639eec0f/yarl-1.24.5-cp312-cp312-win_amd64.whl", hash = "sha256:a929d878fec099030c292803b31e5d5540a7b6a31e6a3cc76cb4685fc2a2f51b", size = 97618, upload-time = "2026-07-20T02:05:55.57Z" }, + { url = "https://files.pythonhosted.org/packages/3c/25/b2553764b3d65db711d8f45416351ec4f420847558eb669edcbcaadf5780/yarl-1.24.5-cp312-cp312-win_arm64.whl", hash = "sha256:7ce27823052e2013b597e0c738b13e7e36b8ccb9400df8959417b052ab0fd92c", size = 93018, upload-time = "2026-07-20T02:05:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/61/02/962c1cbfc401a30c1d034dc67ff395f64b52302c6d62de556c1fca99acc0/yarl-1.24.5-py3-none-any.whl", hash = "sha256:a33700d13d9b7d84fd10947b09ff69fb9a792e519c8cb9764a3ca70baa6c23a7", size = 58612, upload-time = "2026-07-20T02:07:43.461Z" }, +] diff --git a/examples/financial-filing-agent/verified-run/evaluation.json b/examples/financial-filing-agent/verified-run/evaluation.json new file mode 100644 index 00000000..d6e73c1f --- /dev/null +++ b/examples/financial-filing-agent/verified-run/evaluation.json @@ -0,0 +1,45 @@ +{ + "passed": true, + "checks": [ + { + "name": "route", + "passed": true, + "detail": "superseded_figure" + }, + { + "name": "net-income-delta", + "passed": true, + "detail": "{'value_millions': -9.016, 'diluted_eps': -0.34, 'percent': -20.0}" + }, + { + "name": "eps-delta", + "passed": true, + "detail": "{'value_millions': -9.016, 'diluted_eps': -0.34, 'percent': -20.0}" + }, + { + "name": "percent-delta", + "passed": true, + "detail": "{'value_millions': -9.016, 'diluted_eps': -0.34, 'percent': -20.0}" + }, + { + "name": "source-lineage", + "passed": true, + "detail": "['2023-10q', '2025-8k-item-4-02', '2025-10ka']" + }, + { + "name": "caveat-preserved", + "passed": true, + "detail": "The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes." + }, + { + "name": "ranked-source-evidence", + "passed": true, + "detail": "['chunk-1', 'chunk-0', 'chunk-3', 'chunk-2']" + }, + { + "name": "unsafe-claims-excluded", + "passed": true, + "detail": "fraud, investment recommendation, misconduct" + } + ] +} diff --git a/examples/financial-filing-agent/verified-run/manifest.json b/examples/financial-filing-agent/verified-run/manifest.json new file mode 100644 index 00000000..0042b160 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/manifest.json @@ -0,0 +1,138 @@ +{ + "created_at": "2026-07-25T02:28:01.848776+00:00", + "endpoint": "http://127.0.0.1:8080", + "sie_server_commit": "4b5ea9ccd5d5fc07c56edfea790080b05e17f0d2", + "run_command": "Modal exact-source reference examples against public SIE main at 4b5ea9c", + "models": { + "parse": "docling-project/docling", + "retrieve": "BAAI/bge-m3", + "rerank": "Qwen/Qwen3-Reranker-4B", + "entities": "urchade/gliner_multi-v2.1", + "extract": "fastino/gliner2-large-v1" + }, + "fixture": { + "path": "fixtures/pathward-filing-packet.html", + "sha256": "6232258157eb1881e8c1bbd479958ae13ea63281a21569e20414683e7c23c3ea" + }, + "artifacts": [ + { + "path": "parsed.md", + "sha256": "8b77782d26ad4316b1ebda9466057eb653759313c82cd97714cb86117d791601" + }, + { + "path": "review.json", + "sha256": "f5c9c672f35a5e98a5f0ef54a4b42ef4c89c4b1777cc0723c833880a462c3a82" + }, + { + "path": "raw/entities-original-10q.json", + "sha256": "d7db84b21d2f86a0b1d3f80c30091de9f0557910d147d27e85689a6c79be353c" + }, + { + "path": "raw/entities-restated-10ka.json", + "sha256": "815e9b289837a1eefcc72bd08c23c11ce6e6533398a533ba5540d57743aedb68" + }, + { + "path": "raw/entities-status.json", + "sha256": "4dc6569dcc77d12e373e7b89a21676bced7849bf1abefee92399e0835599e115" + }, + { + "path": "raw/entities.json", + "sha256": "0c07ce92df4e183c7a4cf4f567b06474d0f1245b37326b09b894a159f4ff54c3" + }, + { + "path": "raw/gliner2-original-10q.json", + "sha256": "02535822a2e1f0a061e43253b993a296a76444d1198b2ee25379df91e7f4e512" + }, + { + "path": "raw/gliner2-restated-10ka.json", + "sha256": "23c3e88506769d17e34cdb1ad654d99212623f8f7fd6f49f11086fac5a68a820" + }, + { + "path": "raw/gliner2-status.json", + "sha256": "8a25edf9c397dc00b7dd11a454ceaebfc70c3f94d6d44fd7f6d85b05be78bac5" + }, + { + "path": "raw/mapped.json", + "sha256": "756f36efddf2dc875f60e0b5a9c7dd1eceb901234c9b5ba7493c2bd24028a6e9" + }, + { + "path": "raw/parse.json", + "sha256": "9f0e6109b074439f331ff97bf2aceaae4b4566db9553c8f7779673acb53414e2" + }, + { + "path": "raw/rerank.json", + "sha256": "1d8bb7655c90ee6a6342ce05ccd4d15e9e497ac70e58ed761faba7f6431c1e78" + }, + { + "path": "raw/retrieve.json", + "sha256": "e98ce5792654f8b68bd3b93789ae75cb4b24482bc1162ba9b9dba6147198482b" + }, + { + "path": "evaluation.json", + "sha256": "6d9a68a668af31b301a66f7d6a0c261e090c879a5ecec7eb55bfb7b3bea0bc26" + } + ], + "calls": [ + { + "stage": "parse", + "model": "docling", + "configured_model": "docling-project/docling", + "latency_ms": 35300.6 + }, + { + "stage": "retrieve", + "model": "BAAI/bge-m3", + "latency_ms": 11543.0 + }, + { + "stage": "rerank", + "model": "Qwen/Qwen3-Reranker-4B", + "latency_ms": 16574.0 + }, + { + "stage": "entities_original_10q", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 11186.1 + }, + { + "stage": "entities_restated_10ka", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 183.8 + }, + { + "stage": "entities_status", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 130.7 + }, + { + "stage": "gliner2_original_10q", + "model": "fastino/gliner2-large-v1", + "latency_ms": 10638.7 + }, + { + "stage": "gliner2_restated_10ka", + "model": "fastino/gliner2-large-v1", + "latency_ms": 62.0 + }, + { + "stage": "gliner2_status", + "model": "fastino/gliner2-large-v1", + "latency_ms": 50.3 + } + ], + "pipeline": [ + "parse", + "retrieve", + "rerank", + "entities_original_10q", + "entities_restated_10ka", + "entities_status", + "gliner2_original_10q", + "gliner2_restated_10ka", + "gliner2_status", + "source_specific_table_mapping", + "cross_filing_value_check", + "deterministic_validation" + ], + "decision_boundary": "The review fails closed unless GLiNER and GLiNER2 recover source spans from both filing tables, the original Form 10-Q values match the Form 10-K/A's previously reported column, and reranked evidence retains the filing-status span and Pathward's exact life-of-portfolio caveat." +} diff --git a/examples/financial-filing-agent/verified-run/parsed.md b/examples/financial-filing-agent/verified-run/parsed.md new file mode 100644 index 00000000..cbb3fae6 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/parsed.md @@ -0,0 +1,53 @@ +# Pathward Financial source excerpts + +## Original Form 10-Q + +Accession 0000907471-23-000090. Filed August 8, 2023. + +Three Months Ended June 30, 2023 + +| (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | +|-------------------------------------------------|---------|---------|----------|----------| +| Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | +| Diluted | $1.68 | $0.76 | $4.62 | $4.44 | + +## Item 4.02 Form 8-K + +Accession 0000907471-25-000071. Filed June 26, 2025. + +On June 26, 2025, the Audit Committee (the "Audit Committee") of the Board of Directors of Pathward Financial, + +Inc. ("Pathward Financial" or the "Company"), after discussion with management and the Company's independent + +registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial + +statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year + +period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated + +financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, + +2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q + +(collectively, the "Affected Periods") should no longer be relied upon because of errors identified in such + +financial statements, as described below. Similarly, any financial information in the Company's prior earnings + +releases, press releases, shareholder communications, investor presentations or other communications that + +relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. + +The change from net to gross basis presentation does not impact net income over the life of the portfolio, but + +changes the timing of when elements of the programs are recognized for accounting purposes. + +## Restated Form 10-K/A + +Accession 0000907471-25-000083. Filed August 29, 2025. + +Three Months Ended June 30, 2023 + +| (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | +|-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| +| Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | +| Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 | \ No newline at end of file diff --git a/examples/financial-filing-agent/verified-run/raw/entities-original-10q.json b/examples/financial-filing-agent/verified-run/raw/entities-original-10q.json new file mode 100644 index 00000000..01a1b086 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/entities-original-10q.json @@ -0,0 +1,97 @@ +{ + "entities": [ + { + "text": "Original Form 10-Q Accession 0000907471-23-000090", + "label": "filing", + "score": 0.75634765625, + "start": 3, + "end": 52, + "bbox": null + }, + { + "text": "Three Months Ended June 30, 2023", + "label": "reporting period", + "score": 0.541015625, + "start": 76, + "end": 108, + "bbox": null + }, + { + "text": "2023 | 2022", + "label": "reporting period", + "score": 0.52978515625, + "start": 161, + "end": 175, + "bbox": null + }, + { + "text": "$45,096", + "label": "money amount", + "score": 0.91259765625, + "start": 349, + "end": 356, + "bbox": null + }, + { + "text": "$22,391", + "label": "money amount", + "score": 0.8896484375, + "start": 359, + "end": 366, + "bbox": null + }, + { + "text": "$127,709", + "label": "money amount", + "score": 0.9140625, + "start": 369, + "end": 377, + "bbox": null + }, + { + "text": "$132,966", + "label": "money amount", + "score": 0.93310546875, + "start": 380, + "end": 388, + "bbox": null + }, + { + "text": "$1.68", + "label": "money amount", + "score": 0.79150390625, + "start": 443, + "end": 448, + "bbox": null + }, + { + "text": "$0.76", + "label": "money amount", + "score": 0.6875, + "start": 453, + "end": 458, + "bbox": null + }, + { + "text": "$4.62", + "label": "money amount", + "score": 0.765625, + "start": 463, + "end": 468, + "bbox": null + }, + { + "text": "$4.44", + "label": "money amount", + "score": 0.732421875, + "start": 474, + "end": 479, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "entities_original_10q", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/financial-filing-agent/verified-run/raw/entities-restated-10ka.json b/examples/financial-filing-agent/verified-run/raw/entities-restated-10ka.json new file mode 100644 index 00000000..464fbea9 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/entities-restated-10ka.json @@ -0,0 +1,73 @@ +{ + "entities": [ + { + "text": "Three Months Ended June 30, 2023", + "label": "reporting period", + "score": 0.7412109375, + "start": 79, + "end": 111, + "bbox": null + }, + { + "text": "Dollars in thousands", + "label": "money amount", + "score": 0.6806640625, + "start": 115, + "end": 135, + "bbox": null + }, + { + "text": "$45,096", + "label": "money amount", + "score": 0.83642578125, + "start": 704, + "end": 711, + "bbox": null + }, + { + "text": "$(9,016)", + "label": "money amount", + "score": 0.6572265625, + "start": 744, + "end": 752, + "bbox": null + }, + { + "text": "$36,080", + "label": "money amount", + "score": 0.82421875, + "start": 797, + "end": 804, + "bbox": null + }, + { + "text": "$127,709", + "label": "money amount", + "score": 0.8466796875, + "start": 813, + "end": 821, + "bbox": null + }, + { + "text": "$(9,721)", + "label": "money amount", + "score": 0.6708984375, + "start": 853, + "end": 861, + "bbox": null + }, + { + "text": "$117,988", + "label": "money amount", + "score": 0.84912109375, + "start": 906, + "end": 914, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "entities_restated_10ka", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/financial-filing-agent/verified-run/raw/entities-status.json b/examples/financial-filing-agent/verified-run/raw/entities-status.json new file mode 100644 index 00000000..29695e7d --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/entities-status.json @@ -0,0 +1,57 @@ +{ + "entities": [ + { + "text": "Pathward Financial", + "label": "company", + "score": 0.8701171875, + "start": 2, + "end": 20, + "bbox": null + }, + { + "text": "Company", + "label": "company", + "score": 0.876953125, + "start": 30, + "end": 37, + "bbox": null + }, + { + "text": "Company", + "label": "company", + "score": 0.8974609375, + "start": 82, + "end": 89, + "bbox": null + }, + { + "text": "Company", + "label": "company", + "score": 0.916015625, + "start": 169, + "end": 176, + "bbox": null + }, + { + "text": "Annual Reports on Form 10-K", + "label": "filing", + "score": 0.86279296875, + "start": 371, + "end": 398, + "bbox": null + }, + { + "text": "Quarterly Reports on Form 10-Q", + "label": "filing", + "score": 0.76904296875, + "start": 616, + "end": 646, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "entities_status", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/financial-filing-agent/verified-run/raw/entities.json b/examples/financial-filing-agent/verified-run/raw/entities.json new file mode 100644 index 00000000..d2ca5a6e --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/entities.json @@ -0,0 +1,205 @@ +{ + "model": "urchade/gliner_multi-v2.1", + "entities": [ + { + "text": "Original Form 10-Q Accession 0000907471-23-000090", + "label": "filing", + "score": 0.75634765625, + "start": 3, + "end": 52, + "bbox": null + }, + { + "text": "Three Months Ended June 30, 2023", + "label": "reporting period", + "score": 0.541015625, + "start": 76, + "end": 108, + "bbox": null + }, + { + "text": "2023 | 2022", + "label": "reporting period", + "score": 0.52978515625, + "start": 161, + "end": 175, + "bbox": null + }, + { + "text": "$45,096", + "label": "money amount", + "score": 0.91259765625, + "start": 349, + "end": 356, + "bbox": null + }, + { + "text": "$22,391", + "label": "money amount", + "score": 0.8896484375, + "start": 359, + "end": 366, + "bbox": null + }, + { + "text": "$127,709", + "label": "money amount", + "score": 0.9140625, + "start": 369, + "end": 377, + "bbox": null + }, + { + "text": "$132,966", + "label": "money amount", + "score": 0.93310546875, + "start": 380, + "end": 388, + "bbox": null + }, + { + "text": "$1.68", + "label": "money amount", + "score": 0.79150390625, + "start": 443, + "end": 448, + "bbox": null + }, + { + "text": "$0.76", + "label": "money amount", + "score": 0.6875, + "start": 453, + "end": 458, + "bbox": null + }, + { + "text": "$4.62", + "label": "money amount", + "score": 0.765625, + "start": 463, + "end": 468, + "bbox": null + }, + { + "text": "$4.44", + "label": "money amount", + "score": 0.732421875, + "start": 474, + "end": 479, + "bbox": null + }, + { + "text": "Three Months Ended June 30, 2023", + "label": "reporting period", + "score": 0.7412109375, + "start": 79, + "end": 111, + "bbox": null + }, + { + "text": "Dollars in thousands", + "label": "money amount", + "score": 0.6806640625, + "start": 115, + "end": 135, + "bbox": null + }, + { + "text": "$45,096", + "label": "money amount", + "score": 0.83642578125, + "start": 704, + "end": 711, + "bbox": null + }, + { + "text": "$(9,016)", + "label": "money amount", + "score": 0.6572265625, + "start": 744, + "end": 752, + "bbox": null + }, + { + "text": "$36,080", + "label": "money amount", + "score": 0.82421875, + "start": 797, + "end": 804, + "bbox": null + }, + { + "text": "$127,709", + "label": "money amount", + "score": 0.8466796875, + "start": 813, + "end": 821, + "bbox": null + }, + { + "text": "$(9,721)", + "label": "money amount", + "score": 0.6708984375, + "start": 853, + "end": 861, + "bbox": null + }, + { + "text": "$117,988", + "label": "money amount", + "score": 0.84912109375, + "start": 906, + "end": 914, + "bbox": null + }, + { + "text": "Pathward Financial", + "label": "company", + "score": 0.8701171875, + "start": 2, + "end": 20, + "bbox": null + }, + { + "text": "Company", + "label": "company", + "score": 0.876953125, + "start": 30, + "end": 37, + "bbox": null + }, + { + "text": "Company", + "label": "company", + "score": 0.8974609375, + "start": 82, + "end": 89, + "bbox": null + }, + { + "text": "Company", + "label": "company", + "score": 0.916015625, + "start": 169, + "end": 176, + "bbox": null + }, + { + "text": "Annual Reports on Form 10-K", + "label": "filing", + "score": 0.86279296875, + "start": 371, + "end": 398, + "bbox": null + }, + { + "text": "Quarterly Reports on Form 10-Q", + "label": "filing", + "score": 0.76904296875, + "start": 616, + "end": 646, + "bbox": null + } + ] +} diff --git a/examples/financial-filing-agent/verified-run/raw/gliner2-original-10q.json b/examples/financial-filing-agent/verified-run/raw/gliner2-original-10q.json new file mode 100644 index 00000000..fef20c7f --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/gliner2-original-10q.json @@ -0,0 +1,89 @@ +{ + "entities": [ + { + "text": "2023", + "label": "reporting period", + "score": 0.59130859375, + "start": 104, + "end": 108, + "bbox": null + }, + { + "text": "2022", + "label": "reporting period", + "score": 0.63720703125, + "start": 192, + "end": 196, + "bbox": null + }, + { + "text": "$45,096", + "label": "net income", + "score": 0.9970703125, + "start": 349, + "end": 356, + "bbox": null + }, + { + "text": "$22,391", + "label": "net income", + "score": 0.99365234375, + "start": 359, + "end": 366, + "bbox": null + }, + { + "text": "$127,709", + "label": "net income", + "score": 0.9951171875, + "start": 369, + "end": 377, + "bbox": null + }, + { + "text": "$132,966", + "label": "net income", + "score": 0.99609375, + "start": 380, + "end": 388, + "bbox": null + }, + { + "text": "$1.68", + "label": "diluted EPS", + "score": 0.9921875, + "start": 443, + "end": 448, + "bbox": null + }, + { + "text": "$0.76", + "label": "diluted EPS", + "score": 0.99169921875, + "start": 453, + "end": 458, + "bbox": null + }, + { + "text": "$4.62", + "label": "diluted EPS", + "score": 0.98681640625, + "start": 463, + "end": 468, + "bbox": null + }, + { + "text": "$4.44", + "label": "diluted EPS", + "score": 0.984375, + "start": 474, + "end": 479, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-original-10q-table-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/financial-filing-agent/verified-run/raw/gliner2-restated-10ka.json b/examples/financial-filing-agent/verified-run/raw/gliner2-restated-10ka.json new file mode 100644 index 00000000..1b08161a --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/gliner2-restated-10ka.json @@ -0,0 +1,97 @@ +{ + "entities": [ + { + "text": "Three Months Ended June 30, 2023", + "label": "reporting period", + "score": 0.6220703125, + "start": 79, + "end": 111, + "bbox": null + }, + { + "text": "$45,096", + "label": "previously reported net income", + "score": 0.6103515625, + "start": 704, + "end": 711, + "bbox": null + }, + { + "text": "$45,096", + "label": "as restated net income", + "score": 0.57080078125, + "start": 704, + "end": 711, + "bbox": null + }, + { + "text": "$36,080", + "label": "previously reported net income", + "score": 0.7138671875, + "start": 797, + "end": 804, + "bbox": null + }, + { + "text": "$36,080", + "label": "as restated net income", + "score": 0.74462890625, + "start": 797, + "end": 804, + "bbox": null + }, + { + "text": "$127,709", + "label": "as restated net income", + "score": 0.68310546875, + "start": 813, + "end": 821, + "bbox": null + }, + { + "text": "$117,988", + "label": "as restated net income", + "score": 0.70703125, + "start": 906, + "end": 914, + "bbox": null + }, + { + "text": "$1.68", + "label": "previously reported diluted EPS", + "score": 0.89599609375, + "start": 974, + "end": 979, + "bbox": null + }, + { + "text": "$1.34", + "label": "previously reported diluted EPS", + "score": 0.85986328125, + "start": 1067, + "end": 1072, + "bbox": null + }, + { + "text": "$4.62", + "label": "as restated diluted EPS", + "score": 0.67919921875, + "start": 1083, + "end": 1088, + "bbox": null + }, + { + "text": "$4.27", + "label": "as restated diluted EPS", + "score": 0.798828125, + "start": 1176, + "end": 1181, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-restated-table-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/financial-filing-agent/verified-run/raw/gliner2-status.json b/examples/financial-filing-agent/verified-run/raw/gliner2-status.json new file mode 100644 index 00000000..47e5a880 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/gliner2-status.json @@ -0,0 +1,33 @@ +{ + "entities": [ + { + "text": "Pathward Financial, Inc.", + "label": "company", + "score": 0.97607421875, + "start": 166, + "end": 190, + "bbox": null + }, + { + "text": "Crowe LLP", + "label": "company", + "score": 0.9228515625, + "start": 330, + "end": 339, + "bbox": null + }, + { + "text": "no longer be relied upon", + "label": "prior filing reliance status", + "score": 0.7890625, + "start": 884, + "end": 908, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-filing-status-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/financial-filing-agent/verified-run/raw/mapped.json b/examples/financial-filing-agent/verified-run/raw/mapped.json new file mode 100644 index 00000000..84b864a9 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/mapped.json @@ -0,0 +1,31 @@ +{ + "model": "fastino/gliner2-large-v1", + "method": "Source-specific Docling table coordinates validated against source-specific GLiNER2 spans", + "data": { + "company": "Pathward Financial, Inc.", + "period": "Three Months Ended June 30, 2023", + "original_net_income": "$45,096", + "restated_net_income": "$36,080", + "original_diluted_eps": "$1.68", + "restated_diluted_eps": "$1.34", + "reliance_status": "no longer be relied upon" + }, + "source_fields": { + "original_net_income": { + "source_id": "2023-10q", + "value": "$45,096" + }, + "original_diluted_eps": { + "source_id": "2023-10q", + "value": "$1.68" + }, + "restated_net_income": { + "source_id": "2025-10ka", + "value": "$36,080" + }, + "restated_diluted_eps": { + "source_id": "2025-10ka", + "value": "$1.34" + } + } +} diff --git a/examples/financial-filing-agent/verified-run/raw/parse.json b/examples/financial-filing-agent/verified-run/raw/parse.json new file mode 100644 index 00000000..4e71cc32 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/parse.json @@ -0,0 +1,1554 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "pathward-source-packet", + "data": { + "text": "Pathward Financial source excerpts\n\nOriginal Form 10-Q\n\nAccession 0000907471-23-000090. Filed August 8, 2023.\n\nThree Months Ended June 30, 2023\n\n| (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 |\n|-------------------------------------------------|---------|---------|----------|----------|\n| Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 |\n| Diluted | $1.68 | $0.76 | $4.62 | $4.44 |\n\nItem 4.02 Form 8-K\n\nAccession 0000907471-25-000071. Filed June 26, 2025.\n\nOn June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial,\n\nInc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent\n\nregistered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial\n\nstatements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year\n\nperiod ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated\n\nfinancial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31,\n\n2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q\n\n(collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such\n\nfinancial statements, as described below. Similarly, any financial information in the Company's prior earnings\n\nreleases, press releases, shareholder communications, investor presentations or other communications that\n\nrelates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon.\n\nThe change from net to gross basis presentation does not impact net income over the life of the portfolio, but\n\nchanges the timing of when elements of the programs are recognized for accounting purposes.\n\nRestated Form 10-K/A\n\nAccession 0000907471-25-000083. Filed August 29, 2025.\n\nThree Months Ended June 30, 2023\n\n| (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated |\n|-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------|\n| Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 |\n| Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |", + "markdown": "# Pathward Financial source excerpts\n\n## Original Form 10-Q\n\nAccession 0000907471-23-000090. Filed August 8, 2023.\n\nThree Months Ended June 30, 2023\n\n| (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 |\n|-------------------------------------------------|---------|---------|----------|----------|\n| Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 |\n| Diluted | $1.68 | $0.76 | $4.62 | $4.44 |\n\n## Item 4.02 Form 8-K\n\nAccession 0000907471-25-000071. Filed June 26, 2025.\n\nOn June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial,\n\nInc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent\n\nregistered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial\n\nstatements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year\n\nperiod ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated\n\nfinancial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31,\n\n2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q\n\n(collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such\n\nfinancial statements, as described below. Similarly, any financial information in the Company's prior earnings\n\nreleases, press releases, shareholder communications, investor presentations or other communications that\n\nrelates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon.\n\nThe change from net to gross basis presentation does not impact net income over the life of the portfolio, but\n\nchanges the timing of when elements of the programs are recognized for accounting purposes.\n\n## Restated Form 10-K/A\n\nAccession 0000907471-25-000083. Filed August 29, 2025.\n\nThree Months Ended June 30, 2023\n\n| (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated |\n|-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------|\n| Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 |\n| Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |", + "document": { + "schema_name": "DoclingDocument", + "version": "1.10.0", + "name": "document", + "origin": { + "mimetype": "text/html", + "binary_hash": 293974493265904618, + "filename": "document.html" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "content_layer": "furniture", + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + } + ], + "content_layer": "body", + "name": "_root_", + "label": "unspecified" + }, + "groups": [], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "title", + "prov": [], + "orig": "Pathward Financial source excerpts", + "text": "Pathward Financial source excerpts" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/20" + } + ], + "content_layer": "body", + "label": "title", + "prov": [], + "orig": "Pathward Financial source excerpts", + "text": "Pathward Financial source excerpts" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/texts/1" + }, + "children": [ + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/tables/0" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "Original Form 10-Q", + "text": "Original Form 10-Q", + "level": 1 + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/texts/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Accession 0000907471-23-000090. Filed August 8, 2023.", + "text": "Accession 0000907471-23-000090. Filed August 8, 2023." + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Three Months Ended June 30, 2023", + "text": "Three Months Ended June 30, 2023" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/1" + }, + "children": [ + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "Item 4.02 Form 8-K", + "text": "Item 4.02 Form 8-K", + "level": 1 + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Accession 0000907471-25-000071. Filed June 26, 2025.", + "text": "Accession 0000907471-25-000071. Filed June 26, 2025." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "On June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial,", + "text": "On June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial," + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Inc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent", + "text": "Inc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent" + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial", + "text": "registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial" + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year", + "text": "statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year" + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated", + "text": "period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated" + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31,", + "text": "financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31," + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q", + "text": "2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "(collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such", + "text": "(collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such" + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "financial statements, as described below. Similarly, any financial information in the Company's prior earnings", + "text": "financial statements, as described below. Similarly, any financial information in the Company's prior earnings" + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "releases, press releases, shareholder communications, investor presentations or other communications that", + "text": "releases, press releases, shareholder communications, investor presentations or other communications that" + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon.", + "text": "relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "The change from net to gross basis presentation does not impact net income over the life of the portfolio, but", + "text": "The change from net to gross basis presentation does not impact net income over the life of the portfolio, but" + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "changes the timing of when elements of the programs are recognized for accounting purposes.", + "text": "changes the timing of when elements of the programs are recognized for accounting purposes." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/1" + }, + "children": [ + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/tables/1" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "Restated Form 10-K/A", + "text": "Restated Form 10-K/A", + "level": 1 + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Accession 0000907471-25-000083. Filed August 29, 2025.", + "text": "Accession 0000907471-25-000083. Filed August 29, 2025." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Three Months Ended June 30, 2023", + "text": "Three Months Ended June 30, 2023" + } + ], + "pictures": [], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/texts/2" + }, + "children": [], + "content_layer": "body", + "label": "table", + "prov": [], + "captions": [], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "(Dollars in thousands, except per share data)", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2023", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2022", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2023", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2022", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Net income attributable to parent", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$45,096", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "$22,391", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "$127,709", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$132,966", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Diluted", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$1.68", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "$0.76", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "$4.62", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$4.44", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + } + ], + "num_rows": 3, + "num_cols": 5, + "orientation": "rot_0", + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "(Dollars in thousands, except per share data)", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "2023", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2022", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2023", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2022", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Net income attributable to parent", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$45,096", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "$22,391", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "$127,709", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$132,966", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Diluted", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$1.68", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "$0.76", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "$4.62", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$4.44", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + } + ] + ] + }, + "annotations": [] + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "content_layer": "body", + "label": "table", + "prov": [], + "captions": [], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "(Dollars in thousands, except per share data)", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "As Previously Reported on Form 10-Q", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Restatement Adjustment", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "Restatement Reference", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "As Restated", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "As Previously Reported on Form 10-Q", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Restatement Adjustment", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Restatement Reference", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "As Restated", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Net income attributable to parent", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$45,096", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "$(9,016)", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$36,080", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "$127,709", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "$(9,721)", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "$117,988", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Diluted", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$1.68", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$1.34", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "$4.62", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "$4.27", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + } + ], + "num_rows": 3, + "num_cols": 9, + "orientation": "rot_0", + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "(Dollars in thousands, except per share data)", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "As Previously Reported on Form 10-Q", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Restatement Adjustment", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "Restatement Reference", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "As Restated", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "As Previously Reported on Form 10-Q", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Restatement Adjustment", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Restatement Reference", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "As Restated", + "column_header": true, + "row_header": false, + "row_section": false, + "fillable": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Net income attributable to parent", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$45,096", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "$(9,016)", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$36,080", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "$127,709", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "$(9,721)", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "$117,988", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Diluted", + "column_header": false, + "row_header": true, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "$1.68", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "$1.34", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "$4.62", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "$4.27", + "column_header": false, + "row_header": false, + "row_section": false, + "fillable": false + } + ] + ] + }, + "annotations": [] + } + ], + "key_value_items": [], + "form_items": [], + "pages": {} + } + }, + "model": "docling" +} diff --git a/examples/financial-filing-agent/verified-run/raw/rerank.json b/examples/financial-filing-agent/verified-run/raw/rerank.json new file mode 100644 index 00000000..89ad764c --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/rerank.json @@ -0,0 +1,29 @@ +{ + "model": "Qwen/Qwen3-Reranker-4B", + "scores": [ + { + "item_id": "chunk-1", + "score": 0.97265625, + "rank": 0 + }, + { + "item_id": "chunk-0", + "score": 0.96484375, + "rank": 1 + }, + { + "item_id": "chunk-3", + "score": 0.9609375, + "rank": 2 + }, + { + "item_id": "chunk-2", + "score": 0.65234375, + "rank": 3 + } + ], + "query_id": "filing-query", + "usage": { + "input_tokens": 1261 + } +} diff --git a/examples/financial-filing-agent/verified-run/raw/retrieve.json b/examples/financial-filing-agent/verified-run/raw/retrieve.json new file mode 100644 index 00000000..ac617af8 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/raw/retrieve.json @@ -0,0 +1,5211 @@ +{ + "query": { + "id": "filing-query", + "dense": [ + -0.044189453125, + -0.00714111328125, + -0.01519775390625, + -0.028564453125, + -0.025390625, + -0.0155029296875, + 0.048095703125, + 0.0166015625, + -0.0208740234375, + 0.056884765625, + -0.0069580078125, + -0.0027618408203125, + -0.0076904296875, + -0.01177978515625, + -0.0206298828125, + -0.06494140625, + 0.00799560546875, + -0.03759765625, + -0.057861328125, + -0.026123046875, + -0.0302734375, + -0.017333984375, + 0.0234375, + 0.0194091796875, + 0.00799560546875, + 0.0240478515625, + 0.0205078125, + -0.01251220703125, + 0.031005859375, + 0.00994873046875, + 0.005340576171875, + -0.052490234375, + -0.01409912109375, + -0.009033203125, + 0.0084228515625, + -0.0478515625, + 0.005523681640625, + 0.031005859375, + -0.034423828125, + -0.0096435546875, + -0.0244140625, + 0.027099609375, + 0.031494140625, + -0.01531982421875, + 0.00567626953125, + -0.015869140625, + -0.00146484375, + -0.048828125, + -0.0234375, + 0.01025390625, + 0.041015625, + -0.006195068359375, + 0.037109375, + -0.0247802734375, + 0.000728607177734375, + 0.039794921875, + -0.040283203125, + -0.0179443359375, + -0.0634765625, + 0.021240234375, + -0.03466796875, + -0.033935546875, + -0.0380859375, + -0.0380859375, + 0.034423828125, + 0.05078125, + 0.029296875, + 0.0247802734375, + -0.00787353515625, + 0.0235595703125, + 0.01446533203125, + 0.00927734375, + -0.01495361328125, + -0.054931640625, + -0.0966796875, + -0.00015926361083984375, + 0.03857421875, + -0.0277099609375, + 0.038330078125, + -0.0213623046875, + -0.002044677734375, + -0.054443359375, + 0.0126953125, + -0.01055908203125, + -0.06005859375, + 0.022705078125, + -0.0302734375, + -0.017822265625, + 0.0269775390625, + -0.00732421875, + 0.0201416015625, + -0.04833984375, + 0.033935546875, + -0.042236328125, + -0.056396484375, + -0.041748046875, + -0.017333984375, + 0.03271484375, + 0.0120849609375, + 0.01611328125, + 0.0269775390625, + 0.016845703125, + 0.046875, + -0.00034332275390625, + 0.0537109375, + -0.03515625, + 0.014892578125, + -0.025634765625, + 0.01275634765625, + -0.0203857421875, + 0.0186767578125, + 0.011474609375, + 0.0228271484375, + 0.0185546875, + -0.0174560546875, + 0.04296875, + -0.004058837890625, + 0.0211181640625, + -0.037109375, + -0.011962890625, + 0.06884765625, + -0.0296630859375, + 0.04345703125, + -0.0269775390625, + -0.01904296875, + -0.0081787109375, + 0.04541015625, + -0.000270843505859375, + -0.00933837890625, + -0.0086669921875, + 0.0169677734375, + 0.04296875, + -0.03466796875, + -0.032958984375, + -0.0286865234375, + -0.0289306640625, + 0.041259765625, + -0.025634765625, + 0.0022430419921875, + -0.054931640625, + 0.0284423828125, + 0.03662109375, + -0.045166015625, + -0.02783203125, + 0.05712890625, + -0.0791015625, + 0.02978515625, + 0.00909423828125, + 0.006500244140625, + -0.021240234375, + 0.0054931640625, + -0.0010986328125, + 0.005218505859375, + -0.031494140625, + 0.02197265625, + 0.0084228515625, + 0.04345703125, + -0.022216796875, + -0.01318359375, + 0.019775390625, + -0.009521484375, + 0.01031494140625, + 0.02685546875, + -0.016357421875, + 0.0279541015625, + 0.00390625, + 0.006378173828125, + 0.00616455078125, + 0.03564453125, + -0.0299072265625, + 0.026123046875, + -0.0106201171875, + 0.01458740234375, + -0.0019989013671875, + 0.03076171875, + 0.0277099609375, + 0.123046875, + 0.0098876953125, + 0.0284423828125, + -0.02490234375, + -0.041748046875, + 0.034912109375, + -0.0162353515625, + -0.0791015625, + 0.000885009765625, + 0.013427734375, + -0.03369140625, + 0.00017833709716796875, + 0.04833984375, + 0.0213623046875, + -0.0267333984375, + -0.0169677734375, + 0.06005859375, + 0.03466796875, + -0.032470703125, + -0.04931640625, + -0.031005859375, + 0.004974365234375, + -0.01055908203125, + -0.029541015625, + -0.01556396484375, + 0.0203857421875, + 0.01129150390625, + -0.021484375, + -0.0220947265625, + -0.0009918212890625, + -0.0025634765625, + -0.04345703125, + -0.01611328125, + 0.0185546875, + 0.003143310546875, + 0.025634765625, + 0.0458984375, + 0.00110626220703125, + 0.009521484375, + 0.006866455078125, + -0.01177978515625, + 0.0174560546875, + 0.041748046875, + -0.00141143798828125, + 0.006072998046875, + -0.00982666015625, + -0.021484375, + -0.007659912109375, + -0.0279541015625, + 0.0322265625, + -0.054443359375, + 0.0400390625, + 0.01409912109375, + -0.07080078125, + 0.01025390625, + -0.0045166015625, + 0.0260009765625, + -0.017578125, + 0.04833984375, + -0.0013427734375, + -0.05126953125, + 0.04296875, + 0.0021514892578125, + 0.0244140625, + 0.00848388671875, + -0.068359375, + -0.04736328125, + -0.0291748046875, + -0.003936767578125, + -0.04248046875, + 0.039306640625, + 0.041015625, + 0.032958984375, + 0.0019073486328125, + 0.035400390625, + -0.038330078125, + -0.01123046875, + -0.0079345703125, + -0.00799560546875, + 0.038818359375, + 0.044921875, + -0.0026092529296875, + 0.007781982421875, + -0.01397705078125, + 0.0185546875, + 0.02685546875, + 0.04345703125, + 0.0181884765625, + 0.00015544891357421875, + 0.001007080078125, + -0.0400390625, + 0.01611328125, + -0.0233154296875, + 0.00909423828125, + -0.027587890625, + 0.04150390625, + 0.0084228515625, + -0.0035552978515625, + -0.0311279296875, + 0.0537109375, + -0.0111083984375, + -0.0205078125, + 0.06884765625, + 0.0279541015625, + 0.0458984375, + 0.0194091796875, + 0.021240234375, + 0.039306640625, + 0.031494140625, + -0.033935546875, + -0.021728515625, + 0.030517578125, + 0.015625, + -0.057373046875, + 0.0020904541015625, + 0.00238037109375, + 0.0693359375, + -0.0233154296875, + -0.037353515625, + -0.01483154296875, + -0.0023193359375, + -0.140625, + -0.045166015625, + -0.00982666015625, + 0.0299072265625, + 0.003753662109375, + 0.019287109375, + -0.006500244140625, + -0.01287841796875, + -0.0277099609375, + -0.0012054443359375, + -0.022705078125, + -0.058349609375, + -0.0380859375, + 0.008056640625, + 0.0439453125, + 0.0250244140625, + 0.0255126953125, + 0.0255126953125, + 0.03076171875, + -0.022705078125, + -0.06689453125, + -0.0302734375, + 0.044189453125, + -0.0242919921875, + -0.007293701171875, + 0.0074462890625, + -0.006195068359375, + -0.00762939453125, + -0.057373046875, + 0.0201416015625, + 0.0029144287109375, + 0.051025390625, + -0.0106201171875, + 0.0299072265625, + 0.0225830078125, + 0.03369140625, + 0.00433349609375, + -0.0191650390625, + 0.000621795654296875, + 0.000759124755859375, + 0.0289306640625, + 0.0244140625, + -0.003875732421875, + -0.01025390625, + -0.041259765625, + -0.016845703125, + 0.0361328125, + 0.01104736328125, + -0.0260009765625, + 0.035888671875, + 0.041259765625, + 0.032958984375, + -0.00933837890625, + -0.0361328125, + -0.052490234375, + -0.0284423828125, + 0.0277099609375, + 0.09375, + -0.011474609375, + -0.01104736328125, + -0.034912109375, + 0.005218505859375, + 0.005035400390625, + 0.016357421875, + -0.038330078125, + -0.007659912109375, + -0.03955078125, + -0.0296630859375, + 0.00103759765625, + -0.0208740234375, + 0.0128173828125, + -0.005523681640625, + 0.0194091796875, + -0.048583984375, + -0.01446533203125, + 0.020751953125, + -0.00823974609375, + 0.0225830078125, + 0.0045166015625, + -0.05126953125, + 0.001190185546875, + -0.0118408203125, + -0.003448486328125, + 0.08837890625, + 0.0147705078125, + 0.037353515625, + 0.04541015625, + 0.05712890625, + 0.025634765625, + 0.197265625, + -0.048828125, + -0.050048828125, + -0.03515625, + 0.01519775390625, + -0.036865234375, + -0.0135498046875, + 0.0169677734375, + -0.03076171875, + -0.02392578125, + 0.017578125, + 0.0040283203125, + -0.0255126953125, + -0.06103515625, + 0.00982666015625, + 0.032958984375, + -0.025390625, + 0.001556396484375, + 0.0732421875, + -0.0257568359375, + 0.0169677734375, + -0.06884765625, + -0.01416015625, + 0.050048828125, + -0.05126953125, + -0.01446533203125, + 0.00946044921875, + 0.01165771484375, + 0.00482177734375, + 0.095703125, + -0.0478515625, + -0.06298828125, + 0.040771484375, + 0.056640625, + -0.05126953125, + 0.017333984375, + -0.01446533203125, + -0.03759765625, + -0.0033111572265625, + -0.006683349609375, + 0.0162353515625, + -0.019775390625, + -0.0213623046875, + 0.00185394287109375, + -0.0096435546875, + -0.03466796875, + 0.0107421875, + -0.021728515625, + -0.0205078125, + -0.00138092041015625, + 0.005523681640625, + -0.00787353515625, + 0.04443359375, + 0.0220947265625, + 0.008056640625, + -0.045166015625, + -0.017333984375, + 0.01220703125, + -0.032470703125, + 0.01025390625, + -0.0157470703125, + -0.002960205078125, + -0.05078125, + -0.007568359375, + -0.045166015625, + -0.01373291015625, + -0.03955078125, + 0.0283203125, + 0.018798828125, + 0.0096435546875, + 0.02197265625, + 0.011962890625, + -0.01123046875, + -0.00811767578125, + 0.0218505859375, + 0.0054931640625, + -0.01251220703125, + 0.017822265625, + -0.01165771484375, + 0.00225830078125, + -0.04833984375, + 0.0045166015625, + -0.0169677734375, + -0.007476806640625, + 0.03955078125, + 0.0032501220703125, + -0.042724609375, + 0.08056640625, + 0.005859375, + -0.061279296875, + -0.007293701171875, + 0.032470703125, + 0.0162353515625, + 0.031494140625, + -0.002471923828125, + -0.01519775390625, + 0.0220947265625, + -0.0103759765625, + -0.007232666015625, + 0.0257568359375, + -0.0125732421875, + -0.032470703125, + 0.0167236328125, + -0.016845703125, + 0.046875, + 0.0069580078125, + -0.0284423828125, + -0.036376953125, + -0.04736328125, + -0.048095703125, + -0.029296875, + -0.00885009765625, + -0.0225830078125, + -0.01092529296875, + -0.036865234375, + 0.031982421875, + 0.0157470703125, + 0.01300048828125, + 0.0203857421875, + 0.032470703125, + -0.00946044921875, + -0.001434326171875, + -0.0234375, + 5.5730342864990234e-06, + 0.0244140625, + -0.00836181640625, + -0.002044677734375, + 0.041259765625, + -0.01220703125, + 0.035888671875, + -0.08984375, + -0.01019287109375, + 0.00457763671875, + -0.00897216796875, + 0.019775390625, + -0.0037384033203125, + -0.0174560546875, + 0.015380859375, + 0.05224609375, + 0.01434326171875, + 0.01165771484375, + 0.000682830810546875, + -0.0218505859375, + -0.035400390625, + 0.00726318359375, + 0.0208740234375, + 0.0235595703125, + -0.00994873046875, + -0.00482177734375, + 0.0228271484375, + 0.0208740234375, + 0.034912109375, + 0.022216796875, + -0.047119140625, + -0.04541015625, + 0.0257568359375, + -0.004608154296875, + -0.0108642578125, + -0.05224609375, + 0.00445556640625, + 0.0076904296875, + -0.0118408203125, + 0.0023193359375, + -0.004150390625, + -0.0203857421875, + 0.0556640625, + -0.0185546875, + -0.029541015625, + 0.03857421875, + 0.01318359375, + 0.0069580078125, + -0.01141357421875, + -0.0289306640625, + 0.06884765625, + 0.03662109375, + 0.0145263671875, + -0.045166015625, + 0.01904296875, + 0.019287109375, + -0.02783203125, + 0.03515625, + 0.0062255859375, + 0.010009765625, + -0.01409912109375, + 0.01495361328125, + 0.0235595703125, + -0.049560546875, + -0.0108642578125, + 0.01025390625, + -0.01068115234375, + 0.0206298828125, + 0.09619140625, + 0.00750732421875, + -0.0126953125, + 0.053955078125, + -0.00347900390625, + -0.0035858154296875, + 0.04443359375, + -0.033935546875, + -0.04345703125, + -0.00445556640625, + 0.00049591064453125, + -0.0028533935546875, + -0.052978515625, + 0.014892578125, + 0.021240234375, + -0.01708984375, + 0.021728515625, + -0.031005859375, + -0.042236328125, + -0.01483154296875, + 0.00897216796875, + -0.00531005859375, + 0.004486083984375, + 2.9206275939941406e-05, + -0.033935546875, + 0.04931640625, + -0.0037384033203125, + 0.00038909912109375, + 0.03662109375, + -0.0274658203125, + -0.001983642578125, + 0.013916015625, + -0.059814453125, + -0.01202392578125, + 0.0185546875, + -0.0233154296875, + -0.018310546875, + 0.01416015625, + 0.019775390625, + 0.0030975341796875, + 0.0050048828125, + -0.004730224609375, + 0.0069580078125, + -0.0263671875, + -0.00177764892578125, + -0.0019989013671875, + -0.036376953125, + 0.000579833984375, + -0.0279541015625, + 0.013427734375, + 0.055419921875, + -0.02392578125, + 0.033935546875, + 0.0208740234375, + 0.0047607421875, + -0.039306640625, + 0.004058837890625, + 0.003265380859375, + 0.0167236328125, + 0.0228271484375, + 6.580352783203125e-05, + 0.006439208984375, + 0.0205078125, + 0.0296630859375, + 0.0194091796875, + -0.0155029296875, + -0.0164794921875, + -0.000278472900390625, + -0.0179443359375, + -0.002471923828125, + 0.03857421875, + -0.0306396484375, + -0.064453125, + -0.09375, + -0.041015625, + 0.046875, + 0.01202392578125, + -0.0086669921875, + 0.0024871826171875, + 0.0289306640625, + -0.048828125, + -0.027587890625, + -0.0157470703125, + -0.052734375, + -0.001495361328125, + -0.0260009765625, + -0.007476806640625, + -0.0194091796875, + 0.057861328125, + -0.02978515625, + -0.01177978515625, + 0.01416015625, + 0.041748046875, + 0.03564453125, + 0.0107421875, + 0.004669189453125, + -0.00384521484375, + -0.00025177001953125, + -0.0040283203125, + 0.0177001953125, + -0.0255126953125, + -0.02783203125, + 0.0152587890625, + -0.0208740234375, + 0.0032501220703125, + 0.01904296875, + 0.015869140625, + -0.06689453125, + -0.039794921875, + -0.0250244140625, + -0.01611328125, + 0.0135498046875, + 0.006988525390625, + -0.037109375, + 0.0224609375, + 0.0250244140625, + -0.024169921875, + 0.052978515625, + 0.0128173828125, + -0.0091552734375, + -0.08154296875, + 0.0203857421875, + 0.024169921875, + 0.0004558563232421875, + -0.030517578125, + 0.032470703125, + 0.033203125, + -0.00787353515625, + -0.0211181640625, + 0.0267333984375, + 0.029296875, + 0.0020599365234375, + -0.017333984375, + -0.005828857421875, + -0.018310546875, + 0.0079345703125, + 0.005645751953125, + -0.0164794921875, + -0.03466796875, + -0.00640869140625, + -0.00555419921875, + 0.029052734375, + -0.02197265625, + 0.03466796875, + 0.054443359375, + 0.0164794921875, + 0.023193359375, + 0.0113525390625, + -0.0218505859375, + -0.04345703125, + -0.049560546875, + 0.0289306640625, + -0.0247802734375, + 0.0262451171875, + 0.0172119140625, + 0.00592041015625, + 0.006744384765625, + 0.004913330078125, + -0.0050048828125, + -0.036865234375, + 0.046630859375, + 0.004058837890625, + 0.0004405975341796875, + 0.0145263671875, + 0.0233154296875, + 0.01104736328125, + 0.03564453125, + 0.035888671875, + 0.0281982421875, + -0.034423828125, + 0.0211181640625, + -0.0284423828125, + -0.0322265625, + -0.01324462890625, + -0.001556396484375, + 0.0189208984375, + 0.0146484375, + -0.048095703125, + -0.005645751953125, + -0.003662109375, + -0.015869140625, + 0.0240478515625, + 0.01300048828125, + 0.0179443359375, + 0.0194091796875, + -0.0108642578125, + 0.031494140625, + 0.06982421875, + -0.045654296875, + 0.01220703125, + 0.0196533203125, + 0.0125732421875, + 0.004425048828125, + -0.0018157958984375, + -0.0137939453125, + 0.01409912109375, + 0.03857421875, + -0.01007080078125, + 0.059814453125, + -0.003997802734375, + -0.01446533203125, + -0.0145263671875, + 0.021484375, + -0.134765625, + 0.00180816650390625, + 0.009033203125, + -0.021240234375, + -0.06640625, + -0.0242919921875, + 0.01904296875, + -0.020751953125, + 0.004669189453125, + -0.048583984375, + 0.0181884765625, + -0.00142669677734375, + 0.0255126953125, + -0.01239013671875, + 0.06591796875, + 0.00634765625, + -0.0208740234375, + -0.0166015625, + 0.0458984375, + 0.0084228515625, + 0.038818359375, + 0.016845703125, + 0.0033416748046875, + 0.025390625, + 0.00885009765625, + -0.013427734375, + -0.044921875, + -0.011474609375, + -0.01434326171875, + -0.01336669921875, + -0.051513671875, + 0.00145721435546875, + 0.0020294189453125, + 0.0673828125, + 0.01220703125, + -0.026123046875, + -0.01275634765625, + 0.0087890625, + 0.0137939453125, + -0.01239013671875, + -0.00750732421875, + 0.029296875, + -0.025146484375, + -0.00909423828125, + 0.01348876953125, + 0.08203125, + -1.5139579772949219e-05, + 0.006011962890625, + -0.072265625, + 0.006988525390625, + 0.007598876953125, + 0.06005859375, + 0.0174560546875, + 0.00836181640625, + 0.0458984375, + -0.02001953125, + -0.024169921875, + -0.0211181640625, + 0.01806640625, + -0.00372314453125, + -0.02294921875, + 0.004302978515625, + -0.00994873046875, + -0.0830078125, + 0.000514984130859375, + -0.01239013671875, + -0.0537109375, + -0.005828857421875, + -0.0113525390625, + -0.0191650390625, + -0.0037994384765625, + 0.056884765625, + 0.03564453125, + -0.006744384765625, + 0.01611328125, + -0.052001953125, + 0.0458984375, + -0.02392578125, + 0.0164794921875, + -0.005523681640625, + -0.07421875, + -0.002655029296875, + 0.003021240234375, + -0.01708984375, + 0.051025390625, + 0.022705078125, + -0.029541015625, + 0.02294921875, + -0.04296875, + 0.0091552734375, + -0.02392578125, + -0.033203125, + -0.006256103515625, + 0.002471923828125, + -0.041259765625, + 0.06689453125, + 0.025634765625, + 0.0113525390625, + -0.0498046875, + -0.06787109375, + -0.028564453125, + 0.001251220703125, + -0.0181884765625, + -0.015869140625, + -0.00494384765625, + 0.0203857421875, + 0.0272216796875, + 0.003143310546875, + -0.0174560546875, + 0.03173828125, + -0.031982421875, + -0.013916015625, + -0.03662109375, + -0.0118408203125, + -0.07470703125, + -0.01165771484375, + -0.01300048828125, + 0.01806640625, + 0.017578125, + -0.02001953125, + 0.01129150390625, + 0.0279541015625, + 0.0289306640625, + -0.059326171875, + 0.053466796875, + 0.005096435546875, + -0.0203857421875, + -0.006622314453125, + 0.0267333984375, + -0.0220947265625, + 0.02490234375, + -0.025390625, + -3.600120544433594e-05, + 0.0014801025390625, + 0.04248046875, + 0.004364013671875, + -0.01055908203125, + 0.040283203125, + -0.0120849609375, + 0.0012359619140625, + 0.00634765625, + 0.0145263671875, + -0.008056640625, + 0.01214599609375, + 0.006622314453125, + -0.01495361328125, + 0.07421875, + -0.002777099609375, + -0.0272216796875, + 0.0181884765625, + -0.0260009765625, + 0.07177734375, + 0.0181884765625, + 0.039306640625, + 0.00494384765625, + -0.0169677734375, + -0.00531005859375, + -0.018798828125, + 0.03466796875, + 0.0537109375, + -0.007049560546875, + -0.06298828125, + 0.0228271484375, + -0.03662109375, + -0.0157470703125, + 0.00848388671875, + -0.052001953125, + 0.007598876953125, + -0.0458984375, + -0.0269775390625, + 0.004608154296875, + 0.0213623046875, + -0.025146484375, + 0.0213623046875, + 0.0011749267578125, + 0.0050048828125, + -0.0157470703125, + -0.04833984375, + -0.004302978515625, + -0.0262451171875, + -0.004486083984375, + 0.014892578125, + 0.08837890625, + 0.01251220703125, + 0.0118408203125, + 0.031494140625, + -0.00726318359375, + -0.00640869140625, + -0.0135498046875, + 0.01123046875, + -0.00567626953125, + -0.0033721923828125, + -0.016845703125, + 0.03369140625, + -0.0096435546875, + 0.00098419189453125, + 0.0228271484375, + -0.05810546875, + -0.0306396484375, + 0.01531982421875, + 0.0147705078125, + -0.033447265625, + -0.034912109375, + 0.0011444091796875, + -0.0262451171875, + -0.0189208984375, + 0.0036468505859375, + -0.0478515625, + 0.027587890625, + -0.0194091796875, + -0.05078125, + -0.0054931640625, + -0.05810546875, + -0.00860595703125, + -0.031494140625, + -0.01300048828125, + -0.006072998046875, + -0.0274658203125, + 0.019287109375, + -0.00531005859375, + 0.0458984375, + 0.06494140625, + -0.0164794921875, + 0.00384521484375, + 0.035400390625, + 0.03515625, + 0.01483154296875, + 0.022216796875, + 0.0311279296875, + -0.0026092529296875, + -0.00537109375, + 0.045166015625, + -0.0164794921875, + 0.01708984375, + 0.0380859375, + 0.006103515625, + 0.0001239776611328125, + 0.031494140625, + -0.0019378662109375, + -0.037841796875, + -0.009033203125, + 0.001495361328125, + -0.002471923828125, + -0.0172119140625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 861.367357000006, + "queue_ms": 0.2196720000000596, + "tokenization_ms": 0.03230199999393335, + "inference_ms": 860.4978090000088, + "postprocessing_ms": null + } + }, + "chunks": [ + { + "id": "chunk-0", + "dense": [ + -0.01263427734375, + -0.0220947265625, + -0.040771484375, + -0.006805419921875, + -0.0263671875, + -0.0228271484375, + 0.05078125, + 0.0206298828125, + 0.004364013671875, + 0.033447265625, + 0.022705078125, + 0.003509521484375, + -0.03369140625, + -0.00872802734375, + -0.00732421875, + -0.046142578125, + 0.0213623046875, + -0.0191650390625, + -0.025390625, + -0.041015625, + -0.00665283203125, + -0.00823974609375, + 0.02197265625, + 0.04931640625, + -0.002349853515625, + 0.042724609375, + 0.018310546875, + -0.049560546875, + -0.035400390625, + 0.0296630859375, + 0.01495361328125, + 0.005615234375, + 0.015380859375, + -0.016357421875, + -0.01519775390625, + -0.00157928466796875, + 0.034912109375, + 0.003265380859375, + -0.06201171875, + 0.0218505859375, + -0.052978515625, + 0.01019287109375, + 0.0135498046875, + -0.064453125, + 0.031494140625, + -0.0274658203125, + 0.0240478515625, + -0.03369140625, + -0.01519775390625, + 0.036865234375, + -0.022705078125, + -0.02587890625, + 0.000579833984375, + -0.03076171875, + 0.036376953125, + 0.016357421875, + -0.0791015625, + -0.043701171875, + -0.04345703125, + -0.01226806640625, + -0.034912109375, + -0.0213623046875, + -0.02197265625, + 0.0036468505859375, + 0.0537109375, + 0.095703125, + 0.0257568359375, + -0.007537841796875, + 0.0054931640625, + -0.0026702880859375, + -0.0228271484375, + -0.0014190673828125, + 0.0286865234375, + -0.03173828125, + -0.06591796875, + 0.0125732421875, + -0.006103515625, + -0.046875, + 0.016845703125, + 0.0341796875, + 0.0130615234375, + -0.0264892578125, + 0.00186920166015625, + -0.024169921875, + -0.0177001953125, + 0.038330078125, + 0.006866455078125, + 0.0341796875, + 0.032958984375, + -0.01458740234375, + -0.0208740234375, + -0.038818359375, + 0.043701171875, + -0.061279296875, + -0.056640625, + -0.01336669921875, + -0.008056640625, + 0.0263671875, + 0.002899169921875, + 0.0296630859375, + 0.06787109375, + 0.0177001953125, + -0.017822265625, + -0.004119873046875, + 0.035400390625, + -0.0020904541015625, + 0.0118408203125, + 0.01031494140625, + -0.0045166015625, + -0.00872802734375, + 0.013671875, + 0.07421875, + 0.0140380859375, + 0.0240478515625, + -0.006256103515625, + -0.004730224609375, + 0.003265380859375, + -0.0537109375, + -0.0390625, + -0.01385498046875, + 0.05859375, + 0.003662109375, + 0.037353515625, + -0.036376953125, + 0.00927734375, + -0.0400390625, + 0.00872802734375, + -0.01385498046875, + -0.00628662109375, + -0.0004253387451171875, + -0.028076171875, + 0.0283203125, + -0.030517578125, + 0.0034332275390625, + -0.023193359375, + -0.0014190673828125, + 0.0341796875, + -0.04833984375, + 0.0123291015625, + -0.04345703125, + 0.00067901611328125, + 0.0213623046875, + -0.0260009765625, + -0.058349609375, + 0.003509521484375, + -0.0625, + -0.0029754638671875, + -0.0230712890625, + 0.00098419189453125, + -0.0198974609375, + -0.035400390625, + 0.00775146484375, + 0.019775390625, + 0.015869140625, + -0.0172119140625, + -0.107421875, + 0.032958984375, + 0.01495361328125, + -0.00994873046875, + 0.021484375, + 0.0203857421875, + -0.026611328125, + -0.00732421875, + -0.002227783203125, + 0.0400390625, + 0.04541015625, + 0.05810546875, + -0.00360107421875, + -0.0027313232421875, + -0.034423828125, + 0.000926971435546875, + -0.033447265625, + -0.00604248046875, + -0.04736328125, + 0.045654296875, + 0.00921630859375, + 0.064453125, + 0.0096435546875, + -0.0008392333984375, + -0.0400390625, + -0.00592041015625, + 0.0517578125, + -0.0322265625, + -0.0224609375, + -0.0234375, + 0.01141357421875, + -0.03759765625, + -0.0194091796875, + 0.0201416015625, + 0.03564453125, + -0.01287841796875, + -0.006500244140625, + 0.06591796875, + -0.00848388671875, + -0.0028076171875, + -0.06689453125, + -0.01470947265625, + 0.0035400390625, + 0.0011138916015625, + 0.01531982421875, + -0.00775146484375, + 0.02587890625, + -0.017822265625, + 0.01007080078125, + -0.034423828125, + -0.00579833984375, + -0.00909423828125, + -0.025146484375, + -0.0157470703125, + 0.0634765625, + 0.03857421875, + -0.005645751953125, + 0.0341796875, + -0.04296875, + -0.03173828125, + -0.0081787109375, + -0.00090789794921875, + 0.000885009765625, + 0.0159912109375, + 0.006439208984375, + 0.0125732421875, + 0.018798828125, + -0.017333984375, + 0.037109375, + 0.03369140625, + -0.0032501220703125, + -0.054443359375, + 0.0673828125, + 0.029296875, + -0.08251953125, + 0.01141357421875, + -0.0341796875, + 0.0201416015625, + -0.01055908203125, + 0.031005859375, + 0.04150390625, + 0.027099609375, + 0.02392578125, + 0.018798828125, + -0.03515625, + -0.04296875, + -0.0908203125, + -0.033447265625, + 0.008056640625, + -0.048095703125, + -0.009765625, + -0.004058837890625, + 0.052001953125, + 0.040771484375, + -0.0234375, + -0.006805419921875, + -0.01470947265625, + -0.03564453125, + -0.013671875, + 0.01031494140625, + 0.044677734375, + 0.03466796875, + -0.016845703125, + -0.023681640625, + -0.01416015625, + 0.00897216796875, + 0.026123046875, + 0.0093994140625, + 0.021484375, + -0.02587890625, + 0.01318359375, + -0.04296875, + -0.0155029296875, + 0.0035552978515625, + -0.01318359375, + -0.0213623046875, + 0.01123046875, + 0.030029296875, + -0.0296630859375, + -0.03564453125, + 0.03173828125, + -0.05615234375, + -0.016845703125, + 0.06494140625, + 0.03173828125, + 0.0238037109375, + 0.059326171875, + 0.04150390625, + -0.01092529296875, + 0.06396484375, + -0.0233154296875, + -0.02392578125, + 2.8967857360839844e-05, + 0.01385498046875, + -0.00146484375, + -0.01519775390625, + 0.00128936767578125, + 0.0791015625, + -0.025390625, + -0.040283203125, + -0.038330078125, + -0.01708984375, + -0.150390625, + -0.00439453125, + -0.0107421875, + 0.057373046875, + 0.0245361328125, + 0.0120849609375, + 0.0205078125, + 0.0150146484375, + -0.0703125, + -0.0167236328125, + -0.005950927734375, + -0.052734375, + -0.036376953125, + 0.0186767578125, + 0.02197265625, + 0.009765625, + -0.0120849609375, + -0.00677490234375, + 0.0218505859375, + -0.02783203125, + -0.0108642578125, + 0.0303955078125, + 0.005523681640625, + 0.0126953125, + -0.00897216796875, + 0.00958251953125, + -0.00762939453125, + 0.01171875, + -0.03955078125, + -0.016357421875, + 0.00408935546875, + 0.01483154296875, + -0.005523681640625, + 0.0181884765625, + 0.013916015625, + 0.1083984375, + 0.0322265625, + -0.064453125, + -0.00433349609375, + -0.031494140625, + -0.005462646484375, + 0.0206298828125, + -0.0247802734375, + 0.01202392578125, + -0.01025390625, + -0.0247802734375, + 0.016357421875, + -0.008056640625, + -0.0026702880859375, + 0.0198974609375, + 0.0181884765625, + -0.00037384033203125, + -0.0264892578125, + -0.02587890625, + -0.038818359375, + 0.01025390625, + -0.000942230224609375, + 0.06298828125, + 0.00958251953125, + 0.01129150390625, + -0.002960205078125, + -0.0703125, + 0.007781982421875, + -0.01361083984375, + -0.00958251953125, + -0.0252685546875, + 0.0654296875, + -0.038818359375, + 0.018798828125, + -0.01434326171875, + 0.033447265625, + -0.03759765625, + 0.049560546875, + -0.009765625, + 0.006927490234375, + 0.03173828125, + -0.01043701171875, + -0.03076171875, + -0.0184326171875, + -0.058837890625, + 0.003509521484375, + -0.01092529296875, + -0.02197265625, + 0.016357421875, + -0.04736328125, + 0.038330078125, + 0.00469970703125, + 0.0478515625, + 0.01373291015625, + 0.1708984375, + -0.02392578125, + 0.0130615234375, + 0.00860595703125, + 0.033447265625, + 0.0034637451171875, + -0.021484375, + 0.01806640625, + -0.032958984375, + -0.0272216796875, + 0.03515625, + 0.04638671875, + 0.0034942626953125, + -0.0042724609375, + 0.007354736328125, + -0.0079345703125, + -0.0167236328125, + -0.0186767578125, + 0.07275390625, + 0.00238037109375, + 0.02001953125, + -0.0279541015625, + -0.01611328125, + 0.0177001953125, + -0.08203125, + -0.035400390625, + 0.001953125, + -0.0008697509765625, + -0.00299072265625, + 0.035888671875, + -0.00299072265625, + -0.0130615234375, + 0.00531005859375, + 0.05419921875, + -0.04931640625, + 0.03857421875, + 0.0264892578125, + -0.02783203125, + -0.048828125, + -0.006622314453125, + -0.026123046875, + -0.036376953125, + -0.0673828125, + 0.009765625, + -0.021240234375, + -0.040771484375, + -0.00469970703125, + 0.00823974609375, + -0.06689453125, + 0.0084228515625, + 0.00067138671875, + -0.024658203125, + -0.0291748046875, + 0.038818359375, + 0.0135498046875, + -0.033203125, + -0.0086669921875, + 0.013916015625, + -0.000835418701171875, + 0.0286865234375, + 0.051513671875, + -0.0040283203125, + -0.0712890625, + -0.00531005859375, + -0.029052734375, + -0.03173828125, + -0.041748046875, + -0.0064697265625, + 0.00109100341796875, + 0.0162353515625, + -0.020751953125, + -0.0093994140625, + 0.0245361328125, + -0.005950927734375, + 0.01361083984375, + -0.00445556640625, + 0.003662109375, + 0.0390625, + -0.0157470703125, + -0.0218505859375, + -0.0201416015625, + -0.001373291015625, + -0.014404296875, + -0.01239013671875, + 0.03857421875, + -0.03564453125, + -0.0206298828125, + 0.021728515625, + -4.0531158447265625e-06, + -0.0400390625, + 0.0218505859375, + 0.00113677978515625, + -0.0299072265625, + 0.0022735595703125, + 0.03662109375, + -0.04150390625, + -0.01092529296875, + 0.03125, + -0.050048828125, + -0.056884765625, + 0.005828857421875, + -0.005126953125, + -0.01171875, + -0.050537109375, + 0.03173828125, + 0.05078125, + -0.02880859375, + -0.036376953125, + -0.04345703125, + -0.0257568359375, + -0.042724609375, + 0.01806640625, + -0.042724609375, + -0.015869140625, + 0.01531982421875, + 0.060791015625, + 0.03662109375, + 0.01068115234375, + 0.031005859375, + 0.0123291015625, + 0.0074462890625, + -0.0079345703125, + 0.00909423828125, + 0.0225830078125, + 0.0220947265625, + -0.0264892578125, + -0.0284423828125, + 0.043701171875, + -0.00360107421875, + 0.006134033203125, + -0.00958251953125, + -0.025146484375, + -0.01251220703125, + -0.0203857421875, + 0.03857421875, + 0.0208740234375, + 0.005767822265625, + 0.01019287109375, + -0.028076171875, + 0.000720977783203125, + -0.005157470703125, + 0.01507568359375, + -0.0184326171875, + -0.0517578125, + -0.011962890625, + -0.0017547607421875, + -0.05224609375, + 0.0113525390625, + 0.005340576171875, + 0.0252685546875, + 0.05322265625, + 0.018798828125, + 0.0155029296875, + -0.054443359375, + -0.005645751953125, + -0.01263427734375, + -0.0130615234375, + 0.01336669921875, + 0.0035400390625, + -0.024169921875, + 0.00150299072265625, + 0.01373291015625, + 0.00020599365234375, + 0.0751953125, + 0.008056640625, + 0.07568359375, + -0.0260009765625, + 0.0028533935546875, + 0.01904296875, + -0.07373046875, + -0.01904296875, + -0.0155029296875, + -0.0634765625, + 0.06591796875, + 0.02685546875, + -0.02197265625, + -0.005523681640625, + 0.000713348388671875, + 0.0024261474609375, + -0.048828125, + 0.034912109375, + -0.01422119140625, + 0.003265380859375, + 0.004058837890625, + 0.018798828125, + 0.0155029296875, + -0.00482177734375, + -0.0283203125, + -0.009765625, + -0.01239013671875, + -0.00787353515625, + 0.09326171875, + 0.0576171875, + -0.00408935546875, + 0.0108642578125, + 0.0155029296875, + -0.004302978515625, + 0.046630859375, + 0.004852294921875, + -0.050537109375, + 0.0194091796875, + -0.006439208984375, + -0.021240234375, + -0.0311279296875, + 0.00103759765625, + 0.00372314453125, + 0.02001953125, + 0.01611328125, + -0.047607421875, + -0.06201171875, + -0.01153564453125, + -0.017822265625, + 0.0115966796875, + 0.00927734375, + -0.00128173828125, + -0.0230712890625, + 0.01190185546875, + 0.037109375, + -0.02734375, + -0.02978515625, + -0.030517578125, + -0.0203857421875, + 0.036865234375, + -0.06982421875, + -0.0186767578125, + -0.01275634765625, + -0.0009918212890625, + 0.00732421875, + -0.013671875, + -0.00390625, + 0.00787353515625, + -0.0240478515625, + 0.0177001953125, + -0.01055908203125, + 0.0341796875, + 0.0299072265625, + 0.0306396484375, + 0.0361328125, + 0.01153564453125, + -0.0031890869140625, + 0.008056640625, + -0.00799560546875, + -0.042236328125, + 0.060791015625, + -0.023681640625, + -0.000507354736328125, + 0.0272216796875, + -0.004547119140625, + 0.0537109375, + 0.033935546875, + 0.0224609375, + -0.01068115234375, + 0.00897216796875, + -0.00714111328125, + 0.051025390625, + 0.00909423828125, + -0.002685546875, + -0.0205078125, + -0.0045166015625, + -0.046142578125, + -0.00787353515625, + 0.03759765625, + -0.006866455078125, + 0.0034637451171875, + -0.026611328125, + -0.0244140625, + 0.01953125, + 0.0162353515625, + -0.00872802734375, + 0.01220703125, + -0.01953125, + -0.01422119140625, + -0.04248046875, + -0.01708984375, + 0.06787109375, + 0.01397705078125, + -0.0159912109375, + 0.023681640625, + -0.013916015625, + 0.00213623046875, + -0.08740234375, + 0.038818359375, + 0.095703125, + -0.00244140625, + 0.0277099609375, + 0.0595703125, + 0.0130615234375, + 0.0017547607421875, + 0.028564453125, + 0.021240234375, + 0.0286865234375, + -0.033447265625, + -0.051513671875, + 0.0245361328125, + -0.025390625, + 0.01153564453125, + -0.0108642578125, + 0.049072265625, + -0.0439453125, + -0.0059814453125, + -0.003814697265625, + 0.020751953125, + 0.02001953125, + -0.050048828125, + 0.0238037109375, + 0.0157470703125, + 0.0026702880859375, + -0.0208740234375, + 0.03515625, + 0.0213623046875, + 0.026611328125, + -0.003631591796875, + 0.01031494140625, + -0.0040283203125, + -0.0142822265625, + -0.0341796875, + 0.03662109375, + 0.02392578125, + 0.0194091796875, + 0.01806640625, + 0.0233154296875, + 0.0142822265625, + -0.0167236328125, + 0.002288818359375, + -0.0322265625, + 0.01129150390625, + 0.0400390625, + 0.024169921875, + 0.01055908203125, + -0.0240478515625, + -0.034912109375, + 0.021240234375, + -0.00128936767578125, + -0.002593994140625, + 0.053466796875, + 0.02197265625, + 0.034423828125, + 0.049560546875, + 0.00174713134765625, + -0.0230712890625, + -0.026611328125, + -0.0260009765625, + 0.0634765625, + -0.011962890625, + 0.0283203125, + 0.003326416015625, + -0.009033203125, + 0.0260009765625, + 0.01470947265625, + -0.011962890625, + -0.01495361328125, + 0.051025390625, + -0.01611328125, + -0.015869140625, + 0.009033203125, + 0.02392578125, + -0.0230712890625, + 0.038818359375, + -0.000934600830078125, + 0.033447265625, + -0.033203125, + 0.00531005859375, + -0.032958984375, + -0.01116943359375, + -0.0177001953125, + 0.0185546875, + 0.005279541015625, + -0.02392578125, + -0.041259765625, + 0.02001953125, + -0.0198974609375, + -0.0238037109375, + 0.00994873046875, + 0.0155029296875, + -0.0546875, + 0.045166015625, + 0.01226806640625, + -0.013916015625, + 0.05322265625, + -0.046142578125, + -0.006622314453125, + -0.0030059814453125, + -0.0118408203125, + -0.0322265625, + 0.020751953125, + -0.0078125, + 0.0157470703125, + 0.01153564453125, + -0.004180908203125, + 0.06982421875, + -0.05712890625, + -0.0068359375, + 0.023681640625, + -0.02392578125, + -0.14453125, + -0.01953125, + 0.006622314453125, + -0.03076171875, + -0.047607421875, + -0.0247802734375, + -0.0291748046875, + -0.036865234375, + 0.00469970703125, + -0.001373291015625, + 0.0220947265625, + 0.0264892578125, + -0.018310546875, + -0.01239013671875, + -0.04296875, + 0.0084228515625, + 0.00154876708984375, + 0.016357421875, + 0.01141357421875, + 0.0267333984375, + 0.034423828125, + -0.01953125, + 0.04833984375, + 0.016357421875, + -0.006866455078125, + -0.01611328125, + -0.018798828125, + -0.0299072265625, + -0.01336669921875, + 0.04736328125, + 0.01300048828125, + -0.0225830078125, + 0.01202392578125, + 0.04248046875, + -0.024658203125, + -0.03759765625, + -0.00799560546875, + -0.01092529296875, + 0.055908203125, + 0.01458740234375, + 0.0172119140625, + 0.0311279296875, + 0.001922607421875, + -0.035400390625, + 0.024169921875, + 0.048828125, + 0.0240478515625, + -0.0257568359375, + -0.045166015625, + 0.01123046875, + -0.0400390625, + 0.0233154296875, + 0.0081787109375, + 0.0625, + 0.03759765625, + -0.0103759765625, + -0.026123046875, + -0.015625, + 0.0009765625, + 0.035400390625, + -0.02587890625, + 0.0089111328125, + -0.00726318359375, + -0.045654296875, + 0.00482177734375, + 0.015625, + 0.0322265625, + -0.01025390625, + 0.0034332275390625, + -0.00170135498046875, + -0.02783203125, + 0.0240478515625, + -0.0068359375, + 0.004791259765625, + -0.017578125, + -0.042724609375, + 0.0185546875, + 0.00653076171875, + -0.058837890625, + -0.017578125, + -0.00091552734375, + -0.00762939453125, + -0.03173828125, + 0.04931640625, + 0.059326171875, + 0.040283203125, + 0.002166748046875, + 0.00274658203125, + -0.0634765625, + 0.026123046875, + -0.059814453125, + -0.0322265625, + 0.0050048828125, + -0.0123291015625, + -0.04296875, + 0.03173828125, + -0.007293701171875, + 0.015869140625, + -0.000156402587890625, + -0.0198974609375, + -0.036865234375, + -0.0012359619140625, + -0.03857421875, + -0.023193359375, + -0.0206298828125, + 0.01531982421875, + 0.044677734375, + -0.003814697265625, + -0.005462646484375, + -0.01116943359375, + -0.0537109375, + 0.0030670166015625, + -0.033935546875, + -0.0225830078125, + -0.0712890625, + -0.0238037109375, + 0.004974365234375, + 0.002349853515625, + -0.0034637451171875, + -0.01806640625, + -0.007537841796875, + 0.01324462890625, + 0.0027923583984375, + -0.059814453125, + 0.06884765625, + 0.0595703125, + 0.0048828125, + 0.03466796875, + 0.00927734375, + -0.006683349609375, + 0.051513671875, + 0.008056640625, + 0.0247802734375, + -0.04931640625, + 0.040771484375, + -0.025146484375, + -0.0247802734375, + 0.046142578125, + -0.0264892578125, + -0.054443359375, + -0.0045166015625, + -0.0172119140625, + 0.003875732421875, + -0.01007080078125, + 0.00421142578125, + -0.006195068359375, + 0.04345703125, + -0.003936767578125, + -0.049560546875, + 0.0206298828125, + -0.029052734375, + 0.04833984375, + 0.041259765625, + 0.021240234375, + 0.0032501220703125, + -3.24249267578125e-05, + 0.037109375, + -0.0205078125, + 0.0213623046875, + 0.04638671875, + 0.00970458984375, + -0.039794921875, + 0.01385498046875, + -0.010986328125, + -0.00164794921875, + 0.03173828125, + -0.00799560546875, + 0.017822265625, + -0.0274658203125, + 0.0223388671875, + 0.041259765625, + -0.01129150390625, + 8.487701416015625e-05, + 0.051513671875, + 0.0546875, + -0.01092529296875, + -0.013916015625, + -0.046142578125, + -0.01611328125, + -0.036376953125, + 0.0069580078125, + 0.0203857421875, + 0.04638671875, + 0.004150390625, + -0.03076171875, + 0.01031494140625, + -0.0208740234375, + -0.0390625, + -0.006591796875, + -0.021484375, + 0.044189453125, + 0.002716064453125, + -0.01025390625, + -0.00148773193359375, + 0.026611328125, + 0.038818359375, + 0.02001953125, + -0.0172119140625, + -0.0301513671875, + 0.0162353515625, + 0.0123291015625, + -0.0174560546875, + -0.04248046875, + -0.00836181640625, + -0.04248046875, + 0.013671875, + -0.005615234375, + -0.0225830078125, + 0.0038299560546875, + 0.048095703125, + -0.046875, + -0.0022735595703125, + -0.0634765625, + 0.0126953125, + -0.023681640625, + 0.0247802734375, + 0.0169677734375, + -0.006195068359375, + 0.01153564453125, + -0.014892578125, + 0.01251220703125, + -0.003814697265625, + 0.01019287109375, + -0.021728515625, + 0.034912109375, + 0.03857421875, + -0.03173828125, + 0.005218505859375, + 0.06689453125, + -0.005828857421875, + 0.0038909912109375, + 0.07763671875, + 0.00457763671875, + 0.0126953125, + 0.054931640625, + -0.0025787353515625, + 0.0272216796875, + 0.0042724609375, + -0.032958984375, + -0.01361083984375, + 0.03955078125, + 0.005645751953125, + -0.00390625, + -0.0247802734375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 577.1929359999888, + "queue_ms": 1.3034309999966354, + "tokenization_ms": 0.027122000005874725, + "inference_ms": 575.6982549999918, + "postprocessing_ms": null + } + }, + { + "id": "chunk-1", + "dense": [ + -0.05322265625, + 0.01806640625, + -0.00628662109375, + 0.0186767578125, + -0.048095703125, + -0.0027008056640625, + -0.00836181640625, + 0.00323486328125, + 0.023193359375, + 0.0263671875, + 0.026611328125, + 0.0135498046875, + -0.0133056640625, + -0.0286865234375, + -0.031494140625, + -0.00506591796875, + 0.006317138671875, + -0.0103759765625, + -0.06591796875, + 0.0103759765625, + -0.017578125, + 0.0106201171875, + 0.05029296875, + 0.00469970703125, + -0.005462646484375, + 0.00384521484375, + -0.0068359375, + -0.00092315673828125, + -0.0084228515625, + 0.0390625, + 0.0120849609375, + -0.046875, + 0.0247802734375, + -0.041015625, + 0.00909423828125, + -0.06103515625, + -0.00177001953125, + -0.038818359375, + -0.0615234375, + 0.0390625, + 0.00860595703125, + 0.021728515625, + 0.004119873046875, + 0.007080078125, + 0.0185546875, + -0.02099609375, + -0.047119140625, + -0.020751953125, + -0.056640625, + 0.00738525390625, + 0.0135498046875, + -0.007080078125, + 0.04736328125, + -0.0147705078125, + 0.003936767578125, + 0.0035400390625, + -0.03173828125, + 0.0025634765625, + -0.0289306640625, + -0.01385498046875, + -0.0035247802734375, + 0.006622314453125, + -0.011474609375, + -0.03857421875, + -0.01025390625, + 0.044921875, + 0.01318359375, + 0.0223388671875, + -0.00543212890625, + -0.020751953125, + 0.019287109375, + 0.0223388671875, + -0.003509521484375, + -0.041259765625, + -0.07861328125, + -0.0064697265625, + 0.03857421875, + -0.0302734375, + -0.001007080078125, + -0.045654296875, + 0.01434326171875, + -0.056396484375, + -0.002716064453125, + 0.005767822265625, + -0.062255859375, + 0.036376953125, + 0.04345703125, + 0.056396484375, + 0.00408935546875, + 0.0255126953125, + -0.05419921875, + -0.01287841796875, + 0.0181884765625, + -0.0213623046875, + -0.020263671875, + -0.02490234375, + -0.0458984375, + 0.0213623046875, + 0.0238037109375, + 0.005889892578125, + 0.03466796875, + -0.0013275146484375, + 0.0159912109375, + 0.00689697265625, + -0.00799560546875, + -0.04345703125, + 0.043701171875, + 0.00193023681640625, + 0.01416015625, + -0.00543212890625, + -0.01531982421875, + -0.011474609375, + 0.026123046875, + 0.003997802734375, + 0.00921630859375, + -0.0033416748046875, + 0.03271484375, + 0.00518798828125, + -0.02001953125, + -0.04443359375, + 0.036865234375, + 0.003753662109375, + 0.0284423828125, + 0.026123046875, + -0.0101318359375, + 0.00994873046875, + -0.0166015625, + 0.031494140625, + -0.0400390625, + 0.043212890625, + 0.01080322265625, + 0.051513671875, + -0.0103759765625, + 0.00482177734375, + -0.0281982421875, + -0.007049560546875, + 0.0625, + 0.03857421875, + 0.02587890625, + -0.007476806640625, + 0.0196533203125, + 0.0247802734375, + -0.045166015625, + -0.01123046875, + 0.09814453125, + -0.02099609375, + -0.024169921875, + -0.013916015625, + -0.03857421875, + -0.027587890625, + 0.0103759765625, + -0.004302978515625, + 0.04345703125, + -0.04150390625, + -0.010498046875, + -0.052001953125, + 0.0242919921875, + -0.02490234375, + -0.013916015625, + 0.0172119140625, + -0.01007080078125, + 0.05078125, + -0.006439208984375, + -0.0341796875, + -0.032470703125, + 0.0166015625, + 0.027099609375, + 0.05224609375, + -0.01214599609375, + -0.043701171875, + 0.0302734375, + 0.006317138671875, + 0.004730224609375, + -0.00457763671875, + -0.01055908203125, + 0.024658203125, + 0.09521484375, + 0.0157470703125, + -0.0238037109375, + -0.047119140625, + -0.0264892578125, + 0.049072265625, + -0.0015869140625, + -0.01202392578125, + -0.0167236328125, + 0.01544189453125, + -0.036865234375, + 0.0166015625, + 0.0284423828125, + -0.00022029876708984375, + -0.0230712890625, + -0.0228271484375, + 0.00933837890625, + -0.0111083984375, + -0.0269775390625, + -0.035400390625, + -0.0172119140625, + -0.044677734375, + -0.031982421875, + 0.01007080078125, + -0.06982421875, + 0.0751953125, + -0.02294921875, + 0.00628662109375, + 0.004302978515625, + 0.0306396484375, + 0.007659912109375, + 0.0048828125, + -0.01214599609375, + -0.032958984375, + -0.038818359375, + 0.026611328125, + 0.0146484375, + 0.0289306640625, + 0.0234375, + -0.0137939453125, + 0.0296630859375, + -0.0242919921875, + 0.06103515625, + 0.0062255859375, + -0.021728515625, + 0.0062255859375, + -0.00164794921875, + 0.02783203125, + -0.0296630859375, + 0.01806640625, + 0.0167236328125, + 0.043212890625, + 0.003753662109375, + -0.0225830078125, + 0.01300048828125, + 0.0135498046875, + 0.003326416015625, + -0.029541015625, + 0.057373046875, + 0.00799560546875, + 0.0230712890625, + 0.005706787109375, + -0.0277099609375, + 0.045654296875, + -0.041259765625, + -0.020751953125, + -0.0693359375, + 0.01385498046875, + 0.002288818359375, + -0.0189208984375, + -0.0103759765625, + 0.0198974609375, + -0.0150146484375, + 0.0031890869140625, + 0.0238037109375, + -0.050537109375, + -0.0169677734375, + 0.053955078125, + 0.036376953125, + 0.044677734375, + -0.0308837890625, + -0.01953125, + 0.0018463134765625, + -0.01080322265625, + 0.0400390625, + 0.01806640625, + -0.001953125, + 0.023193359375, + 0.004974365234375, + -0.032958984375, + -0.0076904296875, + -0.0108642578125, + 0.003387451171875, + 0.0281982421875, + 0.005706787109375, + 0.0196533203125, + 0.01226806640625, + -0.0157470703125, + -0.00787353515625, + 0.0269775390625, + -0.00836181640625, + -0.0048828125, + 0.02099609375, + -0.0157470703125, + 0.0216064453125, + 0.007659912109375, + 0.0311279296875, + -0.05517578125, + 0.031494140625, + -0.01202392578125, + -0.0224609375, + -0.00701904296875, + -0.00830078125, + -0.01531982421875, + -0.0157470703125, + 0.005584716796875, + 0.07373046875, + -0.0225830078125, + -0.0341796875, + -0.03125, + -0.03173828125, + -0.17578125, + 0.044677734375, + -0.007354736328125, + -0.036865234375, + 0.0216064453125, + 0.0196533203125, + 0.000743865966796875, + -0.0234375, + 0.0006103515625, + 0.029541015625, + 0.03271484375, + -0.062255859375, + -0.033935546875, + 0.0269775390625, + -0.0186767578125, + -0.019287109375, + -0.016845703125, + 0.027099609375, + -0.0184326171875, + -0.0301513671875, + -0.0079345703125, + -0.0281982421875, + 0.056884765625, + -0.035400390625, + -0.042724609375, + 0.0419921875, + 0.02783203125, + 0.024658203125, + -0.0458984375, + -0.0096435546875, + -0.0054931640625, + -0.0264892578125, + 0.01031494140625, + -0.043212890625, + 0.036376953125, + 0.05322265625, + 0.004913330078125, + -0.05419921875, + 0.00439453125, + -0.00634765625, + 0.0211181640625, + -0.021728515625, + -0.004974365234375, + 0.0106201171875, + -0.01202392578125, + -0.031982421875, + -0.0306396484375, + 0.051513671875, + -0.02587890625, + 0.029052734375, + -0.007110595703125, + 0.0218505859375, + -0.027099609375, + -0.0284423828125, + -0.0322265625, + -0.0235595703125, + -0.001007080078125, + 0.07421875, + 0.0245361328125, + 0.0021514892578125, + -0.01123046875, + -0.04345703125, + -0.01904296875, + -0.00933837890625, + -0.025390625, + 0.00958251953125, + -0.01055908203125, + -0.0264892578125, + -0.004547119140625, + -0.033447265625, + 0.010498046875, + 0.0021514892578125, + 0.0263671875, + -0.003326416015625, + -0.0081787109375, + 0.0517578125, + -0.00167083740234375, + -0.0263671875, + 0.0164794921875, + -0.12451171875, + 0.01171875, + 0.027587890625, + -0.0186767578125, + 0.05810546875, + -0.027099609375, + -0.0123291015625, + 0.00921630859375, + -0.0135498046875, + 0.0576171875, + 0.23046875, + -0.017578125, + 0.0087890625, + 0.0091552734375, + 0.00994873046875, + -0.00689697265625, + -0.0115966796875, + 0.004425048828125, + -0.0159912109375, + -0.0137939453125, + 0.01348876953125, + 0.031494140625, + -0.00579833984375, + -0.0086669921875, + -0.003326416015625, + 0.05908203125, + -0.02734375, + -0.0091552734375, + 0.04736328125, + -0.01507568359375, + 0.02734375, + -0.042236328125, + 0.0322265625, + -0.0093994140625, + -0.052734375, + -0.01953125, + -0.043212890625, + 0.04833984375, + -0.00482177734375, + 0.046142578125, + -0.0390625, + -0.03857421875, + 0.03466796875, + 0.00982666015625, + 0.00994873046875, + 0.000885009765625, + 0.026123046875, + -0.005767822265625, + -0.01422119140625, + 0.09814453125, + 0.00921630859375, + -0.04150390625, + -0.02001953125, + -0.003997802734375, + -0.052978515625, + -0.02099609375, + -0.000946044921875, + -0.00153350830078125, + 0.017578125, + 0.02587890625, + -0.005645751953125, + -0.033203125, + 0.0240478515625, + 0.021240234375, + -0.0213623046875, + -0.0240478515625, + -0.002288818359375, + 0.00110626220703125, + -0.00677490234375, + 0.002166748046875, + -0.0322265625, + 0.0135498046875, + -0.0015411376953125, + 0.04638671875, + 0.013671875, + -0.0419921875, + -0.039306640625, + -0.0093994140625, + 0.0120849609375, + -0.01153564453125, + -0.0123291015625, + 0.0009002685546875, + 0.026611328125, + 0.00830078125, + 0.017822265625, + -0.037841796875, + -0.01190185546875, + -0.0015106201171875, + -0.0419921875, + 0.01287841796875, + -0.04248046875, + -0.00077056884765625, + -0.0146484375, + 0.023681640625, + 0.0390625, + 0.00408935546875, + -0.005950927734375, + 0.055419921875, + 0.016357421875, + 0.00732421875, + -0.02099609375, + 0.0213623046875, + 0.027099609375, + 0.014404296875, + 0.01416015625, + 0.00885009765625, + 0.015625, + 0.047607421875, + -0.0751953125, + 0.01953125, + 0.00872802734375, + -0.0294189453125, + -0.0079345703125, + -0.0054931640625, + 0.049072265625, + -0.030029296875, + -0.044921875, + -0.0184326171875, + -0.0216064453125, + -0.00933837890625, + -0.050537109375, + 0.00040435791015625, + 0.0225830078125, + -0.0245361328125, + 0.00469970703125, + 0.05078125, + 0.037353515625, + 0.022216796875, + 0.06982421875, + -0.0108642578125, + -0.003997802734375, + -0.04736328125, + -0.009521484375, + -0.01287841796875, + 0.031982421875, + -0.01446533203125, + 0.01385498046875, + -0.0224609375, + -0.033447265625, + -0.0135498046875, + -0.0216064453125, + -0.021240234375, + -0.0225830078125, + -0.0206298828125, + 0.0257568359375, + -0.0021820068359375, + 0.017822265625, + 0.00122833251953125, + 0.007354736328125, + 0.045166015625, + -0.009033203125, + 0.00225830078125, + 0.006591796875, + -0.01239013671875, + 0.00994873046875, + 0.005157470703125, + 0.046875, + 0.00762939453125, + -0.021728515625, + 0.00848388671875, + -0.0299072265625, + 0.03662109375, + 0.032470703125, + -0.04150390625, + -0.0201416015625, + -0.045654296875, + 0.0228271484375, + -0.0257568359375, + 0.006500244140625, + -0.02099609375, + -0.01409912109375, + -0.003936767578125, + 0.026611328125, + 0.03515625, + -0.0048828125, + 0.0164794921875, + -0.01092529296875, + -0.0034027099609375, + 0.004364013671875, + -0.0888671875, + -0.0235595703125, + -0.01348876953125, + 0.0125732421875, + -0.032470703125, + 0.000736236572265625, + 0.0419921875, + -0.024658203125, + 0.0050048828125, + 0.005584716796875, + -0.048095703125, + 0.01171875, + -0.0167236328125, + 0.0045166015625, + -0.042724609375, + 0.0172119140625, + 0.00946044921875, + -0.0264892578125, + -0.0162353515625, + 0.0673828125, + -0.0205078125, + 0.01123046875, + 0.10400390625, + -0.03076171875, + -0.0166015625, + 0.0238037109375, + 0.0054931640625, + -0.033447265625, + 0.05322265625, + -0.0419921875, + -0.0101318359375, + 0.00116729736328125, + 0.0252685546875, + 0.01202392578125, + -0.02587890625, + 0.03515625, + 0.015380859375, + -0.01287841796875, + 0.037109375, + -0.019287109375, + 0.042724609375, + 0.00762939453125, + 0.0191650390625, + 0.030517578125, + -0.0126953125, + 0.007415771484375, + -0.02587890625, + 0.0218505859375, + 0.000316619873046875, + -0.056396484375, + -0.0078125, + -0.01123046875, + -0.0031890869140625, + 0.01287841796875, + -0.05078125, + 0.004119873046875, + 0.0201416015625, + -0.0301513671875, + 0.006195068359375, + 0.016357421875, + 0.005401611328125, + -0.00933837890625, + -0.03759765625, + 0.0033416748046875, + -0.02734375, + -0.0390625, + 0.0012664794921875, + 0.0174560546875, + 0.00860595703125, + -0.01446533203125, + -0.037109375, + 0.007568359375, + 0.00732421875, + 0.023193359375, + 0.06884765625, + -0.0322265625, + 0.01318359375, + -0.02197265625, + 0.0021820068359375, + 0.0322265625, + 0.042724609375, + 0.018798828125, + -0.024658203125, + 0.0164794921875, + 0.01080322265625, + 0.01336669921875, + 0.00799560546875, + -0.0028839111328125, + 0.004608154296875, + -0.01300048828125, + -0.0185546875, + -0.0213623046875, + 0.01202392578125, + 0.00189208984375, + -0.03515625, + -0.044921875, + -0.1015625, + 0.003997802734375, + -0.03271484375, + -0.0228271484375, + 0.0162353515625, + -0.0125732421875, + -0.03662109375, + -0.004608154296875, + -0.0032501220703125, + 0.0101318359375, + 0.015625, + -0.00592041015625, + -0.01806640625, + 0.068359375, + -0.00250244140625, + 0.0133056640625, + -0.044677734375, + 0.0380859375, + -0.00144195556640625, + -0.015869140625, + 0.0255126953125, + 0.0216064453125, + 0.000579833984375, + -0.004486083984375, + -0.017578125, + 0.0380859375, + -0.0174560546875, + -0.04931640625, + 0.0218505859375, + -0.0216064453125, + 0.0093994140625, + -0.0030364990234375, + -0.0181884765625, + -0.048583984375, + 0.017578125, + -0.027099609375, + 0.043701171875, + -0.0225830078125, + 0.0081787109375, + -0.0255126953125, + 0.02001953125, + 0.020751953125, + -0.0272216796875, + -0.01348876953125, + -0.0125732421875, + -0.0272216796875, + -0.060302734375, + 0.0218505859375, + -0.00262451171875, + 0.0031890869140625, + 0.0296630859375, + 0.0869140625, + -0.004913330078125, + 0.0213623046875, + 0.00531005859375, + 0.0263671875, + 0.0016632080078125, + -0.0167236328125, + -0.0269775390625, + -0.045166015625, + 0.024658203125, + 0.038818359375, + -0.03271484375, + -0.033203125, + 0.0159912109375, + -0.02001953125, + -0.0247802734375, + -0.0400390625, + -0.02587890625, + 0.0263671875, + -0.0230712890625, + 0.0035247802734375, + 0.0361328125, + 0.025390625, + -0.023681640625, + 0.00311279296875, + -0.0301513671875, + 0.060546875, + -0.0130615234375, + -0.035400390625, + -0.017578125, + 0.01129150390625, + -0.0230712890625, + 0.00836181640625, + 0.01275634765625, + -0.04345703125, + -0.02587890625, + -0.025146484375, + -0.0283203125, + 0.0654296875, + 0.0152587890625, + -0.0062255859375, + 0.018798828125, + 0.0322265625, + 0.007568359375, + -0.0576171875, + -0.0189208984375, + -0.0115966796875, + 0.002410888671875, + -0.0308837890625, + 0.0133056640625, + -0.01611328125, + 0.0021209716796875, + -0.041259765625, + -0.03857421875, + 0.00921630859375, + -0.0081787109375, + 0.0252685546875, + 0.051025390625, + -0.037841796875, + 0.041259765625, + 0.01141357421875, + 0.021728515625, + 0.055419921875, + -0.05517578125, + 0.0101318359375, + -0.0322265625, + -0.0247802734375, + -0.0206298828125, + 0.051025390625, + 0.031982421875, + 0.009521484375, + 0.0159912109375, + -0.006072998046875, + 0.047119140625, + -0.01171875, + -0.0126953125, + -0.004730224609375, + -0.01141357421875, + -0.150390625, + 0.0255126953125, + -0.01544189453125, + -0.01708984375, + -0.033203125, + -0.01287841796875, + -0.0277099609375, + 0.024658203125, + -0.007232666015625, + 0.0030670166015625, + 0.025390625, + -0.0419921875, + 0.0021514892578125, + -0.02001953125, + 0.04931640625, + 0.04248046875, + -0.029296875, + 0.005950927734375, + -0.01495361328125, + 0.03564453125, + -0.00469970703125, + -0.0052490234375, + -0.0137939453125, + 0.0267333984375, + 0.006744384765625, + 0.003173828125, + 0.023681640625, + 0.058837890625, + -0.0177001953125, + -0.06005859375, + 0.00933837890625, + 0.0196533203125, + 0.00738525390625, + 0.0966796875, + 0.01226806640625, + 0.0230712890625, + 0.0167236328125, + -0.002899169921875, + -0.025390625, + 0.0240478515625, + -0.0634765625, + 0.023681640625, + -0.035400390625, + -0.024658203125, + -0.00102996826171875, + 0.04931640625, + -0.009033203125, + -0.0223388671875, + -0.025390625, + 0.01361083984375, + -0.036376953125, + 0.006317138671875, + 0.01409912109375, + 0.01031494140625, + 0.0157470703125, + -0.020751953125, + 0.01226806640625, + -0.042724609375, + 0.00043487548828125, + 0.029541015625, + 0.002288818359375, + 0.001922607421875, + -0.0196533203125, + -0.04931640625, + 0.0400390625, + 0.037841796875, + -0.060302734375, + 0.004608154296875, + -0.02880859375, + 0.00244140625, + -0.01544189453125, + -0.020263671875, + 0.017822265625, + -0.026611328125, + 0.01275634765625, + -0.06494140625, + 0.04345703125, + -0.003631591796875, + -0.031982421875, + 0.0235595703125, + -0.031982421875, + -0.0245361328125, + -0.026611328125, + -0.004150390625, + 0.04638671875, + 0.047119140625, + -0.01556396484375, + -0.01214599609375, + -0.06982421875, + 0.0157470703125, + -0.04150390625, + -0.01904296875, + -0.00921630859375, + -0.007049560546875, + 0.00109100341796875, + 0.06884765625, + -0.024169921875, + 0.007171630859375, + -0.01055908203125, + -0.07958984375, + 0.02783203125, + -0.043212890625, + 0.047607421875, + 0.00183868408203125, + 0.030029296875, + 0.0625, + -0.0260009765625, + -0.041259765625, + -0.030029296875, + 0.0087890625, + 0.0162353515625, + -0.01116943359375, + -0.017578125, + -0.0247802734375, + -0.049560546875, + -0.0218505859375, + -0.00665283203125, + 0.033935546875, + 0.0286865234375, + -0.004669189453125, + 0.017822265625, + -0.01123046875, + 0.033935546875, + -0.025390625, + 0.05517578125, + 0.005767822265625, + 0.000827789306640625, + 0.000522613525390625, + 0.0654296875, + -0.0517578125, + -0.00154876708984375, + -0.023193359375, + -0.00860595703125, + 0.01287841796875, + 0.034912109375, + 0.0011749267578125, + 0.03369140625, + 0.029052734375, + -0.033203125, + -0.0272216796875, + -0.005950927734375, + 0.01556396484375, + -0.0172119140625, + -0.0157470703125, + -0.0257568359375, + 0.04443359375, + 0.061279296875, + 0.0289306640625, + 0.021240234375, + 0.00762939453125, + 0.0257568359375, + 0.0615234375, + 0.043212890625, + 0.034423828125, + 0.01318359375, + 0.007781982421875, + -0.021728515625, + -0.00162506103515625, + 0.0654296875, + 0.0322265625, + -0.0458984375, + -0.064453125, + 0.0235595703125, + -0.060302734375, + 0.00012969970703125, + 0.03125, + -0.0186767578125, + -0.0096435546875, + -0.058837890625, + 0.0181884765625, + -0.007781982421875, + -0.0064697265625, + -0.0145263671875, + 0.042236328125, + 0.018798828125, + -0.0150146484375, + 0.00933837890625, + -0.004974365234375, + 0.0751953125, + 0.0159912109375, + 0.0311279296875, + 0.029052734375, + 0.056640625, + -0.0223388671875, + -0.00531005859375, + 0.07177734375, + 0.006683349609375, + -0.03125, + -0.00032806396484375, + 0.0034637451171875, + -0.03564453125, + -0.026611328125, + -0.030029296875, + 0.0145263671875, + 0.06591796875, + 0.0140380859375, + 0.01202392578125, + 0.0174560546875, + -0.012451171875, + 0.0296630859375, + 0.02783203125, + -0.05615234375, + -0.00396728515625, + 0.0201416015625, + -0.01239013671875, + -0.032470703125, + 0.0242919921875, + -0.0169677734375, + -0.0267333984375, + -0.0245361328125, + -0.0306396484375, + -0.036376953125, + 0.00830078125, + 0.0703125, + -0.039794921875, + 0.0296630859375, + 0.01531982421875, + 0.02099609375, + 0.002532958984375, + -0.01446533203125, + 0.01025390625, + 0.021728515625, + 0.007537841796875, + 0.00848388671875, + -0.002349853515625, + -0.009521484375, + 0.0177001953125, + -0.0186767578125, + -0.003143310546875, + -0.033447265625, + 0.008544921875, + 0.020263671875, + -0.025146484375, + 0.031494140625, + 0.050537109375, + 0.035400390625, + -0.010498046875, + 0.006011962890625, + -0.0361328125, + 0.00469970703125, + 0.005615234375, + -0.012939453125, + -0.01385498046875, + -0.017578125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 19.72872899999345, + "queue_ms": 1.676742000000786, + "tokenization_ms": 0.026200999997172403, + "inference_ms": 17.882537999994952, + "postprocessing_ms": null + } + }, + { + "id": "chunk-2", + "dense": [ + -0.0181884765625, + -0.007080078125, + -0.015625, + -0.0179443359375, + -0.04443359375, + 0.0155029296875, + -0.00537109375, + -0.0201416015625, + -0.0247802734375, + 0.052001953125, + 0.032958984375, + 0.01556396484375, + 0.00958251953125, + -0.0211181640625, + -0.038330078125, + -0.0089111328125, + 0.003173828125, + -0.019775390625, + -0.033203125, + 0.007598876953125, + -0.041259765625, + -0.03173828125, + 0.0169677734375, + -0.0026397705078125, + 0.0022125244140625, + 0.038818359375, + -0.0185546875, + -0.0185546875, + 0.03369140625, + 0.0615234375, + 0.00982666015625, + -0.051025390625, + 0.025634765625, + -0.0264892578125, + 0.0034027099609375, + -0.03955078125, + 0.009521484375, + -0.022705078125, + -0.0537109375, + -0.01708984375, + 0.00518798828125, + 0.01019287109375, + 0.030029296875, + -0.0380859375, + 0.029052734375, + -0.022705078125, + -0.03369140625, + -0.02197265625, + -0.0162353515625, + 0.041015625, + -0.01239013671875, + -0.0361328125, + 0.07568359375, + -0.06298828125, + 0.004119873046875, + 0.0010833740234375, + -0.037109375, + -0.044921875, + -0.029052734375, + -0.0185546875, + -0.04150390625, + -0.021728515625, + -0.016357421875, + 0.003814697265625, + 0.02490234375, + 0.0274658203125, + -0.00860595703125, + -0.0185546875, + 0.0084228515625, + 0.00015735626220703125, + 0.005523681640625, + 0.025146484375, + 0.04931640625, + -0.043701171875, + -0.1044921875, + 0.00494384765625, + 0.04736328125, + -0.01129150390625, + 0.052734375, + -0.0162353515625, + 0.017333984375, + -0.0233154296875, + 0.0028076171875, + -0.0267333984375, + -0.03173828125, + 0.01007080078125, + -0.0106201171875, + -0.003570556640625, + 0.0147705078125, + 0.052978515625, + 0.006195068359375, + -0.0228271484375, + 0.048583984375, + 0.034423828125, + -0.01043701171875, + -0.052978515625, + -0.0172119140625, + 0.031005859375, + -0.028564453125, + 0.013427734375, + 0.00170135498046875, + 0.04296875, + 0.0302734375, + -0.04248046875, + -0.011962890625, + -0.00830078125, + 0.04931640625, + 0.0050048828125, + 0.054931640625, + -0.004913330078125, + -0.041015625, + 0.0264892578125, + 0.0341796875, + 0.0203857421875, + -0.010986328125, + 0.039794921875, + 0.00518798828125, + -0.01123046875, + 0.0201416015625, + -0.022216796875, + 0.06005859375, + -0.017578125, + 0.0220947265625, + 0.0030517578125, + -0.0174560546875, + 0.02685546875, + 0.0211181640625, + 0.01287841796875, + -0.0400390625, + 0.03125, + -0.0235595703125, + 0.03564453125, + 0.002410888671875, + -0.025390625, + -0.0084228515625, + 0.0224609375, + 0.09912109375, + -0.0264892578125, + 0.004852294921875, + -0.0361328125, + 0.032470703125, + 0.021484375, + -0.041015625, + -0.0322265625, + 0.068359375, + -0.033447265625, + -0.01409912109375, + -0.0036468505859375, + -0.0019989013671875, + -0.0035858154296875, + -0.005615234375, + -0.0079345703125, + 0.0267333984375, + -0.0167236328125, + 0.01483154296875, + -0.051513671875, + -0.01434326171875, + -0.000782012939453125, + -0.02783203125, + 0.01025390625, + 0.010986328125, + 0.0634765625, + 0.00830078125, + -0.0057373046875, + 0.00677490234375, + 0.0556640625, + 0.0177001953125, + 0.026123046875, + 0.0179443359375, + -0.00787353515625, + 0.004241943359375, + -0.034423828125, + 0.00011444091796875, + -0.01416015625, + 0.01129150390625, + 0.0224609375, + 0.1171875, + 0.012451171875, + -0.03564453125, + -0.045166015625, + -0.01611328125, + 0.02392578125, + -0.027099609375, + -0.0098876953125, + -0.03271484375, + 0.00811767578125, + -0.06982421875, + -9.775161743164062e-05, + 0.01318359375, + 0.00133514404296875, + -0.037353515625, + -0.00439453125, + 0.03515625, + 0.0107421875, + -0.0108642578125, + -0.05126953125, + -0.0240478515625, + 0.00138092041015625, + -0.0306396484375, + -0.00537109375, + -0.021728515625, + 0.064453125, + 0.01708984375, + -0.01708984375, + -0.0284423828125, + -0.00131988525390625, + 0.03466796875, + -0.0242919921875, + -0.016357421875, + 0.04345703125, + 0.0211181640625, + 0.024169921875, + 0.03662109375, + -0.006256103515625, + -0.0269775390625, + 0.00439453125, + -0.0181884765625, + 0.01513671875, + 0.01495361328125, + 0.01611328125, + 0.00061798095703125, + 0.006561279296875, + -0.033203125, + -0.001739501953125, + -0.005340576171875, + 0.021484375, + -0.0263671875, + 0.036376953125, + 0.0087890625, + -0.0771484375, + 0.034423828125, + -0.0235595703125, + 0.021484375, + -0.0179443359375, + 0.08837890625, + 0.002593994140625, + 0.03955078125, + 0.025390625, + 0.0260009765625, + 0.0120849609375, + -0.045166015625, + -0.056884765625, + -0.021728515625, + -0.01446533203125, + -0.00628662109375, + -0.00604248046875, + -0.005462646484375, + 0.0478515625, + -0.00048828125, + 0.01348876953125, + 0.0286865234375, + -0.000827789306640625, + -0.01092529296875, + 0.019775390625, + -0.0022430419921875, + 0.03173828125, + -0.005706787109375, + -0.0264892578125, + 0.033203125, + -0.0106201171875, + 0.0267333984375, + 0.031005859375, + 0.0067138671875, + 0.0157470703125, + 0.01068115234375, + -0.0189208984375, + -0.022216796875, + 0.0004425048828125, + -0.00174713134765625, + 0.0284423828125, + -0.0157470703125, + 0.042724609375, + 0.0208740234375, + -0.0166015625, + -0.0240478515625, + 0.0023193359375, + -0.00439453125, + -0.00173187255859375, + 0.072265625, + 0.0235595703125, + 0.00811767578125, + 0.0322265625, + 0.044189453125, + -0.0162353515625, + 0.024658203125, + 0.00537109375, + -0.0439453125, + -0.0218505859375, + 0.006561279296875, + 5.14984130859375e-05, + 0.004119873046875, + 0.00823974609375, + 0.05712890625, + -0.029296875, + -0.004852294921875, + -0.0654296875, + -0.024169921875, + -0.142578125, + -0.004913330078125, + -0.006011962890625, + 0.01031494140625, + 0.027587890625, + 0.013427734375, + 0.0098876953125, + -0.006256103515625, + -0.0693359375, + -0.006622314453125, + -0.0172119140625, + -0.0634765625, + -0.052490234375, + 0.0272216796875, + 0.0556640625, + 0.00848388671875, + 0.007476806640625, + 0.0091552734375, + 0.005615234375, + -0.028564453125, + -0.029296875, + 0.0322265625, + -0.01409912109375, + -0.0228271484375, + -0.017578125, + -0.016357421875, + 0.016845703125, + 0.0299072265625, + -0.06298828125, + 0.0194091796875, + 0.01318359375, + 0.025146484375, + -0.0069580078125, + 0.00396728515625, + 0.060791015625, + 0.044921875, + 0.0038909912109375, + -0.031494140625, + -0.0322265625, + -0.033935546875, + 0.0625, + 0.026123046875, + 0.001251220703125, + -0.018798828125, + -0.009033203125, + -0.0322265625, + 0.051025390625, + 0.02783203125, + -0.05224609375, + 0.052978515625, + -0.00860595703125, + 0.03271484375, + 0.006256103515625, + -0.0211181640625, + -0.0152587890625, + -0.032470703125, + -0.0118408203125, + 0.06640625, + -0.043701171875, + -0.0311279296875, + -0.0067138671875, + -0.04345703125, + -0.0201416015625, + -0.0169677734375, + -0.0128173828125, + -0.0015716552734375, + -0.056640625, + -0.038330078125, + 0.03515625, + -0.0262451171875, + 0.0128173828125, + 0.0128173828125, + -0.004241943359375, + -0.004974365234375, + -0.0361328125, + 0.044921875, + 0.039794921875, + -0.0023956298828125, + -0.038818359375, + -0.0634765625, + 0.01019287109375, + 0.034423828125, + 0.006378173828125, + 0.034912109375, + -0.01409912109375, + -0.00567626953125, + 0.01458740234375, + 0.02783203125, + 0.01422119140625, + 0.203125, + -0.053955078125, + -0.0233154296875, + 0.032470703125, + 0.0556640625, + -0.0198974609375, + 0.029052734375, + 0.06689453125, + 0.005645751953125, + -0.01904296875, + -0.005615234375, + -0.008056640625, + -0.0311279296875, + -0.029296875, + 0.0023651123046875, + 0.052734375, + 0.018310546875, + -0.0003795623779296875, + 0.045654296875, + -0.0166015625, + 0.0283203125, + -0.0213623046875, + 0.04345703125, + 0.0244140625, + -0.0830078125, + -0.0244140625, + -0.027099609375, + 0.033935546875, + -0.0262451171875, + 0.08154296875, + -0.0498046875, + -0.0211181640625, + 0.0174560546875, + -0.0264892578125, + -0.033935546875, + 0.0220947265625, + 0.031005859375, + -0.002227783203125, + -0.03662109375, + 0.04541015625, + 0.0341796875, + -0.0242919921875, + -0.054443359375, + -0.0015411376953125, + -0.01519775390625, + -0.023681640625, + -0.018310546875, + -0.032470703125, + -0.00982666015625, + -0.003570556640625, + 0.0076904296875, + -0.01043701171875, + 0.0213623046875, + 0.036376953125, + -0.0069580078125, + -0.037109375, + -0.0283203125, + -0.0186767578125, + -0.0172119140625, + -0.023681640625, + -0.00494384765625, + 0.0128173828125, + -0.023193359375, + 0.047119140625, + -0.003570556640625, + -0.034912109375, + -0.042236328125, + 0.0152587890625, + 0.00176239013671875, + -0.0267333984375, + 0.02001953125, + 0.00396728515625, + 0.036376953125, + 0.006011962890625, + 0.0269775390625, + -0.033935546875, + -0.04443359375, + 0.05029296875, + -0.06884765625, + 0.00909423828125, + -0.0262451171875, + -0.000423431396484375, + -0.07275390625, + 0.01434326171875, + 0.0277099609375, + -0.0033416748046875, + -0.004547119140625, + 0.0634765625, + -0.0028533935546875, + -0.00823974609375, + 0.01031494140625, + 0.039794921875, + -0.0106201171875, + 0.0247802734375, + -0.0224609375, + 0.005126953125, + 0.01422119140625, + 0.0037994384765625, + -0.0263671875, + -0.0201416015625, + -0.022705078125, + 0.00110626220703125, + -0.0283203125, + -0.000896453857421875, + 0.033203125, + 0.0233154296875, + -0.03955078125, + -0.0380859375, + -0.00726318359375, + -0.03857421875, + -0.050048828125, + 0.006195068359375, + -0.0086669921875, + 0.001678466796875, + -0.017822265625, + 0.0050048828125, + 0.0025634765625, + 0.031005859375, + 0.057861328125, + 0.0260009765625, + -0.0128173828125, + 0.002716064453125, + 0.0022430419921875, + -0.00714111328125, + 0.023193359375, + -0.015625, + -0.02392578125, + -0.0108642578125, + -0.0152587890625, + 0.01361083984375, + -0.0274658203125, + -0.032958984375, + 0.00128173828125, + -0.036865234375, + -0.028564453125, + 0.022705078125, + -0.031494140625, + 0.035400390625, + 0.002410888671875, + 0.0634765625, + -0.00457763671875, + 0.01385498046875, + 0.039794921875, + -0.0189208984375, + 0.00933837890625, + -0.00433349609375, + 0.0220947265625, + 0.0181884765625, + -0.031494140625, + 0.033935546875, + -0.01361083984375, + 0.051513671875, + 0.0286865234375, + -0.032470703125, + -0.0023040771484375, + 0.00811767578125, + -0.01806640625, + 0.034423828125, + 0.0208740234375, + -0.006500244140625, + -0.04296875, + -0.01495361328125, + -0.0111083984375, + 0.0194091796875, + -0.021728515625, + 0.048583984375, + -0.011962890625, + -0.009033203125, + 0.029296875, + -0.040771484375, + -0.017333984375, + 0.01055908203125, + -0.0255126953125, + 0.0089111328125, + 0.052734375, + 0.0439453125, + -0.01806640625, + -0.020751953125, + 0.055419921875, + -0.055419921875, + 0.017578125, + 0.0235595703125, + -0.004241943359375, + -0.07421875, + -0.017822265625, + 0.039306640625, + -0.0306396484375, + -0.01171875, + 0.039306640625, + -0.005615234375, + -0.025390625, + 0.08837890625, + 0.0213623046875, + -0.02490234375, + -0.00127410888671875, + 0.051025390625, + 0.005859375, + 0.03125, + -0.0218505859375, + -0.00396728515625, + -0.009521484375, + 0.037841796875, + -0.0380859375, + -0.06103515625, + -0.0030059814453125, + 0.020751953125, + 0.0233154296875, + 0.0439453125, + -0.028564453125, + 0.0054931640625, + 0.003265380859375, + 0.0120849609375, + -0.0262451171875, + 0.000713348388671875, + -0.0010528564453125, + -0.007415771484375, + 0.000545501708984375, + 0.043701171875, + -0.00070953369140625, + -0.002716064453125, + -0.02392578125, + -0.0322265625, + 0.0196533203125, + -0.056396484375, + 0.0167236328125, + 0.0157470703125, + -0.015869140625, + -0.000911712646484375, + -0.003692626953125, + -0.0023345947265625, + 0.0098876953125, + -0.0244140625, + 0.056640625, + -0.01104736328125, + -0.025390625, + -0.007781982421875, + 0.02197265625, + 0.00970458984375, + 0.008544921875, + -0.0211181640625, + 0.0311279296875, + 0.0189208984375, + 0.0257568359375, + 0.0341796875, + -0.022705078125, + 0.0220947265625, + -0.059814453125, + -0.048095703125, + 0.031494140625, + 0.03173828125, + 0.052978515625, + -0.014892578125, + 0.0478515625, + -0.01519775390625, + 0.036376953125, + 0.01904296875, + -0.004180908203125, + -0.0233154296875, + 0.006195068359375, + -0.05224609375, + -0.01904296875, + 0.017822265625, + -0.01458740234375, + -0.031494140625, + -0.0458984375, + -0.08447265625, + 0.00927734375, + -0.03955078125, + -0.0201416015625, + 0.00970458984375, + -0.01422119140625, + -0.0289306640625, + 0.000820159912109375, + -0.0037078857421875, + -0.037353515625, + -0.00066375732421875, + -0.07666015625, + 0.0284423828125, + -0.0203857421875, + 0.05029296875, + -0.031982421875, + -0.03955078125, + 0.0250244140625, + 0.027587890625, + -0.012451171875, + 0.0322265625, + 0.01104736328125, + 0.006622314453125, + 0.0036163330078125, + -0.041259765625, + 0.04150390625, + -0.052978515625, + -0.0213623046875, + 0.038818359375, + -0.05029296875, + 0.0220947265625, + -0.01214599609375, + 0.0380859375, + -0.037109375, + 0.00787353515625, + -0.00909423828125, + 0.04345703125, + -0.00408935546875, + 0.036865234375, + 0.032958984375, + 0.02392578125, + 0.0322265625, + -0.0086669921875, + 0.033447265625, + -0.004669189453125, + -0.01483154296875, + -0.04638671875, + 0.032958984375, + 0.0098876953125, + 0.00909423828125, + -0.0002574920654296875, + 0.054443359375, + -0.00124359130859375, + 0.000911712646484375, + 0.0186767578125, + -0.02685546875, + -0.00811767578125, + -5.185604095458984e-06, + -0.04833984375, + -0.048583984375, + -0.0005035400390625, + 0.011474609375, + -0.057373046875, + -0.01519775390625, + 0.01068115234375, + -0.062255859375, + -0.039794921875, + -0.02685546875, + -0.0242919921875, + 0.041015625, + 0.0225830078125, + 0.005615234375, + -0.007598876953125, + 0.0181884765625, + -0.0010833740234375, + -0.0201416015625, + -0.087890625, + 0.038818359375, + -0.037841796875, + -0.0177001953125, + -0.02392578125, + 0.0194091796875, + -0.019287109375, + 0.0283203125, + 0.01312255859375, + -0.04150390625, + -0.018310546875, + -0.021484375, + -0.0014801025390625, + 0.048095703125, + 0.06982421875, + -0.01214599609375, + 0.0169677734375, + -0.03369140625, + 0.03271484375, + -0.0205078125, + -0.004791259765625, + -0.0400390625, + -0.0213623046875, + -0.01025390625, + 0.0272216796875, + -0.0012054443359375, + -0.0260009765625, + -0.02978515625, + 0.005828857421875, + -0.019775390625, + -0.01409912109375, + 0.0019989013671875, + 0.034423828125, + -0.0013885498046875, + 0.0380859375, + -0.01483154296875, + 0.00677490234375, + 0.0027313232421875, + -0.034912109375, + -0.01043701171875, + 0.030517578125, + -0.01104736328125, + -0.028564453125, + 0.02392578125, + 0.0022125244140625, + -0.005889892578125, + -0.0103759765625, + 0.01361083984375, + 0.091796875, + -0.033447265625, + -0.0020294189453125, + -0.01287841796875, + -0.00029754638671875, + -0.150390625, + -0.004364013671875, + -0.000514984130859375, + -0.02490234375, + -0.06201171875, + 0.00537109375, + -0.01318359375, + -0.002777099609375, + 0.00537109375, + -0.0172119140625, + 0.00994873046875, + -0.00421142578125, + -0.0157470703125, + -0.0003223419189453125, + 0.0250244140625, + 0.0242919921875, + -0.005279541015625, + -0.004974365234375, + 0.0206298828125, + 0.04541015625, + 0.00927734375, + -0.00347900390625, + 0.0135498046875, + -0.03173828125, + -0.00927734375, + 0.0020751953125, + -0.038330078125, + -0.02001953125, + -0.0062255859375, + -0.047119140625, + 0.00164794921875, + 0.01416015625, + 0.0189208984375, + 0.0281982421875, + 0.0260009765625, + 0.00186920166015625, + 0.00543212890625, + 0.0203857421875, + 0.00604248046875, + -0.0172119140625, + -0.04248046875, + 0.0289306640625, + -0.0098876953125, + -0.0025177001953125, + -0.015869140625, + 0.0303955078125, + -0.02783203125, + -0.021240234375, + -0.0272216796875, + 0.017822265625, + -0.043701171875, + -0.01904296875, + 0.0003299713134765625, + 0.011474609375, + 0.0272216796875, + -0.00335693359375, + 0.0400390625, + -0.032958984375, + -0.0087890625, + 0.025146484375, + -0.0034332275390625, + -0.00457763671875, + -0.024169921875, + -0.037841796875, + -0.0174560546875, + 0.051025390625, + -0.0458984375, + 0.000335693359375, + 0.00439453125, + 0.015869140625, + -0.021728515625, + -0.03857421875, + -0.0208740234375, + 0.0067138671875, + 0.0235595703125, + -0.0299072265625, + 0.0380859375, + -0.045166015625, + 0.0198974609375, + -0.0169677734375, + -0.04248046875, + -0.0021514892578125, + -0.041748046875, + 0.023193359375, + 0.04931640625, + 0.0211181640625, + -0.0172119140625, + -0.0059814453125, + -0.042236328125, + 0.003021240234375, + -0.03955078125, + -0.0201416015625, + 0.00185394287109375, + 0.031982421875, + -0.021484375, + 0.058349609375, + -0.01287841796875, + -0.0306396484375, + -0.021728515625, + -0.032958984375, + 0.00142669677734375, + 0.005828857421875, + -0.004852294921875, + 0.0169677734375, + 0.00775146484375, + 0.046630859375, + -0.011474609375, + -0.0107421875, + -0.0341796875, + 0.00897216796875, + -0.0096435546875, + -0.0107421875, + -0.042724609375, + -0.0164794921875, + -0.099609375, + -0.044921875, + -0.01019287109375, + 0.007598876953125, + 0.0169677734375, + -0.0267333984375, + 0.01275634765625, + 0.0005035400390625, + 0.02490234375, + -0.044189453125, + 0.059326171875, + 0.031982421875, + 0.0087890625, + 0.006988525390625, + 0.01611328125, + -0.038330078125, + 0.01904296875, + 0.004119873046875, + 0.001251220703125, + 0.00299072265625, + 0.039794921875, + -0.031005859375, + 0.00714111328125, + 0.027587890625, + -0.01177978515625, + -0.07763671875, + -0.054931640625, + -0.001953125, + -0.01287841796875, + -0.04248046875, + 0.004913330078125, + -0.0189208984375, + 0.07080078125, + 0.053466796875, + -0.03173828125, + -0.0284423828125, + 0.0189208984375, + 0.046875, + 0.039306640625, + 0.029296875, + 0.040283203125, + 0.015380859375, + 0.006744384765625, + 0.03076171875, + 0.009033203125, + 0.040283203125, + -0.009033203125, + -0.0089111328125, + 0.0019989013671875, + -0.052490234375, + -0.037109375, + 0.056396484375, + -0.05029296875, + -0.01165771484375, + -0.05078125, + 0.0115966796875, + 0.0322265625, + 0.010009765625, + -0.01324462890625, + 0.0537109375, + 0.042236328125, + 0.0196533203125, + -0.018310546875, + -0.0311279296875, + 0.007080078125, + -0.04150390625, + 0.034423828125, + 0.04296875, + 0.0693359375, + 0.00836181640625, + -0.006103515625, + 0.01043701171875, + 0.0274658203125, + -0.0189208984375, + -0.01446533203125, + -0.003387451171875, + -0.036865234375, + -0.0096435546875, + 0.03857421875, + 0.01220703125, + 0.038330078125, + 0.003265380859375, + -0.007659912109375, + -0.016357421875, + 0.0123291015625, + 0.055419921875, + 0.068359375, + -0.0286865234375, + -0.01611328125, + 0.016357421875, + -0.0089111328125, + 0.0191650390625, + 0.017822265625, + -0.04443359375, + -0.0159912109375, + 0.0263671875, + -0.045654296875, + -0.0023193359375, + -0.0289306640625, + 0.0267333984375, + -0.039306640625, + -0.0010833740234375, + 0.0106201171875, + -0.004730224609375, + -0.0177001953125, + -0.002349853515625, + -0.0081787109375, + 0.024658203125, + 0.02490234375, + -0.021728515625, + 0.0296630859375, + 0.0306396484375, + 0.00177001953125, + -0.0225830078125, + 0.05517578125, + 0.0067138671875, + -0.03369140625, + 0.052001953125, + -0.01300048828125, + 0.01068115234375, + 0.017822265625, + 0.0235595703125, + -0.0263671875, + 0.006988525390625, + -0.029296875, + 0.00714111328125, + 0.00927734375, + 0.00616455078125, + -0.01129150390625, + -0.0030975341796875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 21.886456999993698, + "queue_ms": 1.8019080000044596, + "tokenization_ms": 0.02770199999702072, + "inference_ms": 19.888257999994607, + "postprocessing_ms": null + } + }, + { + "id": "chunk-3", + "dense": [ + -0.0218505859375, + 0.02587890625, + -0.01214599609375, + 0.0147705078125, + -0.047607421875, + 0.000377655029296875, + 0.0150146484375, + 0.034912109375, + 0.00811767578125, + 0.0301513671875, + 0.0157470703125, + 0.029052734375, + -0.0247802734375, + 0.00579833984375, + -0.03271484375, + -0.0213623046875, + 0.01416015625, + 0.00074005126953125, + -0.05908203125, + 0.01019287109375, + -0.00445556640625, + -0.02099609375, + 0.052001953125, + 0.0186767578125, + -0.006927490234375, + -0.003631591796875, + -0.03955078125, + -0.00921630859375, + 0.0242919921875, + 0.03271484375, + 0.005218505859375, + -0.04248046875, + 0.03271484375, + -0.042724609375, + 0.0031585693359375, + -0.0654296875, + -0.009521484375, + -0.040771484375, + -0.06005859375, + 0.056640625, + 0.001922607421875, + 0.0084228515625, + -0.01312255859375, + -0.00897216796875, + 0.017578125, + -0.0179443359375, + -0.0361328125, + -0.00762939453125, + -0.03125, + 0.01507568359375, + 0.00665283203125, + -0.01953125, + 0.06982421875, + -0.034423828125, + 0.0225830078125, + -0.0162353515625, + -0.01397705078125, + -0.0024871826171875, + -0.0556640625, + 0.01507568359375, + -0.03125, + 0.0103759765625, + -0.046630859375, + -0.006927490234375, + -0.004241943359375, + 0.06298828125, + 0.0238037109375, + 0.00921630859375, + -0.013916015625, + -0.0206298828125, + 0.00933837890625, + 0.030517578125, + -0.010498046875, + -0.00421142578125, + -0.09326171875, + 0.021484375, + 0.044189453125, + -0.023681640625, + 0.006561279296875, + -0.041259765625, + 0.010986328125, + -0.0244140625, + 0.0057373046875, + -0.000812530517578125, + -0.05712890625, + 0.0133056640625, + 0.02392578125, + 0.055419921875, + -0.004119873046875, + -0.008056640625, + -0.00010347366333007812, + -0.003326416015625, + 0.0004329681396484375, + -0.0146484375, + -0.01409912109375, + -0.01507568359375, + -0.04150390625, + 0.003936767578125, + 0.047119140625, + 0.0146484375, + 0.03173828125, + 0.0233154296875, + 0.03369140625, + -0.00799560546875, + 0.01361083984375, + -0.036865234375, + 0.031982421875, + 0.0010223388671875, + 0.03369140625, + -0.0062255859375, + -0.026123046875, + -0.002288818359375, + 0.0311279296875, + -0.005218505859375, + 0.0185546875, + -0.013916015625, + 0.031982421875, + 0.0031890869140625, + -0.010498046875, + -0.033203125, + 0.0284423828125, + 0.01507568359375, + 0.044921875, + 0.043212890625, + -0.01123046875, + 0.03271484375, + -0.006927490234375, + 0.029296875, + -0.0311279296875, + 0.043701171875, + 0.0238037109375, + 0.06298828125, + -0.022216796875, + 0.00567626953125, + -0.014404296875, + -0.0146484375, + 0.0390625, + 0.0299072265625, + 0.03955078125, + -0.031494140625, + 0.03662109375, + 0.00579833984375, + -0.051025390625, + 0.0118408203125, + 0.07080078125, + -0.01068115234375, + -0.0159912109375, + -0.0107421875, + -0.01263427734375, + -0.017333984375, + 0.0019989013671875, + 0.00750732421875, + 0.050537109375, + -0.0201416015625, + 0.00121307373046875, + -0.024658203125, + 0.0262451171875, + 0.00579833984375, + -0.024658203125, + 0.0135498046875, + -0.01531982421875, + 0.05322265625, + -0.007080078125, + -0.0244140625, + -0.02294921875, + 0.0172119140625, + 0.01806640625, + 0.04248046875, + -0.0255126953125, + -0.034423828125, + 0.02880859375, + -0.0034027099609375, + 0.00860595703125, + 0.0093994140625, + -0.004150390625, + 0.028564453125, + 0.103515625, + 0.00408935546875, + 0.0038909912109375, + -0.056884765625, + -0.040283203125, + 0.06787109375, + 0.00013256072998046875, + -0.01446533203125, + -0.040283203125, + 0.00946044921875, + -0.06396484375, + 0.01092529296875, + 0.034912109375, + -0.01190185546875, + -0.029296875, + -0.0020904541015625, + -0.015625, + -0.0218505859375, + 0.016845703125, + -0.0238037109375, + -0.024169921875, + -0.051025390625, + -0.005340576171875, + 0.0142822265625, + -0.042724609375, + 0.053955078125, + -0.01513671875, + -0.0091552734375, + -0.030517578125, + 0.0272216796875, + -0.01708984375, + 0.003662109375, + -0.006744384765625, + -0.043212890625, + -0.0294189453125, + 0.03515625, + 0.0072021484375, + 0.0517578125, + 0.007415771484375, + -0.0244140625, + 0.026123046875, + 0.004791259765625, + 0.037353515625, + 0.005096435546875, + -0.01080322265625, + 0.01190185546875, + -0.034423828125, + 0.01300048828125, + -0.04931640625, + 0.00191497802734375, + 0.025390625, + 0.04541015625, + -0.00506591796875, + -0.01361083984375, + -0.0010986328125, + -0.000682830810546875, + 0.0189208984375, + -0.03125, + 0.078125, + 0.0247802734375, + 0.0198974609375, + 0.022705078125, + -0.01080322265625, + 0.020751953125, + -0.0242919921875, + -0.004608154296875, + -0.06982421875, + 0.0191650390625, + -0.003662109375, + -0.020263671875, + -0.0147705078125, + 0.0419921875, + -0.0230712890625, + 0.0224609375, + -0.0030517578125, + -0.0279541015625, + -0.0306396484375, + 0.038330078125, + 0.0003986358642578125, + 0.047119140625, + -0.036376953125, + -0.02490234375, + 0.0179443359375, + -0.0098876953125, + 0.0133056640625, + 0.01123046875, + 0.00836181640625, + 0.013671875, + -0.00726318359375, + -0.02783203125, + -0.033203125, + -0.006072998046875, + 0.0147705078125, + 0.01513671875, + 0.004486083984375, + 0.00897216796875, + 0.0244140625, + -0.020751953125, + 0.03173828125, + 0.02294921875, + -0.012451171875, + 0.005767822265625, + 0.026611328125, + -0.0242919921875, + 0.0174560546875, + 0.00518798828125, + 0.034912109375, + -0.076171875, + 0.04736328125, + 0.0017242431640625, + -0.01177978515625, + 0.00604248046875, + 0.009521484375, + -0.0281982421875, + -0.034912109375, + -0.002410888671875, + 0.06884765625, + -0.019287109375, + -0.0419921875, + -0.0169677734375, + -0.034423828125, + -0.1796875, + 0.0196533203125, + -0.01904296875, + -0.021484375, + 0.021484375, + 0.01336669921875, + -0.00060272216796875, + -0.0390625, + -0.026611328125, + 0.04443359375, + 0.00909423828125, + -0.07666015625, + -0.0019989013671875, + 0.041748046875, + 0.00799560546875, + -0.00799560546875, + -0.0147705078125, + 0.034912109375, + 0.004608154296875, + -0.0242919921875, + -0.0091552734375, + -0.03369140625, + 0.06787109375, + -0.03271484375, + -0.062255859375, + 0.05078125, + 0.0279541015625, + 0.0040283203125, + -0.04541015625, + -0.0213623046875, + -0.00811767578125, + -0.0218505859375, + 0.0062255859375, + -0.0137939453125, + 0.033203125, + 0.06396484375, + 0.01953125, + -0.031494140625, + -0.0031890869140625, + -0.0150146484375, + 0.00946044921875, + -0.0034027099609375, + 0.00860595703125, + -0.003936767578125, + 0.004150390625, + -0.01409912109375, + -0.0113525390625, + 0.033447265625, + -0.025634765625, + 0.0174560546875, + 0.00567626953125, + -0.00104522705078125, + -0.01177978515625, + -0.003662109375, + -0.0260009765625, + -0.026611328125, + -0.00225830078125, + 0.04931640625, + 0.01385498046875, + 0.01043701171875, + -0.00567626953125, + -0.03125, + -0.0174560546875, + -0.00872802734375, + -0.050048828125, + -0.00083160400390625, + -0.0341796875, + -0.006103515625, + 0.01312255859375, + -0.044189453125, + 0.00836181640625, + 0.00186920166015625, + 0.0242919921875, + 0.0137939453125, + -0.0277099609375, + 0.060302734375, + -0.0166015625, + -0.0177001953125, + 0.005401611328125, + -0.11865234375, + -0.01507568359375, + 0.038330078125, + -0.041748046875, + 0.044189453125, + -0.0206298828125, + 0.01263427734375, + 0.004150390625, + -0.02294921875, + 0.05126953125, + 0.2314453125, + -0.007049560546875, + 0.0267333984375, + -0.004364013671875, + 0.019287109375, + -0.006805419921875, + 0.0106201171875, + 0.01165771484375, + -0.0123291015625, + -0.033935546875, + 0.0003414154052734375, + -0.0034637451171875, + -0.01007080078125, + -0.0023040771484375, + -0.0162353515625, + 0.08984375, + -0.0279541015625, + -0.007049560546875, + 0.08154296875, + -0.025634765625, + 0.0296630859375, + -0.031494140625, + 0.007110595703125, + -0.00015354156494140625, + -0.043701171875, + -0.01507568359375, + -0.0279541015625, + 0.006103515625, + 0.004425048828125, + 0.0296630859375, + -0.0269775390625, + -0.0311279296875, + 0.0235595703125, + -0.00174713134765625, + -0.01416015625, + -0.0191650390625, + 0.03271484375, + 0.0031890869140625, + -0.03076171875, + 0.078125, + -0.007354736328125, + -0.043701171875, + -0.048583984375, + 0.00799560546875, + -0.06103515625, + -0.0244140625, + 0.00897216796875, + 0.023193359375, + 0.018310546875, + 0.019775390625, + -0.0233154296875, + 0.0024261474609375, + 0.0311279296875, + 0.0224609375, + -0.0478515625, + -0.028564453125, + -0.00189208984375, + 0.011474609375, + 0.019775390625, + 0.034912109375, + -0.03759765625, + 0.0033416748046875, + -0.0098876953125, + 0.0419921875, + 0.006195068359375, + -0.004150390625, + -0.032958984375, + -0.01153564453125, + 0.01300048828125, + 0.0036773681640625, + -0.010986328125, + -0.00164031982421875, + 0.030517578125, + -0.00927734375, + 0.015625, + -0.0390625, + -0.035400390625, + 0.0025787353515625, + -0.054443359375, + 0.0264892578125, + -0.012451171875, + -0.007415771484375, + -0.00104522705078125, + -0.001495361328125, + 0.034912109375, + 0.01483154296875, + -0.0172119140625, + 0.07666015625, + 0.01007080078125, + -0.01953125, + -0.04296875, + 0.0203857421875, + 0.000926971435546875, + 0.0001621246337890625, + 0.00762939453125, + -0.005462646484375, + 0.01312255859375, + 0.0169677734375, + -0.060546875, + -0.000812530517578125, + 0.00897216796875, + 0.0024871826171875, + 0.0028076171875, + -0.02099609375, + 0.04833984375, + -0.032470703125, + -0.03857421875, + -0.01263427734375, + -0.01446533203125, + -0.0224609375, + -0.039794921875, + 0.0123291015625, + 0.0269775390625, + -0.017822265625, + 0.0184326171875, + 0.0380859375, + 0.0007476806640625, + 0.0306396484375, + 0.046630859375, + -0.0034027099609375, + -0.00616455078125, + -0.0703125, + -0.01806640625, + -0.0118408203125, + 0.0142822265625, + -0.01336669921875, + 0.01348876953125, + -0.04248046875, + -0.0206298828125, + -0.021240234375, + -0.027099609375, + -0.022705078125, + -0.006561279296875, + -0.003265380859375, + 0.036376953125, + 0.00439453125, + 0.01904296875, + -0.01397705078125, + 0.007537841796875, + 0.054443359375, + -0.005828857421875, + 0.00872802734375, + -0.0113525390625, + -0.01409912109375, + 0.00494384765625, + -0.0064697265625, + 0.005462646484375, + 0.0252685546875, + -0.053955078125, + 0.01446533203125, + -0.0186767578125, + 0.031982421875, + 0.0181884765625, + -0.0203857421875, + -0.021484375, + -0.02294921875, + 0.01422119140625, + -0.0147705078125, + 0.0181884765625, + -0.0283203125, + -0.022216796875, + -0.003204345703125, + 0.00982666015625, + 0.0252685546875, + 0.0024871826171875, + 0.036865234375, + -0.022705078125, + -0.01123046875, + 0.0126953125, + -0.038330078125, + -0.0294189453125, + -0.00885009765625, + 0.004791259765625, + -0.0040283203125, + -0.00104522705078125, + 0.047607421875, + 0.0018157958984375, + 0.011474609375, + 0.0233154296875, + -0.024169921875, + 0.020263671875, + -0.03515625, + -0.007080078125, + -0.0673828125, + 0.002288818359375, + 0.038330078125, + -0.03857421875, + -0.01153564453125, + 0.06396484375, + -0.038330078125, + 0.01495361328125, + 0.1162109375, + -0.01361083984375, + -0.0107421875, + -0.0040283203125, + -0.00185394287109375, + 0.006927490234375, + 0.03515625, + -0.0135498046875, + -0.02880859375, + -0.05712890625, + 0.019775390625, + 0.01361083984375, + -0.0242919921875, + 0.035400390625, + 0.01068115234375, + 0.00830078125, + 0.040771484375, + -0.00933837890625, + 0.011474609375, + 0.00170135498046875, + 0.0137939453125, + 0.034912109375, + 0.009033203125, + 0.0130615234375, + -0.0255126953125, + 0.029541015625, + 0.01385498046875, + -0.029052734375, + -0.0157470703125, + -0.005035400390625, + -0.0225830078125, + 0.01409912109375, + -0.06640625, + -0.017578125, + 0.0218505859375, + -0.0213623046875, + 0.00133514404296875, + 0.0281982421875, + -0.009765625, + -0.00872802734375, + -0.021484375, + 0.013916015625, + -0.022705078125, + -0.0135498046875, + -0.02490234375, + 0.0322265625, + 0.0031280517578125, + -0.01220703125, + -0.047119140625, + 0.005157470703125, + 0.0224609375, + 0.006988525390625, + 0.059814453125, + -0.03955078125, + 0.01611328125, + -0.05419921875, + -0.00445556640625, + 0.037353515625, + 0.01397705078125, + 0.0277099609375, + -0.019775390625, + 0.0185546875, + 0.024658203125, + 0.00885009765625, + 0.055419921875, + -0.0031585693359375, + 0.0003509521484375, + -0.00958251953125, + -0.01507568359375, + -0.018798828125, + 0.01544189453125, + -0.004364013671875, + -0.0281982421875, + -0.02294921875, + -0.09765625, + 0.030517578125, + -0.04052734375, + 0.002105712890625, + 0.00173187255859375, + -0.0306396484375, + -0.04248046875, + -0.017822265625, + -0.01611328125, + 0.0152587890625, + 0.0069580078125, + -0.02294921875, + -0.0194091796875, + 0.04296875, + -3.504753112792969e-05, + 0.0023651123046875, + -0.0084228515625, + 0.021240234375, + -0.01165771484375, + -0.0546875, + 0.02490234375, + 0.0238037109375, + -0.023681640625, + -0.00016689300537109375, + -0.0230712890625, + 0.033447265625, + -0.00921630859375, + -0.056884765625, + 0.008056640625, + -0.03564453125, + -0.00787353515625, + 0.0177001953125, + -0.0242919921875, + -0.044189453125, + 0.0142822265625, + -0.0062255859375, + 0.042724609375, + -0.0225830078125, + 0.0272216796875, + 0.003265380859375, + 0.00555419921875, + 0.0004405975341796875, + -0.03466796875, + -0.002471923828125, + 0.01324462890625, + -0.0213623046875, + -0.10009765625, + 0.053955078125, + -0.0089111328125, + 0.0206298828125, + 0.024658203125, + 0.0791015625, + -0.0123291015625, + 0.0225830078125, + -0.000873565673828125, + 0.01397705078125, + 0.00677490234375, + -0.03564453125, + -0.047119140625, + -0.030029296875, + 0.0206298828125, + -0.01953125, + -0.0322265625, + -0.0308837890625, + -0.002532958984375, + -0.006256103515625, + -0.024169921875, + -0.0361328125, + -0.02880859375, + 0.01409912109375, + 0.01507568359375, + 0.00921630859375, + 0.037841796875, + 0.03076171875, + -0.0296630859375, + -0.01300048828125, + -0.04443359375, + 0.064453125, + -0.0250244140625, + -0.022705078125, + -0.009033203125, + 0.004730224609375, + -0.034912109375, + -0.0242919921875, + 0.02099609375, + -0.02880859375, + -0.02880859375, + -0.0198974609375, + -0.0517578125, + 0.052001953125, + 0.009765625, + 0.003326416015625, + 0.00579833984375, + 0.060302734375, + 0.0216064453125, + -0.064453125, + -0.006500244140625, + -0.032958984375, + -0.00787353515625, + -0.00408935546875, + 0.039794921875, + -0.00080108642578125, + 0.0048828125, + -0.033935546875, + -0.037109375, + 0.01507568359375, + -0.0023345947265625, + 0.0380859375, + 0.047119140625, + -0.05322265625, + 0.03955078125, + 0.0145263671875, + 0.03369140625, + 0.038330078125, + -0.06298828125, + 0.00482177734375, + -0.039794921875, + -0.0186767578125, + -0.0166015625, + 0.06396484375, + 0.02880859375, + 0.00933837890625, + 0.0135498046875, + -0.024169921875, + 0.04248046875, + -0.031494140625, + -0.0018768310546875, + -0.01495361328125, + -0.00531005859375, + -0.15625, + 0.00225830078125, + -0.0150146484375, + 0.00799560546875, + -0.0284423828125, + -0.000461578369140625, + -0.0308837890625, + 0.0267333984375, + -0.01397705078125, + -0.0031585693359375, + 0.00762939453125, + -0.0289306640625, + -0.00732421875, + -0.01220703125, + 0.0230712890625, + 0.040283203125, + -0.038330078125, + 0.0167236328125, + -0.026611328125, + 0.055908203125, + 0.01953125, + -0.0284423828125, + -0.0208740234375, + -0.0011138916015625, + -0.0031280517578125, + -0.002899169921875, + 0.01385498046875, + 0.039306640625, + -0.0269775390625, + -0.04833984375, + 0.01348876953125, + 0.0220947265625, + 0.00823974609375, + 0.08984375, + 0.01129150390625, + 0.009033203125, + 0.0118408203125, + 0.0146484375, + -0.039794921875, + -0.000957489013671875, + -0.08056640625, + 0.03173828125, + -0.0186767578125, + -0.02197265625, + 0.00323486328125, + 0.034912109375, + -0.03369140625, + 0.0008087158203125, + -0.02587890625, + 0.0306396484375, + -0.040283203125, + 0.01397705078125, + 0.032958984375, + -0.0028228759765625, + 0.01312255859375, + -0.01214599609375, + 0.01007080078125, + -0.0262451171875, + -0.0169677734375, + 0.0267333984375, + 0.006561279296875, + 0.002471923828125, + -0.0238037109375, + -0.0712890625, + 0.06884765625, + 0.0419921875, + -0.0439453125, + 0.0208740234375, + -0.0179443359375, + 0.037353515625, + -0.018798828125, + -0.03369140625, + 0.0194091796875, + -0.025390625, + 0.03564453125, + -0.03662109375, + 0.022216796875, + -0.0299072265625, + -0.0250244140625, + -0.001312255859375, + -0.04052734375, + -0.00634765625, + -0.0272216796875, + -0.00191497802734375, + 0.072265625, + 0.06494140625, + -0.021484375, + 0.007659912109375, + -0.0849609375, + -0.001007080078125, + -0.0306396484375, + -0.009033203125, + 0.0208740234375, + 0.00738525390625, + 0.01275634765625, + 0.03564453125, + -0.024169921875, + 0.0013275146484375, + -0.00592041015625, + -0.05322265625, + 0.040771484375, + -0.02294921875, + 0.0390625, + -0.006500244140625, + 0.03125, + 0.064453125, + -0.010498046875, + -0.00921630859375, + -0.03564453125, + -0.00099945068359375, + -0.00958251953125, + -0.03369140625, + -0.01220703125, + -0.0264892578125, + -0.07080078125, + -0.020751953125, + -0.0145263671875, + 0.02587890625, + 0.03564453125, + 0.0031585693359375, + 0.040771484375, + -0.0184326171875, + 0.06396484375, + -0.030517578125, + 0.034912109375, + 0.005157470703125, + 0.030029296875, + -0.0016937255859375, + 0.05859375, + -0.03125, + -0.0004405975341796875, + -0.0380859375, + -0.017333984375, + 0.006500244140625, + 0.0277099609375, + -0.00994873046875, + -0.0030364990234375, + 0.0189208984375, + -0.03076171875, + -0.036865234375, + 0.003814697265625, + -0.0021514892578125, + 0.002899169921875, + -0.01019287109375, + -0.03955078125, + 0.0269775390625, + 0.048828125, + 0.0361328125, + 0.03564453125, + 0.00445556640625, + 0.0281982421875, + 0.061767578125, + 0.03564453125, + 0.0390625, + 0.0030364990234375, + 0.003570556640625, + -0.0086669921875, + -0.00885009765625, + 0.05859375, + 0.04443359375, + -0.038818359375, + -0.06298828125, + 0.01312255859375, + -0.04248046875, + -0.01611328125, + 0.072265625, + -0.01165771484375, + -0.0025177001953125, + -0.04248046875, + 0.006622314453125, + 0.017822265625, + 0.019287109375, + -0.0216064453125, + 0.009033203125, + 0.00141143798828125, + -0.01019287109375, + 0.01263427734375, + -0.019287109375, + 0.04296875, + 0.006195068359375, + 0.016845703125, + 0.0113525390625, + 0.047607421875, + -0.02294921875, + -0.0093994140625, + 0.05517578125, + 0.013671875, + -0.00738525390625, + -0.0048828125, + -0.0089111328125, + -0.023681640625, + -0.03857421875, + -0.046142578125, + 0.0218505859375, + 0.06103515625, + -0.003173828125, + 0.007476806640625, + -0.004486083984375, + -0.0028228759765625, + 0.00970458984375, + 0.0458984375, + -0.0556640625, + -0.0008697509765625, + 0.01708984375, + 0.007049560546875, + -0.0198974609375, + 0.0419921875, + -0.00506591796875, + -0.03173828125, + -0.019775390625, + -0.040771484375, + -0.0087890625, + -0.005828857421875, + 0.042724609375, + -0.04931640625, + 0.01275634765625, + 0.043701171875, + 0.0113525390625, + -0.0087890625, + -0.00099945068359375, + -0.0023040771484375, + 0.059814453125, + 0.0033416748046875, + 0.0118408203125, + -0.00732421875, + -0.0098876953125, + 0.01165771484375, + -0.0186767578125, + 0.0026092529296875, + -0.005218505859375, + -0.0220947265625, + 0.006744384765625, + -0.029052734375, + 0.03369140625, + 0.04150390625, + 0.03515625, + -0.0247802734375, + 0.0152587890625, + -0.0302734375, + 0.0034942626953125, + 0.0013885498046875, + -0.044921875, + -0.027099609375, + 0.0062255859375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 38.36914800000102, + "queue_ms": 2.0695329999966816, + "tokenization_ms": 0.0238610000025119, + "inference_ms": 36.12417499999765, + "postprocessing_ms": null + } + } + ], + "ranking": [ + { + "chunk_id": "chunk-2", + "text": "## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial, Inc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.", + "score": 0.6121235135862795 + }, + { + "chunk_id": "chunk-0", + "text": "# Pathward Financial source excerpts", + "score": 0.5805091573515436 + }, + { + "chunk_id": "chunk-1", + "text": "## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | | Diluted | $1.68 | $0.76 | $4.62 | $4.44 |", + "score": 0.5251176823695604 + }, + { + "chunk_id": "chunk-3", + "text": "## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |", + "score": 0.5237956374163122 + } + ] +} diff --git a/examples/financial-filing-agent/verified-run/review.json b/examples/financial-filing-agent/verified-run/review.json new file mode 100644 index 00000000..160f3703 --- /dev/null +++ b/examples/financial-filing-agent/verified-run/review.json @@ -0,0 +1,59 @@ +{ + "route": "superseded_figure", + "company": "Pathward Financial, Inc.", + "period": "Three Months Ended June 30, 2023", + "metric": "net income attributable to parent", + "original": { + "value_millions": 45.096, + "diluted_eps": 1.68, + "source_id": "2023-10q" + }, + "restated": { + "value_millions": 36.08, + "diluted_eps": 1.34, + "source_id": "2025-10ka" + }, + "change": { + "value_millions": -9.016, + "diluted_eps": -0.34, + "percent": -20.0 + }, + "source_status": "no longer be relied upon", + "company_caveat": "The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes.", + "controlling_sources": [ + "2023-10q", + "2025-8k-item-4-02", + "2025-10ka" + ], + "ranked_evidence": [ + { + "chunk_id": "chunk-1", + "rank": 0, + "score": 0.97265625, + "text": "## Original Form 10-Q Accession 0000907471-23-000090. Filed August 8, 2023. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | 2023 | 2022 | 2023 | 2022 | |-------------------------------------------------|---------|---------|----------|----------| | Net income attributable to parent | $45,096 | $22,391 | $127,709 | $132,966 | | Diluted | $1.68 | $0.76 | $4.62 | $4.44 |" + }, + { + "chunk_id": "chunk-0", + "rank": 1, + "score": 0.96484375, + "text": "# Pathward Financial source excerpts" + }, + { + "chunk_id": "chunk-3", + "rank": 2, + "score": 0.9609375, + "text": "## Restated Form 10-K/A Accession 0000907471-25-000083. Filed August 29, 2025. Three Months Ended June 30, 2023 | (Dollars in thousands, except per share data) | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | As Previously Reported on Form 10-Q | Restatement Adjustment | Restatement Reference | As Restated | |-------------------------------------------------|---------------------------------------|--------------------------|-------------------------|---------------|---------------------------------------|--------------------------|-------------------------|---------------| | Net income attributable to parent | $45,096 | $(9,016) | | $36,080 | $127,709 | $(9,721) | | $117,988 | | Diluted | $1.68 | | | $1.34 | $4.62 | | | $4.27 |" + }, + { + "chunk_id": "chunk-2", + "rank": 3, + "score": 0.65234375, + "text": "## Item 4.02 Form 8-K Accession 0000907471-25-000071. Filed June 26, 2025. On June 26, 2025, the Audit Committee (the \"Audit Committee\") of the Board of Directors of Pathward Financial, Inc. (\"Pathward Financial\" or the \"Company\"), after discussion with management and the Company's independent registered public accounting firm, Crowe LLP, concluded that the Company's audited consolidated financial statements as of the fiscal years ended September 30, 2024 and 2023, and for each year in the three fiscal year period ended September 30, 2024 contained in its Annual Reports on Form 10-K, and its unaudited consolidated financial statements as of and for the interim periods ended December 31, 2024, 2023, 2022, and 2021, March 31, 2024, 2023, and 2022, and June 30, 2024, 2023, and 2022 contained in its Quarterly Reports on Form 10-Q (collectively, the \"Affected Periods\") should no longer be relied upon because of errors identified in such financial statements, as described below. Similarly, any financial information in the Company's prior earnings releases, press releases, shareholder communications, investor presentations or other communications that relates to the Affected Periods or the fiscal quarter ended March 31, 2025 should no longer be relied upon. The change from net to gross basis presentation does not impact net income over the life of the portfolio, but changes the timing of when elements of the programs are recognized for accounting purposes." + } + ], + "claims_excluded": [ + "fraud", + "misconduct", + "investment recommendation" + ] +} diff --git a/examples/maintenance-triage-agent/.env.example b/examples/maintenance-triage-agent/.env.example new file mode 100644 index 00000000..535bc541 --- /dev/null +++ b/examples/maintenance-triage-agent/.env.example @@ -0,0 +1,2 @@ +SIE_CLUSTER_URL=http://localhost:8080 +SIE_API_KEY= diff --git a/examples/maintenance-triage-agent/.gitignore b/examples/maintenance-triage-agent/.gitignore new file mode 100644 index 00000000..c1e16049 --- /dev/null +++ b/examples/maintenance-triage-agent/.gitignore @@ -0,0 +1,7 @@ +.env +.venv/ +.pytest_cache/ +.ruff_cache/ +__pycache__/ +*.pyc +runs/ diff --git a/examples/maintenance-triage-agent/README.md b/examples/maintenance-triage-agent/README.md new file mode 100644 index 00000000..117dbbb4 --- /dev/null +++ b/examples/maintenance-triage-agent/README.md @@ -0,0 +1,80 @@ +# Reconstruct a bearing failure from three detector readings + +This example processes the NTSB's illustrated account of the East Palestine +derailment. Its only case input is the published page 4–5 spread from the +NTSB's `SPC-24-06` digest. + +The result reconstructs one sequence: + +```text +Sebring 7:37 p.m. 38°F above ambient no alert +Salem 8:13 p.m. 103°F above ambient noncritical alert to the Wayside Help Desk, not the crew +East Palestine ~8:52 p.m. 253°F above ambient critical alarm in the locomotive cab +``` + +It retains the NTSB's published cause statement. It does not infer a new root +cause, recommend an operational response, or write to a control system. + +## What runs on SIE + +| Step | Model | Output | +|---|---|---| +| Parse the illustrated PDF spread | `docling-project/docling` | Markdown from the original page layout | +| Retrieve detector and outcome passages | `BAAI/bge-m3` | Dense vectors and cosine ranking | +| Rerank against the sequence question | `Qwen/Qwen3-Reranker-4B` | Ordered source evidence with scores | +| Verify locations, times, alerts, the bearing, and railcar count | `urchade/gliner_multi-v2.1` | Exact source spans | +| Recover detector, alert, and outcome spans | `fastino/gliner2-large-v1` | Labeled exact-source spans | + +Every stage consumes the prior stage. GLiNER2 runs once for each detector +paragraph, then on the shortest ranked paragraphs for the cause, engineer +action, and derailment. The review stops if the model omits the event times, +detector readings, alert recipient, camera observation, railcar count, or +bearing-failure span. + +Ordinary code then maps exact text from the ranked NTSB paragraphs. It does not +ask GLiNER2 for a JSON schema. One recorded schema probe returned three empty +required fields for this input. Its exact +[request](fixtures/output-schema-probe-request.json) and unedited +[response](fixtures/output-schema-probe-response.json) are preserved. That +single result is diagnostic evidence, not a general model capability claim. + +Python performs only transparent calculations: `103 - 38 = 65`, +`253 - 103 = 150`, and `253 - 38 = 215`. It also converts the NTSB's “hopper +car and 37 others” into a total of 38 derailed cars. + +## Run it + +```bash +cd examples/maintenance-triage-agent +cp .env.example .env +uv sync + +uv run triage-fault --run-id local +uv run eval-triage runs/local +``` + +Set `SIE_CLUSTER_URL` and `SIE_API_KEY` to use SIE Cloud. The default points to +a local server at `http://localhost:8080`. + +## Evidence bundle + +```text +runs//manifest.json endpoint, model IDs, source hash, latency +runs//raw/parse.json complete Docling response +runs//raw/retrieve.json embeddings and cosine ranking +runs//raw/rerank.json complete reranker response +runs//raw/entities.json combined GLiNER entity spans +runs//raw/gliner2-sebring.json GLiNER2 Sebring spans +runs//raw/gliner2-salem.json GLiNER2 Salem spans +runs//raw/gliner2-east-palestine.json GLiNER2 East Palestine spans +runs//raw/gliner2-cause.json GLiNER2 bearing-failure span +runs//raw/gliner2-engineer.json GLiNER2 engineer-action spans +runs//raw/gliner2-derailment.json GLiNER2 derailed-railcar spans +runs//raw/mapped.json validated exact-fragment mapping +runs//parsed.md parsed NTSB spread used downstream +runs//review.json detector trend and explicit boundary +runs//evaluation.json deterministic checks +``` + +See [fixtures/SOURCES.md](fixtures/SOURCES.md) for the original NTSB URL, +extraction method, and checksums. diff --git a/examples/maintenance-triage-agent/config.yaml b/examples/maintenance-triage-agent/config.yaml new file mode 100644 index 00000000..08f84e0d --- /dev/null +++ b/examples/maintenance-triage-agent/config.yaml @@ -0,0 +1,18 @@ +cluster: + url: "http://localhost:8080" + api_key: "" + provision_timeout_s: 900 + +models: + parse: "docling-project/docling" + retrieve: "BAAI/bge-m3" + rerank: "Qwen/Qwen3-Reranker-4B" + entities: "urchade/gliner_multi-v2.1" + extract: "fastino/gliner2-large-v1" + +review: + query: >- + How did the L1 bearing temperature and alert status change across Sebring, + Salem, and East Palestine, and what did the NTSB report happened next? + candidate_chunks: 18 + top_k: 18 diff --git a/examples/maintenance-triage-agent/fixtures/SOURCES.md b/examples/maintenance-triage-agent/fixtures/SOURCES.md new file mode 100644 index 00000000..a64d5b39 --- /dev/null +++ b/examples/maintenance-triage-agent/fixtures/SOURCES.md @@ -0,0 +1,25 @@ +# Source and scope + +## NTSB Illustrated Digest SPC-24-06 + +- Title: *Norfolk Southern Railway Derailment and Subsequent Hazardous + Materials Release, East Palestine, Ohio, February 3, 2023* +- Publisher: National Transportation Safety Board +- URL: + https://www.ntsb.gov/investigations/AccidentReports/Reports/SPC2406.pdf +- Full PDF SHA-256: + `8c7dc02006f8a9ce21b77657553c8f14e6a7a00ec94b0c6ad05d60eec297d89f` +- Input fixture: `east-palestine-bearing-spread.pdf` +- Input fixture SHA-256: + `0556a971978198a493acda277dfdfd75a837be4ba5c626d6f03565cb17cee8ca` +- Source page: PDF index 2, the spread labeled pages 4–5 in print +- Extraction: that page was copied without transcription or redrawing using + Apple's PDFKit. The original page dimensions and content streams remain in + the fixture. + +The input contains the NTSB's detector readings and narrative for Sebring, +Salem, and East Palestine. It also contains the published statement that the +derailment began when an overheated bearing burned off the accident hopper car. + +This example reconstructs those published facts. It makes no new causal +determination and performs no operational or control action. diff --git a/examples/maintenance-triage-agent/fixtures/STRUCTURED_OUTPUT_PROBE.md b/examples/maintenance-triage-agent/fixtures/STRUCTURED_OUTPUT_PROBE.md new file mode 100644 index 00000000..f4562e57 --- /dev/null +++ b/examples/maintenance-triage-agent/fixtures/STRUCTURED_OUTPUT_PROBE.md @@ -0,0 +1,18 @@ +# Recorded structured-output probe + +The pipeline does not call GLiNER2 with `output_schema`. + +During development, an exact-source array schema was tested against the three +ranked detector paragraphs. The request record includes the exact input, +schema, endpoint, runtime commit, timestamp, and call options: +`output-schema-probe-request.json`. + +That one response contains exact text for the Salem recipient, crew +notification, and camera observation. It contains empty arrays for the Sebring +alert status, Salem alert level, and East Palestine alarm. The response cannot +support this example's required record. It does not establish a general model +capability boundary. + +The complete unedited response is in `output-schema-probe-response.json`. The +verified pipeline uses labeled source-span extraction and deterministic +exact-source mapping instead. diff --git a/examples/maintenance-triage-agent/fixtures/east-palestine-bearing-spread.pdf b/examples/maintenance-triage-agent/fixtures/east-palestine-bearing-spread.pdf new file mode 100644 index 00000000..b508fab9 Binary files /dev/null and b/examples/maintenance-triage-agent/fixtures/east-palestine-bearing-spread.pdf differ diff --git a/examples/maintenance-triage-agent/fixtures/output-schema-probe-request.json b/examples/maintenance-triage-agent/fixtures/output-schema-probe-request.json new file mode 100644 index 00000000..54402db4 --- /dev/null +++ b/examples/maintenance-triage-agent/fixtures/output-schema-probe-request.json @@ -0,0 +1,77 @@ +{ + "recorded_at": "2026-07-25T01:37:51Z", + "endpoint": "http://127.0.0.1:8080", + "sie_server_commit": "9d6ca6b00f788b6ab19f8d6dc9506e1b31dad2f0", + "sdk_method": "SIEClient.extract", + "model": "fastino/gliner2-large-v1", + "item": { + "id": "ranked-ntsb-alerts-evidence", + "text": "At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38°F above ambient -not high enough to trigger an alert. The R1 bearing measured 20°F above ambient. But the L1 bearing was hotter.\n\nAt 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103°F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted.\n\nAbout 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253°F above ambient at the L1 bearing; bearing R1 remained at 20°F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab.", + "text_sha256": "84da68886b475468d2c5f96ae754fc5231e458f9d2352c6ed164e11f6409949f", + "source_artifact": "verified-run/raw/retrieve.json", + "source_chunk_ids": [ + "chunk-11", + "chunk-12", + "chunk-13" + ], + "join_separator": "\n\n" + }, + "output_schema": { + "type": "object", + "properties": { + "sebring_source_phrase": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Exact source phrase stating whether the Sebring reading triggered an alert" + }, + "salem_alert_source_phrase": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Exact source phrase naming the alert level at Salem" + }, + "salem_recipient_source_text": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Exact source phrase naming who received the Salem alert" + }, + "salem_crew_source_text": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Exact source phrase stating whether the Salem alert went to the train crew" + }, + "salem_camera_source_text": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Exact source phrase describing what the Salem camera showed near the bearing" + }, + "east_palestine_alarm_source_text": { + "type": "array", + "items": { + "type": "string" + }, + "description": "Exact source phrase naming the East Palestine alarm and where it was broadcast" + } + }, + "required": [ + "sebring_source_phrase", + "salem_alert_source_phrase", + "salem_recipient_source_text", + "salem_crew_source_text", + "salem_camera_source_text", + "east_palestine_alarm_source_text" + ], + "additionalProperties": false + }, + "wait_for_capacity": true, + "provision_timeout_s": 900 +} diff --git a/examples/maintenance-triage-agent/fixtures/output-schema-probe-response.json b/examples/maintenance-triage-agent/fixtures/output-schema-probe-response.json new file mode 100644 index 00000000..44e4cdd1 --- /dev/null +++ b/examples/maintenance-triage-agent/fixtures/output-schema-probe-response.json @@ -0,0 +1,22 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-alerts-evidence", + "data": { + "sebring_source_phrase": [], + "salem_alert_source_phrase": [], + "salem_recipient_source_text": [ + "Wayside Help Desk" + ], + "salem_crew_source_text": [ + "not to the crew" + ], + "salem_camera_source_text": [ + "fire near the bearing" + ], + "east_palestine_alarm_source_text": [] + }, + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/maintenance_triage/__init__.py b/examples/maintenance-triage-agent/maintenance_triage/__init__.py new file mode 100644 index 00000000..d12ce39c --- /dev/null +++ b/examples/maintenance-triage-agent/maintenance_triage/__init__.py @@ -0,0 +1 @@ +"""Read-only maintenance triage over synthetic plant records.""" diff --git a/examples/maintenance-triage-agent/maintenance_triage/evaluate.py b/examples/maintenance-triage-agent/maintenance_triage/evaluate.py new file mode 100644 index 00000000..4043730f --- /dev/null +++ b/examples/maintenance-triage-agent/maintenance_triage/evaluate.py @@ -0,0 +1,110 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +from dataclasses import asdict, dataclass +from pathlib import Path +from typing import Any + +from rich.console import Console +from rich.table import Table + +console = Console() + + +@dataclass(frozen=True) +class Check: + name: str + passed: bool + detail: str + + +def evaluate_review(review: dict[str, Any]) -> list[Check]: + readings = review.get("detector_readings", []) + trend = review.get("trend", {}) + derailment = review.get("derailment", {}) + evidence = review.get("ranked_source_evidence", []) + evidence_text = "\n".join(str(row.get("text", "")) for row in evidence).casefold() + return [ + Check( + "read-only-route", + review.get("route") == "read_only_detector_trend_review", + str(review.get("route")), + ), + Check( + "three-detector-readings", + [row.get("degrees_f_above_ambient") for row in readings] == [38, 103, 253], + str(readings), + ), + Check( + "temperature-deltas", + trend.get("successive_increases_degrees_f") == [65, 150] and trend.get("total_increase_degrees_f") == 215, + str(trend), + ), + Check( + "published-derailment-count", + derailment.get("total_cars") == 38 and "37 others" in str(derailment.get("statement")), + str(derailment), + ), + Check( + "ranked-primary-source-evidence", + bool(evidence) + and all( + token in evidence_text + for token in ("sebring", "salem", "east palestine", "38°f", "103°f", "253°f", "wayside help desk") + ), + str([row.get("chunk_id") for row in evidence]), + ), + Check( + "ntsb-cause-preserved", + review.get("ntsb_cause_statement") + == "The East Palestine derailment began when an overheated bearing burned off the accident hopper car.", + str(review.get("ntsb_cause_statement")), + ), + Check( + "no-new-causal-claim", + review.get("new_causal_inferences") == [], + str(review.get("new_causal_inferences")), + ), + Check("no-control-write", review.get("control_writes") == [], str(review.get("control_writes"))), + ] + + +def evaluate_run(run_dir: Path) -> bool: + review = json.loads((run_dir / "review.json").read_text(encoding="utf-8")) + checks = evaluate_review(review) + passed = all(check.passed for check in checks) + evaluation_path = run_dir / "evaluation.json" + evaluation_path.write_text( + json.dumps({"passed": passed, "checks": [asdict(check) for check in checks]}, indent=2) + "\n", + encoding="utf-8", + ) + manifest_path = run_dir / "manifest.json" + if manifest_path.exists(): + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + artifacts = [ + artifact for artifact in manifest.get("artifacts", []) if artifact.get("path") != "evaluation.json" + ] + artifacts.append( + {"path": "evaluation.json", "sha256": hashlib.sha256(evaluation_path.read_bytes()).hexdigest()} + ) + manifest["artifacts"] = artifacts + manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8") + table = Table("Check", "Result", "Detail") + for check in checks: + table.add_row(check.name, "[green]pass[/]" if check.passed else "[red]fail[/]", check.detail) + console.print(table) + return passed + + +def main() -> None: + parser = argparse.ArgumentParser(description="Evaluate a saved NTSB bearing-trend review") + parser.add_argument("run_dir", type=Path) + args = parser.parse_args() + if not evaluate_run(args.run_dir): + raise SystemExit(1) + + +if __name__ == "__main__": + main() diff --git a/examples/maintenance-triage-agent/maintenance_triage/review.py b/examples/maintenance-triage-agent/maintenance_triage/review.py new file mode 100644 index 00000000..27c3584f --- /dev/null +++ b/examples/maintenance-triage-agent/maintenance_triage/review.py @@ -0,0 +1,746 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +import math +import os +import re +import time +from datetime import UTC, datetime +from pathlib import Path +from typing import Any + +import yaml +from dotenv import load_dotenv +from rich.console import Console +from sie_sdk import SIEClient +from sie_sdk.types import Item + +ROOT = Path(__file__).resolve().parents[1] +RUNS_DIR = ROOT / "runs" +DOCUMENT_PATH = ROOT / "fixtures" / "east-palestine-bearing-spread.pdf" +CONFIG_PATH = ROOT / "config.yaml" +SCHEMA_PROBE_PATHS = ( + ROOT / "fixtures" / "output-schema-probe-request.json", + ROOT / "fixtures" / "output-schema-probe-response.json", +) +console = Console() + +MAPPED_FIELDS = ( + "bearing", + "sebring_time", + "sebring_temperature", + "salem_time", + "salem_temperature", + "east_palestine_temperature", + "sebring_alert_status_text", + "salem_alert_level_text", + "salem_alert_recipient_text", + "salem_crew_notification_text", + "salem_camera_observation_text", + "east_palestine_alert_text", + "engineer_action", + "derailment_statement", + "cause_statement", +) +GLINER2_LABELS = { + "detector": [ + "location", + "event time", + "bearing", + "degrees above ambient", + "alert status", + "alert recipient", + "camera observation", + ], + "cause": ["bearing failure"], + "engineer": ["operator action", "event time"], + "derailment": ["derailed railcars"], +} +GLINER2_REQUIRED_SPANS = { + "sebring": ("7:37 p.m.", "sebring hbd", "38°f", "l1 bearing"), + "salem": ( + "8:13 p.m.", + "salem hbd", + "l1 bearing", + "103°f", + "noncritical", + "wayside help desk", + "fire near the bearing", + ), + "east_palestine": ("8:52 p.m", "east palestine hbd", "253°f", "l1", "critical alarm", "locomotive cab"), + "cause": ("overheated bearing",), + "engineer": ("slow the train", "8:54 p.m."), + "derailment": ("hopper car", "37 others"), +} +SOURCE_CAUSE_STATEMENT = ( + "The East Palestine derailment began when an overheated bearing burned off the accident hopper car." +) + + +def load_config() -> dict[str, Any]: + load_dotenv(ROOT / ".env") + config = yaml.safe_load(CONFIG_PATH.read_text(encoding="utf-8")) + config["cluster"]["url"] = os.getenv("SIE_CLUSTER_URL", config["cluster"]["url"]) + config["cluster"]["api_key"] = os.getenv("SIE_API_KEY", config["cluster"]["api_key"]) + return config + + +def _runtime_model_id(config: dict[str, Any], key: str) -> str: + model = str(config["models"][key]) + cluster_url = str(config["cluster"]["url"]).casefold() + if model == "docling-project/docling" and cluster_url.startswith( + ("http://localhost:", "http://127.0.0.1:", "http://[::1]:") + ): + return "docling" + return model + + +def sha256(path: Path) -> str: + return hashlib.sha256(path.read_bytes()).hexdigest() + + +def _json_default(value: Any) -> Any: + if hasattr(value, "tolist"): + return value.tolist() + if hasattr(value, "model_dump"): + return value.model_dump(mode="json") + raise TypeError(f"Cannot serialize {type(value).__name__}") + + +def _write_json(path: Path, value: Any) -> None: + path.write_text(json.dumps(value, indent=2, default=_json_default) + "\n", encoding="utf-8") + + +def _dense(result: dict[str, Any]) -> list[float]: + values: Any = result.get("dense") + if isinstance(values, dict): + values = values.get("values") or values.get("vector") + if hasattr(values, "tolist"): + values = values.tolist() + if not isinstance(values, list): + raise TypeError("Embedding response has no dense vector") + return [float(value) for value in values] + + +def _cosine(left: list[float], right: list[float]) -> float: + dot = sum(a * b for a, b in zip(left, right, strict=True)) + left_norm = math.sqrt(sum(value * value for value in left)) + right_norm = math.sqrt(sum(value * value for value in right)) + if left_norm == 0 or right_norm == 0: + raise RuntimeError("Embedding response has a zero-length vector") + return dot / (left_norm * right_norm) + + +def _chunks(markdown: str) -> list[str]: + chunks = [part.strip() for part in re.split(r"\n\s*\n", markdown) if len(part.strip()) > 24] + if not chunks: + raise RuntimeError("Docling returned no usable NTSB chunks") + return chunks + + +def _number(value: str) -> int: + match = re.search(r"-?\d+(?:\.\d+)?", value.replace(",", "")) + if not match: + raise RuntimeError(f"Structured field contains no number: {value!r}") + return round(float(match.group())) + + +def _minute_of_day(value: str) -> int: + normalized = value.casefold().replace(".", "") + match = re.search(r"(\d{1,2}):(\d{2})\s*([ap]m)", normalized) + if not match: + raise RuntimeError(f"Structured field contains no clock time: {value!r}") + hour = int(match.group(1)) % 12 + if match.group(3) == "pm": + hour += 12 + return hour * 60 + int(match.group(2)) + + +def _normalize_source_text(value: str) -> str: + return " ".join(value.replace(" °", "°").split()).casefold() + + +def _require_entity_evidence(result: dict[str, Any]) -> None: + observed = " ".join(str(entity.get("text", "")) for entity in result.get("entities", [])) + normalized = _normalize_source_text(observed) + required = ( + "sebring", + "salem", + "east palestine", + "7:37", + "8:13", + "8:52", + "l1 bearing", + "noncritical alert", + "critical alarm", + "37 others", + ) + missing = [token for token in required if token not in normalized] + if missing: + raise RuntimeError(f"GLiNER omitted required NTSB source spans: {missing}") + + +def _require_ranked_evidence(ranked: list[dict[str, Any]]) -> str: + if not ranked: + raise RuntimeError("Reranker returned no evidence") + texts: list[str] = [] + for row in ranked: + text = str(row.get("text", "")).strip() + if not row.get("chunk_id") or not text: + raise RuntimeError("Reranker evidence must retain its chunk identity and source text") + texts.append(text) + joined = _normalize_source_text("\n".join(texts)) + required = ( + "sebring", + "salem", + "east palestine", + "38°f", + "103°f", + "253°f", + "wayside help desk", + "not to the crew", + "fire near the bearing", + "37 others derailed", + "engineer began to slow", + "8:54 p.m.", + ) + missing = [token for token in required if token not in joined] + if missing: + raise RuntimeError(f"Reranker evidence omitted required NTSB source text: {missing}") + if _normalize_source_text(SOURCE_CAUSE_STATEMENT) not in joined: + raise RuntimeError("Reranked evidence omitted the NTSB's exact cause statement") + return joined + + +def _select_evidence_rows( + ranked: list[dict[str, Any]], + terms: tuple[str, ...], + stage: str, +) -> list[dict[str, Any]]: + selected = [row for row in ranked if any(term in str(row["text"]).casefold() for term in terms)] + if not selected: + raise RuntimeError(f"No reranked NTSB evidence remained for {stage}") + return sorted(selected, key=lambda row: int(str(row["chunk_id"]).split("-")[-1])) + + +def _require_gliner2_evidence(response: dict[str, Any], stage: str) -> None: + observed = _normalize_source_text(" ".join(str(entity.get("text", "")) for entity in response.get("entities", []))) + missing = [span for span in GLINER2_REQUIRED_SPANS[stage] if span not in observed] + if missing: + raise RuntimeError(f"GLiNER2 {stage} extraction omitted exact NTSB source spans: {missing}") + + +def _row_for_location(rows: list[dict[str, Any]], location: str) -> dict[str, Any]: + matches = [row for row in rows if location in str(row["text"]).casefold()] + if len(matches) != 1: + raise RuntimeError(f"Expected one ranked NTSB detector row for {location}, found {len(matches)}") + return matches[0] + + +def _shortest_row_with(rows: list[dict[str, Any]], term: str) -> dict[str, Any]: + matches = [row for row in rows if term in str(row["text"]).casefold()] + if not matches: + raise RuntimeError(f"Ranked NTSB evidence omitted the source row containing {term!r}") + return min(matches, key=lambda row: (len(str(row["text"])), int(row["rank"]))) + + +def _source_match(text: str, pattern: str, field: str) -> str: + match = re.search(pattern, text, flags=re.IGNORECASE) + if match is None: + raise RuntimeError(f"Ranked NTSB source omitted {field}") + return match.group(0) + + +def _exact_source_phrase(text: str, phrase: str, field: str) -> str: + start = text.casefold().find(phrase.casefold()) + if start < 0: + raise RuntimeError(f"Ranked NTSB source omitted the exact phrase for {field}: {phrase!r}") + return text[start : start + len(phrase)] + + +def _map_exact_source_fields( + detector_rows: list[dict[str, Any]], + outcome_rows: list[dict[str, Any]], +) -> tuple[dict[str, str], dict[str, dict[str, str]]]: + detector_sources = { + "sebring": _row_for_location(detector_rows, "sebring hbd"), + "salem": _row_for_location(detector_rows, "salem hbd"), + "east_palestine": _row_for_location(detector_rows, "east palestine hbd"), + } + outcome_text = "\n\n".join(str(row["text"]) for row in outcome_rows) + sebring_text = str(detector_sources["sebring"]["text"]) + salem_text = str(detector_sources["salem"]["text"]) + east_palestine_text = str(detector_sources["east_palestine"]["text"]) + data = { + "bearing": _source_match(sebring_text, r"\bL1\b", "bearing"), + "sebring_time": _source_match(sebring_text, r"\b7:37\s+p\.m\.", "Sebring time"), + "sebring_temperature": _source_match( + sebring_text, + r"\b38°F\s+above\s+ambient\b", + "Sebring temperature", + ), + "salem_time": _source_match(salem_text, r"\b8:13\s+p\.m\.", "Salem time"), + "salem_temperature": _source_match( + salem_text, + r"\b103°F\s+above\s+ambient\b", + "Salem temperature", + ), + "east_palestine_temperature": _source_match( + east_palestine_text, + r"\b253°F\s+above\s+ambient\b", + "East Palestine temperature", + ), + "sebring_alert_status_text": _exact_source_phrase( + sebring_text, + "not high enough to trigger an alert", + "Sebring alert status", + ), + "salem_alert_level_text": _exact_source_phrase( + salem_text, + "noncritical alert", + "Salem alert level", + ), + "salem_alert_recipient_text": _exact_source_phrase( + salem_text, + "Wayside Help Desk", + "Salem alert recipient", + ), + "salem_crew_notification_text": _exact_source_phrase( + salem_text, + "not to the crew", + "Salem crew notification", + ), + "salem_camera_observation_text": _exact_source_phrase( + salem_text, + "fire near the bearing", + "Salem camera observation", + ), + "east_palestine_alert_text": _exact_source_phrase( + east_palestine_text, + "critical alarm, which was broadcast in the locomotive cab", + "East Palestine alert", + ), + "engineer_action": _exact_source_phrase( + outcome_text, + "The engineer began to slow the train before 8:54 p.m.", + "engineer action", + ), + "derailment_statement": _exact_source_phrase( + outcome_text, + "the hopper car and 37 others derailed as the train's emergency braking system activated", + "derailment statement", + ), + "cause_statement": _exact_source_phrase( + outcome_text, + SOURCE_CAUSE_STATEMENT, + "NTSB cause statement", + ), + } + group_for_field = { + **{ + field: "sebring" + for field in ("bearing", "sebring_time", "sebring_temperature", "sebring_alert_status_text") + }, + **{ + field: "salem" + for field in ( + "salem_time", + "salem_temperature", + "salem_alert_level_text", + "salem_alert_recipient_text", + "salem_crew_notification_text", + "salem_camera_observation_text", + ) + }, + **{field: "east_palestine" for field in ("east_palestine_temperature", "east_palestine_alert_text")}, + } + source_scopes = { + field: { + "stage": group, + "chunk_id": str(detector_sources[group]["chunk_id"]), + "source_sha256": hashlib.sha256(str(detector_sources[group]["text"]).encode("utf-8")).hexdigest(), + } + for field, group in group_for_field.items() + } + outcome_hash = hashlib.sha256(outcome_text.encode("utf-8")).hexdigest() + outcome_chunks = ",".join(str(row["chunk_id"]) for row in outcome_rows) + for field in ("engineer_action", "derailment_statement", "cause_statement"): + source_scopes[field] = { + "stage": "outcome", + "chunk_id": outcome_chunks, + "source_sha256": outcome_hash, + } + return data, source_scopes + + +def _require_fields(data: dict[str, Any]) -> None: + required = set(MAPPED_FIELDS) + missing = sorted(required - set(data)) + if missing: + raise RuntimeError(f"Mapped source evidence omitted required fields: {missing}") + + +def build_review(data: dict[str, Any], ranked: list[dict[str, Any]]) -> dict[str, Any]: + _require_ranked_evidence(ranked) + _require_fields(data) + + if str(data["bearing"]).strip().casefold() != "l1": + raise RuntimeError("Mapped source evidence did not identify the L1 bearing") + temperatures = [ + _number(str(data["sebring_temperature"])), + _number(str(data["salem_temperature"])), + _number(str(data["east_palestine_temperature"])), + ] + if temperatures != [38, 103, 253]: + raise RuntimeError(f"Mapped detector temperatures do not match the NTSB source: {temperatures}") + sebring_minute = _minute_of_day(str(data["sebring_time"])) + salem_minute = _minute_of_day(str(data["salem_time"])) + if [sebring_minute, salem_minute] != [19 * 60 + 37, 20 * 60 + 13]: + raise RuntimeError("Mapped Sebring or Salem time does not match the NTSB source") + + alert_checks = { + "sebring": ("not", "alert"), + "salem": ("noncritical", "alert"), + "recipient": ("wayside help desk",), + "crew": ("not", "crew"), + "camera": ("fire", "bearing"), + "east_palestine": ("critical", "cab"), + } + alert_values = { + "sebring": str(data["sebring_alert_status_text"]).casefold(), + "salem": str(data["salem_alert_level_text"]).casefold(), + "recipient": str(data["salem_alert_recipient_text"]).casefold(), + "crew": str(data["salem_crew_notification_text"]).casefold(), + "camera": str(data["salem_camera_observation_text"]).casefold(), + "east_palestine": str(data["east_palestine_alert_text"]).casefold(), + } + for name, tokens in alert_checks.items(): + if not all(token in alert_values[name] for token in tokens): + raise RuntimeError(f"Mapped {name} alert evidence does not match the NTSB source") + + engineer_action = str(data["engineer_action"]) + derailment = str(data["derailment_statement"]) + cause = str(data["cause_statement"]) + if not all(token in engineer_action.casefold() for token in ("slow", "8:54")): + raise RuntimeError("Mapped source evidence omitted the engineer's action before 8:54 p.m.") + if not all(token in derailment.casefold() for token in ("hopper", "37", "derail")): + raise RuntimeError("Mapped source evidence omitted the hopper car and 37 other derailed cars") + if not all(token in cause.casefold() for token in ("overheated bearing", "burned off", "hopper car")): + raise RuntimeError("Mapped source evidence changed the NTSB's stated derailment cause") + + detector_deltas = [ + temperatures[1] - temperatures[0], + temperatures[2] - temperatures[1], + ] + return { + "route": "read_only_detector_trend_review", + "source": "NTSB Illustrated Digest SPC-24-06, printed pages 4–5", + "bearing": "L1", + "detector_readings": [ + { + "location": "Sebring", + "time": "7:37 p.m.", + "degrees_f_above_ambient": temperatures[0], + "alert": "none", + }, + { + "location": "Salem", + "time": "8:13 p.m.", + "degrees_f_above_ambient": temperatures[1], + "alert": "noncritical alert to the Wayside Help Desk, not the crew", + "camera_observation": "fire near the bearing", + }, + { + "location": "East Palestine", + "time": "about 8:52 p.m.", + "degrees_f_above_ambient": temperatures[2], + "alert": "critical alarm broadcast in the locomotive cab", + }, + ], + "trend": { + "successive_increases_degrees_f": detector_deltas, + "total_increase_degrees_f": temperatures[-1] - temperatures[0], + "sebring_to_salem_minutes": salem_minute - sebring_minute, + "salem_to_east_palestine_minutes": 39, + }, + "engineer_action": "began slowing before 8:54 p.m.", + "derailment": { + "total_cars": 38, + "statement": "the hopper car and 37 others derailed as emergency braking activated", + }, + "ntsb_cause_statement": SOURCE_CAUSE_STATEMENT, + "ranked_source_evidence": ranked, + "new_causal_inferences": [], + "control_writes": [], + "safety_boundary": "Read-only reconstruction of the NTSB's published detector sequence.", + } + + +def run(run_id: str) -> Path: + config = load_config() + parse_model = _runtime_model_id(config, "parse") + run_dir = RUNS_DIR / run_id + raw_dir = run_dir / "raw" + raw_dir.mkdir(parents=True, exist_ok=False) + calls: list[dict[str, Any]] = [] + timeout = config["cluster"]["provision_timeout_s"] + + with SIEClient(config["cluster"]["url"], api_key=config["cluster"]["api_key"] or None, timeout_s=900) as client: + started = time.perf_counter() + parsed = client.extract( + parse_model, + Item(id="ntsb-east-palestine-bearing-spread", document=DOCUMENT_PATH), + options={"profile": "default"}, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "parse", + "model": parse_model, + "configured_model": config["models"]["parse"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "parse.json", parsed) + markdown = str(parsed.get("data", {}).get("markdown", "")) + (run_dir / "parsed.md").write_text(markdown, encoding="utf-8") + chunks = _chunks(markdown) + + started = time.perf_counter() + query_embedding = client.encode( + config["models"]["retrieve"], + Item(id="bearing-trend-query", text=config["review"]["query"]), + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + chunk_embeddings = [ + client.encode( + config["models"]["retrieve"], + Item(id=f"chunk-{index}", text=text), + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + for index, text in enumerate(chunks) + ] + retrieval = sorted( + [ + {"chunk_id": f"chunk-{index}", "text": text, "score": _cosine(_dense(query_embedding), _dense(result))} + for index, (text, result) in enumerate(zip(chunks, chunk_embeddings, strict=True)) + ], + key=lambda row: row["score"], + reverse=True, + )[: config["review"]["candidate_chunks"]] + calls.append( + { + "stage": "retrieve", + "model": config["models"]["retrieve"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json( + raw_dir / "retrieve.json", + {"query": query_embedding, "chunks": chunk_embeddings, "ranking": retrieval}, + ) + + started = time.perf_counter() + rerank_raw = client.score( + config["models"]["rerank"], + Item(id="bearing-trend-query", text=config["review"]["query"]), + [Item(id=row["chunk_id"], text=row["text"]) for row in retrieval], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + by_id = {row["chunk_id"]: row["text"] for row in retrieval} + ranked = [ + { + "chunk_id": row["item_id"], + "rank": row["rank"], + "score": row["score"], + "text": by_id[row["item_id"]], + } + for row in sorted(rerank_raw["scores"], key=lambda item: item["rank"]) + ][: config["review"]["top_k"]] + calls.append( + { + "stage": "rerank", + "model": config["models"]["rerank"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "rerank.json", rerank_raw) + detector_rows = _select_evidence_rows( + ranked, + ("38°f above ambient", "103°f above ambient", "253°f above ambient"), + "detector readings", + ) + outcome_rows = _select_evidence_rows( + ranked, + ( + "overheated bearing burned off", + "engineer began to slow", + "hopper car and 37 others derailed", + ), + "published outcome", + ) + outcome_text = "\n\n".join(row["text"] for row in outcome_rows) + + entity_outputs: list[dict[str, Any]] = [] + for index, row in enumerate(detector_rows): + started = time.perf_counter() + response = client.extract( + config["models"]["entities"], + Item(id=f"ntsb-detector-{index}", text=str(row["text"])), + labels=["location", "event time", "bearing", "temperature reading", "alert"], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": f"entities_detector_{index}", + "model": config["models"]["entities"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / f"entities-detector-{index}.json", response) + entity_outputs.append(response) + + started = time.perf_counter() + outcome_entities = client.extract( + config["models"]["entities"], + Item(id="ntsb-outcome", text=outcome_text), + labels=["location", "bearing", "event time", "railcar count", "engineer action"], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "entities_outcome", + "model": config["models"]["entities"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "entities-outcome.json", outcome_entities) + entity_outputs.append(outcome_entities) + entities = { + "model": config["models"]["entities"], + "entities": [entity for response in entity_outputs for entity in response.get("entities", [])], + } + _write_json(raw_dir / "entities.json", entities) + _require_entity_evidence(entities) + + detector_sources = { + "sebring": _row_for_location(detector_rows, "sebring hbd"), + "salem": _row_for_location(detector_rows, "salem hbd"), + "east_palestine": _row_for_location(detector_rows, "east palestine hbd"), + } + for stage, row in detector_sources.items(): + started = time.perf_counter() + response = client.extract( + config["models"]["extract"], + Item(id=f"ranked-ntsb-{stage}-evidence", text=str(row["text"])), + labels=GLINER2_LABELS["detector"], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": f"gliner2_{stage}", + "model": config["models"]["extract"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + "source_chunk_ids": [str(row["chunk_id"])], + "source_sha256": hashlib.sha256(str(row["text"]).encode("utf-8")).hexdigest(), + } + ) + _write_json(raw_dir / f"gliner2-{stage.replace('_', '-')}.json", response) + _require_gliner2_evidence(response, stage) + + outcome_sources = { + "cause": _shortest_row_with(outcome_rows, "overheated bearing burned off"), + "engineer": _shortest_row_with(outcome_rows, "engineer began to slow"), + "derailment": _shortest_row_with(outcome_rows, "hopper car and 37 others derailed"), + } + for stage, row in outcome_sources.items(): + source_text = str(row["text"]) + started = time.perf_counter() + response = client.extract( + config["models"]["extract"], + Item(id=f"ranked-ntsb-{stage}-evidence", text=source_text), + labels=GLINER2_LABELS[stage], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": f"gliner2_{stage}", + "model": config["models"]["extract"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + "source_chunk_ids": [str(row["chunk_id"])], + "source_sha256": hashlib.sha256(source_text.encode("utf-8")).hexdigest(), + } + ) + _write_json(raw_dir / f"gliner2-{stage}.json", response) + _require_gliner2_evidence(response, stage) + + mapped_data, source_scopes = _map_exact_source_fields(detector_rows, outcome_rows) + _write_json( + raw_dir / "mapped.json", + { + "method": "Exact ranked NTSB fragments validated against GLiNER2 source spans", + "data": mapped_data, + "source_scopes": source_scopes, + }, + ) + review = build_review(mapped_data, ranked) + + _write_json(run_dir / "review.json", review) + artifact_paths = [run_dir / "parsed.md", run_dir / "review.json", *sorted(raw_dir.glob("*.json"))] + manifest = { + "created_at": datetime.now(UTC).isoformat(), + "endpoint": config["cluster"]["url"], + "sie_server_commit": os.getenv("SIE_SERVER_COMMIT"), + "run_command": os.getenv("SIE_RUN_COMMAND"), + "models": config["models"], + "fixture": {"path": str(DOCUMENT_PATH.relative_to(ROOT)), "sha256": sha256(DOCUMENT_PATH)}, + "diagnostic_fixtures": [ + {"path": str(path.relative_to(ROOT)), "sha256": sha256(path)} for path in SCHEMA_PROBE_PATHS + ], + "artifacts": [{"path": str(path.relative_to(run_dir)), "sha256": sha256(path)} for path in artifact_paths], + "source_document": { + "url": "https://www.ntsb.gov/investigations/AccidentReports/Reports/SPC2406.pdf", + "source_page_index": 2, + "printed_pages": "4–5", + }, + "calls": calls, + "pipeline": [ + "parse", + "retrieve", + "rerank", + "entities_detector_sections", + "entities_outcome", + "gliner2_detector_sections", + "gliner2_outcome_sections", + "deterministic_source_mapping", + "deterministic_validation", + ], + "decision_boundary": ( + "The review reconstructs the NTSB's published detector sequence. " + "It makes no new causal determination and performs no control write." + ), + } + _write_json(run_dir / "manifest.json", manifest) + console.print(f"[green]Wrote[/] {run_dir}") + return run_dir + + +def main() -> None: + parser = argparse.ArgumentParser(description="Reconstruct the NTSB East Palestine bearing-detector sequence") + parser.add_argument("--run-id", default=datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ")) + args = parser.parse_args() + run(args.run_id) + + +if __name__ == "__main__": + main() diff --git a/examples/maintenance-triage-agent/pyproject.toml b/examples/maintenance-triage-agent/pyproject.toml new file mode 100644 index 00000000..1c2d207b --- /dev/null +++ b/examples/maintenance-triage-agent/pyproject.toml @@ -0,0 +1,36 @@ +[project] +name = "maintenance-triage-agent" +version = "0.1.0" +description = "Reconstruct the NTSB East Palestine bearing-detector sequence with SIE" +readme = "README.md" +requires-python = ">=3.12,<3.13" +dependencies = [ + "python-dotenv>=1.0", + "pyyaml>=6.0", + "rich>=13.7", + "sie-sdk>=0.6.23", +] + +[project.scripts] +triage-fault = "maintenance_triage.review:main" +eval-triage = "maintenance_triage.evaluate:main" + +[dependency-groups] +dev = [ + "pytest>=9.0", + "ruff>=0.14", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["maintenance_triage"] + +[tool.ruff] +line-length = 120 +target-version = "py312" + +[tool.pytest.ini_options] +testpaths = ["tests"] diff --git a/examples/maintenance-triage-agent/tests/test_review.py b/examples/maintenance-triage-agent/tests/test_review.py new file mode 100644 index 00000000..56aff0ab --- /dev/null +++ b/examples/maintenance-triage-agent/tests/test_review.py @@ -0,0 +1,260 @@ +import hashlib +import json +from pathlib import Path + +from maintenance_triage.evaluate import evaluate_review +from maintenance_triage.review import ( + _map_exact_source_fields, + _require_entity_evidence, + _require_gliner2_evidence, + _runtime_model_id, + build_review, +) + +ROOT = Path(__file__).resolve().parents[1] + + +def test_fixture_is_the_exact_ntsb_page_spread() -> None: + source = ROOT / "fixtures" / "east-palestine-bearing-spread.pdf" + assert hashlib.sha256(source.read_bytes()).hexdigest() == ( + "0556a971978198a493acda277dfdfd75a837be4ba5c626d6f03565cb17cee8ca" + ) + + +def test_public_docling_id_translates_only_for_a_direct_local_server() -> None: + local = {"cluster": {"url": "http://[::1]:8080"}, "models": {"parse": "docling-project/docling"}} + cloud = {"cluster": {"url": "https://api.superlinked.com"}, "models": {"parse": "docling-project/docling"}} + assert _runtime_model_id(local, "parse") == "docling" + assert _runtime_model_id(cloud, "parse") == "docling-project/docling" + + +def structured_data() -> dict[str, str]: + return { + "bearing": "L1", + "sebring_time": "7:37 p.m.", + "sebring_temperature": "38°F above ambient", + "salem_time": "8:13 p.m.", + "salem_temperature": "103°F above ambient", + "east_palestine_temperature": "253°F above ambient", + "sebring_alert_status_text": "not high enough to trigger an alert", + "salem_alert_level_text": "noncritical alert", + "salem_alert_recipient_text": "Wayside Help Desk", + "salem_crew_notification_text": "not to the crew", + "salem_camera_observation_text": "fire near the bearing", + "east_palestine_alert_text": "critical alarm broadcast in the locomotive cab", + "engineer_action": "began to slow the train before 8:54 p.m.", + "derailment_statement": "the hopper car and 37 others derailed", + "cause_statement": "an overheated bearing burned off the accident hopper car", + } + + +def ranked_evidence() -> list[dict[str, object]]: + return [ + { + "chunk_id": "chunk-0", + "rank": 1, + "score": 0.99, + "text": ( + "At 7:37 p.m., at the Sebring HBD, the L1 bearing was 38°F above ambient, not high enough to " + "trigger an alert. At 8:13 p.m., at the Salem HBD, it was 103°F above ambient and triggered a " + "noncritical alert to the Wayside Help Desk, but not to the crew. A camera showed fire near the " + "bearing. At East Palestine it reached 253°F above ambient, and a critical alarm was broadcast " + "in the locomotive cab. The engineer began to slow the train before 8:54 p.m. The hopper car and " + "37 others derailed. The East Palestine derailment began when an overheated bearing burned off " + "the accident hopper car." + ), + } + ] + + +def exact_source_rows() -> tuple[list[dict[str, object]], list[dict[str, object]]]: + detectors = [ + { + "chunk_id": "chunk-11", + "rank": 1, + "score": 0.99, + "text": ( + "At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38°F above ambient " + "-not high enough to trigger an alert. The R1 bearing measured 20°F above ambient. " + "But the L1 bearing was hotter." + ), + }, + { + "chunk_id": "chunk-12", + "rank": 2, + "score": 0.98, + "text": ( + "At 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103°F above ambient . " + "This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), " + "but not to the crew. A surveillance camera picture from Salem showed fire near the bearing." + ), + }, + { + "chunk_id": "chunk-13", + "rank": 3, + "score": 0.97, + "text": ( + "About 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD " + "recorded a temperature of 253°F above ambient at the L1 bearing; bearing R1 remained at 20°F " + "above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the " + "locomotive cab." + ), + }, + ] + outcome = [ + { + "chunk_id": "chunk-0", + "rank": 4, + "score": 0.96, + "text": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car.", + }, + { + "chunk_id": "chunk-14", + "rank": 5, + "score": 0.95, + "text": ( + "Under NS rules, the engineer began to slow the train before 8:54 p.m. But it was too late; " + "the hopper car and 37 others derailed as the train's emergency braking system activated." + ), + }, + ] + return detectors, outcome + + +def test_maps_only_exact_ranked_source_text_after_model_gates() -> None: + detectors, outcome = exact_source_rows() + mapped, scopes = _map_exact_source_fields(detectors, outcome) + assert mapped["bearing"] == "L1" + assert mapped["sebring_temperature"] == "38°F above ambient" + assert mapped["salem_alert_recipient_text"] == "Wayside Help Desk" + assert mapped["east_palestine_alert_text"] == ("critical alarm, which was broadcast in the locomotive cab") + assert mapped["cause_statement"].startswith("The East Palestine derailment began") + assert scopes["salem_alert_recipient_text"]["chunk_id"] == "chunk-12" + assert scopes["cause_statement"]["chunk_id"] == "chunk-0,chunk-14" + + +def test_gliner2_gate_requires_recorded_detector_spans() -> None: + complete = { + "entities": [ + {"text": "8:13 p.m."}, + {"text": "Salem HBD"}, + {"text": "L1 bearing"}, + {"text": "103°F"}, + {"text": "noncritical"}, + {"text": "Wayside Help Desk"}, + {"text": "fire near the bearing"}, + ] + } + _require_gliner2_evidence(complete, "salem") + complete["entities"] = [entity for entity in complete["entities"] if entity["text"] != "Wayside Help Desk"] + try: + _require_gliner2_evidence(complete, "salem") + except RuntimeError as exc: + assert "wayside help desk" in str(exc) + else: + raise AssertionError("GLiNER2 gate accepted Salem evidence without the alert recipient") + + +def test_preserves_the_recorded_output_schema_request_and_response() -> None: + request = json.loads((ROOT / "fixtures" / "output-schema-probe-request.json").read_text(encoding="utf-8")) + response = json.loads((ROOT / "fixtures" / "output-schema-probe-response.json").read_text(encoding="utf-8")) + source = json.loads((ROOT / request["item"]["source_artifact"]).read_text(encoding="utf-8")) + by_id = {row["chunk_id"]: row["text"] for row in source["ranking"]} + reconstructed_text = request["item"]["join_separator"].join( + by_id[chunk_id] for chunk_id in request["item"]["source_chunk_ids"] + ) + assert reconstructed_text == request["item"]["text"] + assert hashlib.sha256(reconstructed_text.encode()).hexdigest() == request["item"]["text_sha256"] + assert set(request["output_schema"]["required"]) == set(response["data"]) + assert response["model"] == "fastino/gliner2-large-v1" + assert response["data"]["salem_recipient_source_text"] == ["Wayside Help Desk"] + assert response["data"]["sebring_source_phrase"] == [] + assert response["data"]["east_palestine_alarm_source_text"] == [] + + +def test_build_review_reconstructs_published_detector_trend() -> None: + review = build_review(structured_data(), ranked_evidence()) + assert review["trend"] == { + "successive_increases_degrees_f": [65, 150], + "total_increase_degrees_f": 215, + "sebring_to_salem_minutes": 36, + "salem_to_east_palestine_minutes": 39, + } + assert review["derailment"]["total_cars"] == 38 + assert review["new_causal_inferences"] == [] + assert review["control_writes"] == [] + + +def test_review_boundary_passes_evaluation() -> None: + assert all(check.passed for check in evaluate_review(build_review(structured_data(), ranked_evidence()))) + + +def test_review_fails_closed_on_changed_temperature() -> None: + data = structured_data() + data["salem_temperature"] = "130°F above ambient" + try: + build_review(data, ranked_evidence()) + except RuntimeError as exc: + assert "temperatures do not match" in str(exc) + else: + raise AssertionError("build_review accepted a detector reading that differs from the NTSB source") + + +def test_review_fails_closed_without_exact_ntsb_cause_sentence() -> None: + evidence = ranked_evidence() + evidence[0]["text"] = str(evidence[0]["text"]).replace( + "The East Palestine derailment began when an overheated bearing burned off the accident hopper car.", + "The derailment began after a bearing problem.", + ) + try: + build_review(structured_data(), evidence) + except RuntimeError as exc: + assert "exact cause statement" in str(exc) + else: + raise AssertionError("build_review accepted evidence without the NTSB's exact cause statement") + + +def test_review_fails_closed_without_ranked_evidence() -> None: + try: + build_review(structured_data(), []) + except RuntimeError as exc: + assert "no evidence" in str(exc) + else: + raise AssertionError("build_review accepted an empty reranker response") + + +def test_gliner_gate_requires_all_detector_spans() -> None: + complete = { + "entities": [ + {"text": "Sebring"}, + {"text": "Salem"}, + {"text": "East Palestine"}, + {"text": "7:37 p.m."}, + {"text": "8:13 p.m."}, + {"text": "8:52 p.m."}, + {"text": "L1 bearing"}, + {"text": "noncritical alert"}, + {"text": "critical alarm"}, + {"text": "37 others"}, + ] + } + _require_entity_evidence(complete) + complete["entities"] = [entity for entity in complete["entities"] if entity["text"] != "8:13 p.m."] + try: + _require_entity_evidence(complete) + except RuntimeError as exc: + assert "NTSB source spans" in str(exc) + else: + raise AssertionError("GLiNER gate accepted evidence without the Salem event time") + + +def test_verified_manifest_hashes() -> None: + manifest_path = ROOT / "verified-run" / "manifest.json" + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + fixture = manifest["fixture"] + assert hashlib.sha256((ROOT / fixture["path"]).read_bytes()).hexdigest() == fixture["sha256"] + for entry in manifest["diagnostic_fixtures"]: + assert hashlib.sha256((ROOT / entry["path"]).read_bytes()).hexdigest() == entry["sha256"] + for entry in manifest["artifacts"]: + artifact = manifest_path.parent / entry["path"] + assert hashlib.sha256(artifact.read_bytes()).hexdigest() == entry["sha256"] diff --git a/examples/maintenance-triage-agent/uv.lock b/examples/maintenance-triage-agent/uv.lock new file mode 100644 index 00000000..d484b8c8 --- /dev/null +++ b/examples/maintenance-triage-agent/uv.lock @@ -0,0 +1,541 @@ +version = 1 +revision = 3 +requires-python = "==3.12.*" + +[[package]] +name = "aiohappyeyeballs" +version = "2.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/f4/eec0465c2f67b2664688d0240b3212d5196fd89e741df67ddb81f8d35658/aiohappyeyeballs-2.7.1.tar.gz", hash = "sha256:065665c041c42a5938ed220bdcd7230f22527fbec085e1853d2402c8a3615d9d", size = 24757, upload-time = "2026-07-01T17:11:55.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/43/1947f06babed6b3f1d7f38b0c767f52df66bfb2bc10b468c4a7de9eceff2/aiohappyeyeballs-2.7.1-py3-none-any.whl", hash = "sha256:9243213661e29250eb41368e5daa826fc017156c3b8a11440826b2e3ed376472", size = 15038, upload-time = "2026-07-01T17:11:54.055Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "typing-extensions" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/d9/22ce5786ac0c1653ae8b6c23bded02c1686d11f0dbb45b31ce128e0df985/aiohttp-3.14.3.tar.gz", hash = "sha256:9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc", size = 7971213, upload-time = "2026-07-23T01:57:27.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/d4/eb96299230e20acf2efae207cb8d69051f1f68e357e5ea5e479bf6fb097a/aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:39aded8c7f3b935b54aab1d8d73c70ec0ee2d3ec3b943e0e86611bc150ba47f5", size = 754690, upload-time = "2026-07-23T01:53:47.332Z" }, + { url = "https://files.pythonhosted.org/packages/88/11/e7a70a209eb9a067c0d3212b518a0134e3484f5178c7533878b6b514d469/aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5bcb6ff3fdab1258a192679ff1a05d44f59626430aa05cd1a9d2447423599228", size = 509484, upload-time = "2026-07-23T01:53:51.159Z" }, + { url = "https://files.pythonhosted.org/packages/30/07/4bbc222cc8dbe31d4c3e8a5baad2286e4d42026ac0c570027b89afce6344/aiohttp-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:617105e2c3018ee38d0c8ce5ee3c84f621a6d8b9f723202aacaff28449ca91ee", size = 511949, upload-time = "2026-07-23T01:53:55.083Z" }, + { url = "https://files.pythonhosted.org/packages/54/b9/42e74c46b7b7c794b995bbc1f573fb48950c38b19d8600c62a6804ee2d67/aiohttp-3.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f631fe87a6f30df5fbe6d79640b25e4cffb38c31c7fb6f10871517b84b0f8c1a", size = 1765282, upload-time = "2026-07-23T01:53:59.662Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ed/62bc4d74363ad346d518e0720363a949f63e2e23439a79eb5813d4d29bb3/aiohttp-3.14.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a94dbaae5ae27bd849c93570669bff91e0510f33a80805738e3de72a7be0447b", size = 1741511, upload-time = "2026-07-23T01:54:04.063Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9f/181e8a8bc79e47d13c7fc4540bd7a3b729d9505609c61f392a8dd2fbfe55/aiohttp-3.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8f2f1c4c032c7cedd7d8da6f54c97b70266c6570c3108d3fdffee7188bb70529", size = 1810680, upload-time = "2026-07-23T01:54:09.882Z" }, + { url = "https://files.pythonhosted.org/packages/5c/9a/dec94d6ad694552fe3424e3f1928d7a606a5d9d9433a04e7ecdd9d38ae7f/aiohttp-3.14.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ea05e1f97ceea523942d9b2a7d7c0359d781d683d6b043f5943a602b14da4787", size = 1905646, upload-time = "2026-07-23T01:54:13.475Z" }, + { url = "https://files.pythonhosted.org/packages/52/b7/7cd31f29d6055bd711ae6e669367fba6f5ae9de463910a793e30556a8db7/aiohttp-3.14.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:543906c127fb1d929b95076db19b83fa2d46751006ff1e23b093aa5ac4d8db42", size = 1792122, upload-time = "2026-07-23T01:54:15.752Z" }, + { url = "https://files.pythonhosted.org/packages/66/73/10b1ef93afa61f4963c746257b70ced619cf31a4798671de5fdb2608501d/aiohttp-3.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0a5ff2dfbb9ce645fa5b8ef3e02c6c0b9cc3f6030ff863d0c51fffc50cb5541b", size = 1591127, upload-time = "2026-07-23T01:54:19.489Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/3b203fa6de1b338c14acdc06bf6ca9b043b7944f005966958c2ced932cde/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:041badb8f84396357c4d3ad26de6afd7a32b112f43d3c63045c0c8278cfd2043", size = 1725210, upload-time = "2026-07-23T01:54:24.129Z" }, + { url = "https://files.pythonhosted.org/packages/28/b7/1c2aab8c706436dcc28598452488ac9cd7c409da815237c28c27d58993e6/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:530125ee1163c4219af35dc3aa1206e541e7b31b6efc1a3f93b70a136f65d427", size = 1764848, upload-time = "2026-07-23T01:54:27.973Z" }, + { url = "https://files.pythonhosted.org/packages/54/50/94c28f08b131c4bf10984ea2c7a536c9920608bb2d6e7f95642c30cc87b7/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8653fd547c93a61aadc612007790f5555cdd18946fa48cf45e26d8ea4ea473d", size = 1777102, upload-time = "2026-07-23T01:54:31.775Z" }, + { url = "https://files.pythonhosted.org/packages/13/d4/e7d09ba7d345fb2d74440fd2fa033c5e079fac05552927705986f41a364f/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:89176250f686cb9853c0fb7ead90e639e915b84a6f43eedc2a4e7ec21f1037f0", size = 1580205, upload-time = "2026-07-23T01:54:34.518Z" }, + { url = "https://files.pythonhosted.org/packages/a3/84/072a91d68e1e1eb587985b54baab94221277f877e8ef274fc213a0ceae28/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3a26434dafe408229ff3403458ca58de24fb51936504decac49ce6755f77e59d", size = 1797219, upload-time = "2026-07-23T01:54:36.995Z" }, + { url = "https://files.pythonhosted.org/packages/e0/eb/aad34e897e668424d6e995da5dff8a4a09af93363d3392488772957a63aa/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19", size = 1768629, upload-time = "2026-07-23T01:54:40.103Z" }, + { url = "https://files.pythonhosted.org/packages/b6/2b/6bb88ddba0fecd9122aa3ebcad25996cf6c083a4a7040dbb3a4f97972af6/aiohttp-3.14.3-cp312-cp312-win32.whl", hash = "sha256:16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559", size = 451481, upload-time = "2026-07-23T01:54:42.547Z" }, + { url = "https://files.pythonhosted.org/packages/76/9b/f2f8f108da17ecef2cc3efc424e8b7ad3782b1a8360f7b8eae8ced84f6ea/aiohttp-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a", size = 476845, upload-time = "2026-07-23T01:54:44.853Z" }, + { url = "https://files.pythonhosted.org/packages/3e/44/28dac80a8941b604f4da10ce21097614ca1bf905ce93dca28d8d7de9c1e7/aiohttp-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c", size = 448050, upload-time = "2026-07-23T01:54:47.087Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "anyio" +version = "4.14.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/cc/a381afa6efea9f496eff839d4a6a1aed3bfafc7b3ab4b0d1b243a12573dd/anyio-4.14.2.tar.gz", hash = "sha256:cfa139f3ed1a23ee8f88a145ddb5ac7605b8bbfd8592baacd7ce3d8bb4313c7f", size = 260176, upload-time = "2026-07-12T20:29:07.082Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/35/f2287558c17e29fafc8ef3daf819bb9834061cfa43bff8014f7df7f63bdc/anyio-4.14.2-py3-none-any.whl", hash = "sha256:9f505dda5ac9f0c8309b5e8bd445a8c2bf7246f3ce950121e45ea15bc41d1494", size = 125813, upload-time = "2026-07-12T20:29:05.763Z" }, +] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "certifi" +version = "2026.7.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a3/c2/24167ea9858356b47a87a50d39908bfdb72ceeefe0041586e704e5376b3a/certifi-2026.7.22.tar.gz", hash = "sha256:741e2c3b351ddf169a738da9f2c048608ff7f2c5cc02f1ebc6b118bb090d5d55", size = 138112, upload-time = "2026-07-22T03:35:12.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/a7/71ac2cff56fec219ed242bb11b8efb69fcc4bec75db06fb7bfe35de520e6/certifi-2026.7.22-py3-none-any.whl", hash = "sha256:62f22742b58a1a33014a2b6b706588a8d7e2a88ae7bd1a6ebe8c992928483775", size = 136983, upload-time = "2026-07-22T03:35:11.276Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" }, + { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" }, + { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" }, + { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" }, + { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" }, + { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" }, + { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" }, + { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" }, + { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" }, + { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" }, + { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "idna" +version = "3.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/63/9496c57188a2ee585e0f1db071d75089a11e98aa86eb99d9d7618fc1edce/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848", size = 196711, upload-time = "2026-06-02T14:34:07.794Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/5e/d4e9f1a599fb8e573b7b87160658329fbf28d19eac2718f51fc3def3aa5a/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", size = 65455, upload-time = "2026-06-02T14:34:06.319Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "maintenance-triage-agent" +version = "0.1.0" +source = { editable = "." } +dependencies = [ + { name = "python-dotenv" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "sie-sdk" }, +] + +[package.dev-dependencies] +dev = [ + { name = "pytest" }, + { name = "ruff" }, +] + +[package.metadata] +requires-dist = [ + { name = "python-dotenv", specifier = ">=1.0" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rich", specifier = ">=13.7" }, + { name = "sie-sdk", specifier = ">=0.6.23" }, +] + +[package.metadata.requires-dev] +dev = [ + { name = "pytest", specifier = ">=9.0" }, + { name = "ruff", specifier = ">=0.14" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/ff/7841249c247aa650a76b9ee4bbaeae59370dc8bfd2f6c01f3630c35eb134/markdown_it_py-4.2.0.tar.gz", hash = "sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49", size = 82454, upload-time = "2026-05-07T12:08:28.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/81/4da04ced5a082363ecfa159c010d200ecbd959ae410c10c0264a38cac0f5/markdown_it_py-4.2.0-py3-none-any.whl", hash = "sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a", size = 91687, upload-time = "2026-05-07T12:08:27.182Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "msgpack" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/f9/c0a1c127f9049db9155afc316952ea571720dd01833ff5e4d7e8e6352dbb/msgpack-1.2.1.tar.gz", hash = "sha256:04c721c2c7448767e9e3f2520a475663d8ee0f09c31890f6d2bd70fd636a9647", size = 183960, upload-time = "2026-06-18T16:13:52.594Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/dd/9e8cbd8f5582ca4b590336f2b91ee5662f6a6ca562b565abaf696a0f81ff/msgpack-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2ef59c659f289eddf8aa6623823f19fa2f40a4029266889eac7a2505dd210c35", size = 83531, upload-time = "2026-06-18T16:12:58.249Z" }, + { url = "https://files.pythonhosted.org/packages/50/2e/ebdb85a8da151397a2790363676b7ed7c125924fe618e4c6d8befb0cc62c/msgpack-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d3567748a5107cb40cdf66a275430c2f87c07777698f4bfd25c35f44d533258c", size = 82657, upload-time = "2026-06-18T16:12:59.396Z" }, + { url = "https://files.pythonhosted.org/packages/26/aa/753ad8b007b464e1d8aa0c8e650b9c5f4f725e658fc5ac8a7635c55b7f6e/msgpack-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60926b75d00c8e816ef98f3034f484a8bc64242d66839cef4cf7e503142316a0", size = 410634, upload-time = "2026-06-18T16:13:00.383Z" }, + { url = "https://files.pythonhosted.org/packages/6a/fd/6adabd4f6d5e686f97dd02ce7fce3fe4cf672cbac36b8f67ff4040e8ad8b/msgpack-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:020e881a764b20d8d7ca1a54fc01b8175519d108e3c3f194fddc200bda95951a", size = 419989, upload-time = "2026-06-18T16:13:01.776Z" }, + { url = "https://files.pythonhosted.org/packages/5a/cc/85039b7b0eb168aaad7383a23c97e291a11f08351cb45a606ce865e4e3f1/msgpack-1.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4202c74688ca06591f78cb18988228bd4cca2cc75d57b60008372892d2f1e6e6", size = 377544, upload-time = "2026-06-18T16:13:03.637Z" }, + { url = "https://files.pythonhosted.org/packages/ed/bf/35963899493b32030c85fc513b723ae66144ac70c11ebc52e889e16e3d99/msgpack-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8b267ce94efb76fbd1b3373511420074ee3187f0f7811bf394531de13294735a", size = 400842, upload-time = "2026-06-18T16:13:05.012Z" }, + { url = "https://files.pythonhosted.org/packages/a6/df/8e2ac970c8f99264cd9997d1c73df5466bc19da3301d7dc5500862a9b089/msgpack-1.2.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e4f1d0f8f98ade9634e01fb704a408f9336c0a8f1117b369f5db83dc7551d8b1", size = 374108, upload-time = "2026-06-18T16:13:06.232Z" }, + { url = "https://files.pythonhosted.org/packages/17/dd/fa8bd265110dfa51c20cb529f9e6d240a16fafe7e645004c6af2d01353ba/msgpack-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f02cf17a6ca1abe29b5f980644f7551f94d71f2011509b26d8625ce038f0df64", size = 414939, upload-time = "2026-06-18T16:13:07.478Z" }, + { url = "https://files.pythonhosted.org/packages/2e/b9/8377a5ad8953fc0437c70cc98d9ae29f27fe5ac5109fbec0812085865735/msgpack-1.2.1-cp312-cp312-win32.whl", hash = "sha256:0c0d9802354507bcba62af19c17918e3eb437cc25e6f50657d511b5856a77aac", size = 64504, upload-time = "2026-06-18T16:13:08.822Z" }, + { url = "https://files.pythonhosted.org/packages/57/7f/ce1e377df7e62461fefd9eb23bfb93a4a523f40a517b377b8f844d836828/msgpack-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:5c24aa15d5963051e1a5c62b12c50cd705992502b5ec1f3bece6046f33c9fc24", size = 71421, upload-time = "2026-06-18T16:13:09.828Z" }, + { url = "https://files.pythonhosted.org/packages/8f/32/ebfe84c9929f08f188d56c7a2fd913406a9ddad76a634697c1c43b8112e6/msgpack-1.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:4227224aaec8f7fbcbfbd4272319347b2bb4030366502600f8c45588c5187b07", size = 64775, upload-time = "2026-06-18T16:13:11.056Z" }, +] + +[[package]] +name = "msgpack-numpy" +version = "0.4.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "msgpack" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/94/61e8aee142733ebfdc400a05bdac6e1763c4514bba3b42743d223f388450/msgpack-numpy-0.4.8.tar.gz", hash = "sha256:c667d3180513422f9c7545be5eec5d296dcbb357e06f72ed39cc683797556e69", size = 10923, upload-time = "2022-06-09T03:43:08.739Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/5d/f25ac7d4fb77cbd53ddc6d05d833c6bf52b12770a44fa9a447eed470ca9a/msgpack_numpy-0.4.8-py2.py3-none-any.whl", hash = "sha256:773c19d4dfbae1b3c7b791083e2caf66983bb19b40901646f61d8731554ae3da", size = 6919, upload-time = "2022-06-09T03:43:06.82Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" }, + { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" }, + { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" }, + { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" }, + { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" }, + { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" }, + { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" }, + { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" }, + { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "numpy" +version = "2.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/fd/89965aa4ac08c74998539fcbf24fa3540f3e15237fbeb6bcf9c908f4aade/numpy-2.5.1.tar.gz", hash = "sha256:a48a113e6afea91f5608793bafa7ef2ad481fefbda87ec5069f483de61cb9fa3", size = 20755553, upload-time = "2026-07-04T17:08:00.933Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/7b/14687aa674250e5e546f616f486b0d56d3631cd5b2415739141ce40bdcea/numpy-2.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2c889b56fe48b1018f764b0eec8df59ab654e9148aa91faa12596043500de277", size = 16801574, upload-time = "2026-07-04T17:06:12.423Z" }, + { url = "https://files.pythonhosted.org/packages/e1/19/cc5bb2a3f2913d27d6dbb2c78d25921fabaedc6741d4a5a615a11f3c5bf3/numpy-2.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ab451b59c5643c570974c43aef780703ef1d3b4965d2be07afd530615a9358d1", size = 11772250, upload-time = "2026-07-04T17:06:15.726Z" }, + { url = "https://files.pythonhosted.org/packages/42/77/fdf34a71dd30f54979b18603bee915e0aaf825b07afe79acd60b04b691e2/numpy-2.5.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:78798bd5b9ad744056af8efa90e3b9ddaa53272a0848a483084a1cc0a13b2dc0", size = 5331516, upload-time = "2026-07-04T17:06:17.913Z" }, + { url = "https://files.pythonhosted.org/packages/ce/e2/eb7efa015b4cce41e2517bf182a7fce0d7d5b9d9ed76a29bfa0f4fe4505c/numpy-2.5.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:2ae0ca40bcb22d6ba59c1dfd5446f49940b0f2d821fde133f10dda11f816b84e", size = 6664863, upload-time = "2026-07-04T17:06:20.02Z" }, + { url = "https://files.pythonhosted.org/packages/a9/4b/a2b32dd94ee9ffbeecb28152240042a3949db33b1c834d44090b80e1b3b8/numpy-2.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61ac47e772e6b8ea489e1d2f441a34c5c3ac17327e7ce294cbdf535795ad4e75", size = 15167977, upload-time = "2026-07-04T17:06:21.621Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a9/6e73d68500f80773f65f0654ea932019d6694329a0eb0ed0533de38df376/numpy-2.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:59fda5e192b570217ec2580c96f00e9a7e12ef6866a900eb089b62c1a32545ca", size = 16672469, upload-time = "2026-07-04T17:06:24.064Z" }, + { url = "https://files.pythonhosted.org/packages/24/7d/ad3e59015135f5261c95fd4cafeff159c955febd83a99a1d9250c4233815/numpy-2.5.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f7119ebff1a9829e9f431a4f9d28e703023bb6b9fe7c8f724467dbfc27c94ab3", size = 16527531, upload-time = "2026-07-04T17:06:26.69Z" }, + { url = "https://files.pythonhosted.org/packages/83/d0/a39b2fbcde9cb17a1dac678f254b33a6336298af9df338824c685425d5e8/numpy-2.5.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e824c2acf8862052246be5a44c15da1777940c60d010dd2aab897824d9c430f9", size = 18431940, upload-time = "2026-07-04T17:06:29.521Z" }, + { url = "https://files.pythonhosted.org/packages/04/12/cff070947791c1ed425ff76413189adbdc2fbe215eba7ce7fa454a03c7f8/numpy-2.5.1-cp312-cp312-win32.whl", hash = "sha256:08d60c810432eb83360958dea0999ac4cfb94531ea8efcbf0b7f277c2068aeb2", size = 6066764, upload-time = "2026-07-04T17:06:32.571Z" }, + { url = "https://files.pythonhosted.org/packages/65/66/53f31807a48a750f9d748da273bc3fcedd12b27ff1f3e373bfec55ef2dc0/numpy-2.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:f7d60026c0bdb1380e83bfa7a0419c4577ee4b9a08880afcb6dadeb74c649fa2", size = 12430966, upload-time = "2026-07-04T17:06:34.926Z" }, + { url = "https://files.pythonhosted.org/packages/2b/2a/d1a88066b1c14186f5d3c0d18c94f17b064511982bab0578d49ee9d43c29/numpy-2.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:17a25e09640602e10bc8de0e6fa2b3fd68eedd84ba6d7842dc8f32f9ab87bd0b", size = 10350488, upload-time = "2026-07-04T17:06:37.785Z" }, +] + +[[package]] +name = "packaging" +version = "26.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/f1/e7a6dd94a8d4a5626c03e4e99c87f241ba9e350cd9e6d75123f992427270/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661", size = 228134, upload-time = "2026-04-24T20:15:23.917Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/b2/87e62e8c3e2f4b32e5fe99e0b86d576da1312593b39f47d8ceef365e95ed/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e", size = 100195, upload-time = "2026-04-24T20:15:22.081Z" }, +] + +[[package]] +name = "pillow" +version = "12.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/3d/bb7fca845737cf9d7dbde16ed1843984665ff2e0a518f5db43e77ec540b9/pillow-12.3.0.tar.gz", hash = "sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce", size = 47025035, upload-time = "2026-07-01T11:56:38.965Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/bf/fb3ebff8ddcb76aac5a01389251bbbb9519922a9b520d8247c1ca864a25d/pillow-12.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965", size = 5345969, upload-time = "2026-07-01T11:54:06.397Z" }, + { url = "https://files.pythonhosted.org/packages/d8/66/9a386a92561f402389a4fc70c18838bf6d35eb5eb5c6850b4b2dc64f5048/pillow-12.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7", size = 4780323, upload-time = "2026-07-01T11:54:09.351Z" }, + { url = "https://files.pythonhosted.org/packages/25/27/ac8f99618ffd3dde21db0f4d4b1d2ab00c0880595bfd17df103f7f39fd0c/pillow-12.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9c7f76c0673154f044e9d78c8655fb4213f6ca31a836df48b40fe5d187717b9", size = 6266838, upload-time = "2026-07-01T11:54:11.71Z" }, + { url = "https://files.pythonhosted.org/packages/84/21/a35af28dcc61f37ed850a2d64c65c701321dfbf25085e469d5559360cbbf/pillow-12.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:78cb2c6865a35ab8ff8b75fd122f6033b92a62c82801110e48ddd6c936a45d91", size = 6940830, upload-time = "2026-07-01T11:54:13.732Z" }, + { url = "https://files.pythonhosted.org/packages/eb/51/8b08617af3ad95e33ce6d7dd2c99ed6c8298f7fb131636303956be022e25/pillow-12.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e491916b378fba47242221bb9ead245211b70d504f495d105d17b14a24b4907c", size = 6344383, upload-time = "2026-07-01T11:54:15.756Z" }, + { url = "https://files.pythonhosted.org/packages/1d/72/cf78ac9780bb93c28328f408973845a309d4d145041665f734572ced1b52/pillow-12.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0dd2064cbc55aaec028ef5fbb60fa47bb6c3e7918e07ff17935284b227a9d2df", size = 7052934, upload-time = "2026-07-01T11:54:17.721Z" }, + { url = "https://files.pythonhosted.org/packages/20/20/25e0f4dc178a6bc0696793720055519a0de89e7661dae886992decbd2f81/pillow-12.3.0-cp312-cp312-win32.whl", hash = "sha256:dbce0b29841537a2fa4a214c2bbf14de3587c9680caa9b4e217568472490b28f", size = 6472684, upload-time = "2026-07-01T11:54:19.839Z" }, + { url = "https://files.pythonhosted.org/packages/45/89/da2f7971a317f83d807fdd4065c0af40208e59e692cc43d315a71a0e96d1/pillow-12.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a2b55dd6b2a4c4b7d87ffa56bdb33fdc5fdb9a462173861a7bc097f17d91cb09", size = 7227137, upload-time = "2026-07-01T11:54:22.025Z" }, + { url = "https://files.pythonhosted.org/packages/de/47/4845a0a6c0dbf1db8456bd9fc791f13c5ced7ced20606d08a0aacfd25b49/pillow-12.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:331b624368d4f1d069149002f25f44bc61c8919ce8ddb3c45bdad8f6e2d89510", size = 2568267, upload-time = "2026-07-01T11:54:24.051Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "propcache" +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/c87281c333769159c50594f22610f77398a47ccbfbbf23074e744e86f87c/propcache-0.5.2.tar.gz", hash = "sha256:01c4fc7480cd0598bb4b57022df55b9ca296da7fc5a8760bd8451a7e63a7d427", size = 50208, upload-time = "2026-05-08T21:02:12.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/cb/e27bc2b2737a0bb49962b275efa051e8f1c35a936df7d5139b6b658b7dc9/propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:806719138ecd720339a12410fb9614ac9b2b2d3a5fdf8235d56981c36f4039ba", size = 95887, upload-time = "2026-05-08T21:00:11.277Z" }, + { url = "https://files.pythonhosted.org/packages/e6/13/b8ae04c59392f8d11c6cd9fb4011d1dc7c86b81225c770280300e259ffe1/propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:db2b80ea58eab4f86b2beec3cc8b39e8ff9276ac20e96b7cce43c8ae84cd6b5a", size = 54654, upload-time = "2026-05-08T21:00:12.604Z" }, + { url = "https://files.pythonhosted.org/packages/2c/7d/49777a3e20b55863d4794384a38acd460c04157b0a00f8602b0d508b8431/propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e5cbfac9f61484f7e9f3597775500cd3ebe8274e9b050c38f9525c77c97520bf", size = 55190, upload-time = "2026-05-08T21:00:13.935Z" }, + { url = "https://files.pythonhosted.org/packages/44/c7/085d0cd63062e84044e3f05797749c3f8e3938ff3aeb0eb2f69d43fafc91/propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbc581d2814337da56222fab8dc5f161cd798a434e49bac27930aaef798e144", size = 59995, upload-time = "2026-05-08T21:00:15.526Z" }, + { url = "https://files.pythonhosted.org/packages/9c/42/32cf8e3009e92b2645cf1e944f701e8ea4e924dffde1ee26db860bcbf7e4/propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:857187f381f88c8e2fa2fe56ab94879d011b883d5a2ee5a1b60a8cd2a06846d9", size = 63422, upload-time = "2026-05-08T21:00:16.824Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f112433f99fc979431b87a39ef169e3f8df070d99a72792c56d6937ac48b/propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:178b4a2cdaac1818e2bf1c5a99b94383fa73ea5382e032a48dec07dc5668dc42", size = 64342, upload-time = "2026-05-08T21:00:18.362Z" }, + { url = "https://files.pythonhosted.org/packages/14/15/5574111ae50dd6e879456888c0eadd4c5a869959775854e18e18a6b345f3/propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f328175a2cde1f0ff2c4ed8ce968b9dcfb55f3a7153f39e2957ed994da13476", size = 61639, upload-time = "2026-05-08T21:00:19.692Z" }, + { url = "https://files.pythonhosted.org/packages/cc/da/4d775080b1490c0ae604acda868bd71aabe3a89ed16f2aa4339eb8a283e7/propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5671d09a36b06d0fd4a3da0fccbcae360e9b1570924171a15e9e0997f0249fba", size = 61588, upload-time = "2026-05-08T21:00:21.155Z" }, + { url = "https://files.pythonhosted.org/packages/04/ac/f076982cbe2195ee9cf32de5a1e46951d9fb399fc207f390562dd0fd8fb2/propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80168e2ebe4d3ec6599d10ad8f520304ae1cad9b6c5a95372aef1b66b7bfb53a", size = 60029, upload-time = "2026-05-08T21:00:22.713Z" }, + { url = "https://files.pythonhosted.org/packages/70/60/189be62e0dd898dce3b331e1b8c7a543cd3a405ac0c81fe8ee8a9d5d77e1/propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:45f11346f884bc47444f6e6647131055844134c3175b629f84952e2b5cd62b64", size = 56774, upload-time = "2026-05-08T21:00:24.001Z" }, + { url = "https://files.pythonhosted.org/packages/ea/9e/93377b9c7939c1ffae98f878dee955efadfd638078bc86dbc21f9d52f651/propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e778ebd44ef4f66ed60a0416b06b489687db264a9c0b3620362f26489492913", size = 63532, upload-time = "2026-05-08T21:00:25.545Z" }, + { url = "https://files.pythonhosted.org/packages/14/f9/590ef6cfb9b8028d516d287812ece32bb0bc5f11fbb9c8bf6b2e6313fec8/propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c0cb9ed24c8964e172768d455a38254c2dd8a552905729ce006cad3d3dda59b1", size = 61592, upload-time = "2026-05-08T21:00:27.186Z" }, + { url = "https://files.pythonhosted.org/packages/b4/5e/70958b3034c297a630bba2f17ca7abc2d5f39a803ad7e370ab79d1ecd022/propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1d1ad32d9d4355e2be65574fd0bfd3677e7066b009cd5b9b2dee8aa6a6393b33", size = 64788, upload-time = "2026-05-08T21:00:28.8Z" }, + { url = "https://files.pythonhosted.org/packages/12/fd/77fe5936d8c3086ca9048f7f415f122ed82e53884a9ec193646b42deef06/propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c80f4ba3e8f00189165999a742ee526ebeccedf6c3f7beb0c7df821e9772435a", size = 62514, upload-time = "2026-05-08T21:00:30.098Z" }, + { url = "https://files.pythonhosted.org/packages/cf/74/66bd798b5b3be70aa1b391f5cc9d6a0a5532d7fd3b19ec0b213e72e6ad9d/propcache-0.5.2-cp312-cp312-win32.whl", hash = "sha256:8c7972d8f193740d9175f0998ab38717e6cd322d5935c5b0fef8c0d323fd9031", size = 39018, upload-time = "2026-05-08T21:00:31.622Z" }, + { url = "https://files.pythonhosted.org/packages/61/7c/5c0d34aa3024694d6dcb9271cdbdd08c4e47c1c0ad95ec7e7bc74cdea145/propcache-0.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:d9ee8826a7d47863a08ac44e1a5f611a462eefc3a194b492da242128bec75b42", size = 42322, upload-time = "2026-05-08T21:00:32.918Z" }, + { url = "https://files.pythonhosted.org/packages/4d/91/875812f1a3feb20ceba818ef39fbe4d92f1081e04ac815c822496d0d038b/propcache-0.5.2-cp312-cp312-win_arm64.whl", hash = "sha256:2800a4a8ead6b28cccd1ec54b59346f0def7922ee1c7598e8499c733cfbb7c84", size = 38172, upload-time = "2026-05-08T21:00:35.124Z" }, + { url = "https://files.pythonhosted.org/packages/3a/ed/1cdcab6ba3d6ab7feca11fc14f0eeea80755bb53ef4e892079f31b10a25f/propcache-0.5.2-py3-none-any.whl", hash = "sha256:be1ddfcbb376e3de5d2e2db1d58d6d67463e6b4f9f040c000de8e300295465fe", size = 14036, upload-time = "2026-05-08T21:02:10.673Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pytest" +version = "9.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e4/47/b9efed96c114afcfa3c9d3fe98a76a1d14c74a9e266d397cf6eb64be5e01/pytest-9.1.1.tar.gz", hash = "sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313", size = 1636369, upload-time = "2026-06-19T10:58:32.857Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/25/1de2678b631f5a49215c6c96fff41ba892b0a34df68d6d80292b1b48aa7f/pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c", size = 386536, upload-time = "2026-06-19T10:58:31.347Z" }, +] + +[[package]] +name = "python-dotenv" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "ruff" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/94/1e5e4967626faf12fa56999cd6222dff6992ceb086ad7945756baf70c7a7/ruff-0.16.0.tar.gz", hash = "sha256:e460aafd5495ec89efaa6ced2e4a9a581116451e1c88b9d37ef497e0f8e93982", size = 4790557, upload-time = "2026-07-23T19:11:30.981Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/81/1c8818fee7ce1a04cd7d1b3172e0a8f8e4f1dc4feb7fc390e16daa8af323/ruff-0.16.0-py3-none-linux_armv6l.whl", hash = "sha256:e5115729eb08c585e5121978ba5d5b60caeae394ce21b9fb5e6cd33a1c6c9b1e", size = 10754633, upload-time = "2026-07-23T19:10:46.415Z" }, + { url = "https://files.pythonhosted.org/packages/23/df/beaf59c09d68db84304d555f188b276a77132a5d5b0b67a5c762aa143628/ruff-0.16.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3c954b1d580bfa035b41654f7858cc7e71d5fc3ac5b723dd62bd9133830ed522", size = 10969164, upload-time = "2026-07-23T19:10:50.271Z" }, + { url = "https://files.pythonhosted.org/packages/42/ce/741cd197496a1abbf51352710fd15ed995d2a2be87189c1da26a450d6e83/ruff-0.16.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e01c21d10eb1b29f47b7454e1f4056db9a3f0260c646aa88457c610291db9f81", size = 10488846, upload-time = "2026-07-23T19:10:52.639Z" }, + { url = "https://files.pythonhosted.org/packages/52/2a/a2db8e88cade358f5cdcb05674a917751074109315d014eb6352d9a893f7/ruff-0.16.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e364e5ed22ed8dc05082fd78e35308618260907ac2d3c1d637b2e682415b6c9", size = 10889729, upload-time = "2026-07-23T19:10:54.89Z" }, + { url = "https://files.pythonhosted.org/packages/42/65/62a771694ebd63029dc953e27dbad40e1588bd4860ff9fe881018fddaa49/ruff-0.16.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d327b8fc113a1d4421a04f3839d3752057c8dd1ee320223a6f3f52d04ada462a", size = 10568275, upload-time = "2026-07-23T19:10:56.993Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e2/ced249fe8af5f086c5c58cc21cc3356d50f32f7401c5df87050c999620a7/ruff-0.16.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b50c55e263103586b3dcf5f73d479eb8cb5fdb6098fec59a62891dab653717", size = 11385112, upload-time = "2026-07-23T19:10:59.615Z" }, + { url = "https://files.pythonhosted.org/packages/87/0b/05154977a8fd69eeb6c103271f55403bfd8711f5c0f8ed07489d95a504e7/ruff-0.16.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ff4a79ce3ec0172f3241943835de1c4cb4e2dcd07f0f8c2d02603dbbbee4b17", size = 12207008, upload-time = "2026-07-23T19:11:02.154Z" }, + { url = "https://files.pythonhosted.org/packages/fb/29/98225831a3a1eab0e02f4acc6ca6559a98611dcc68b6965ff4b7234627c1/ruff-0.16.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e95c448fca1fb2a18372a9440926c5a6ee789639bb975c72e7ae6d0b04218ab4", size = 11650842, upload-time = "2026-07-23T19:11:04.557Z" }, + { url = "https://files.pythonhosted.org/packages/91/66/6bd3cf90500653d55dc0ffc8507aa8300bd49d0214b2e8cb4d3fef2943ba/ruff-0.16.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f11a8d11010301d0a398a2fdef67691feca7294da6aef55e2150e8fa2cd520b", size = 11400718, upload-time = "2026-07-23T19:11:09.233Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a2/a54eb4eae05d66364050a5d3b8a9c5ef88196531b3cbe7109d873f87f819/ruff-0.16.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:48044c678e9cb8698246c99b14aaccfa6601dea7379eb48a6f8f73f7a6d86cd0", size = 11426177, upload-time = "2026-07-23T19:11:11.994Z" }, + { url = "https://files.pythonhosted.org/packages/1a/be/16e3eea4b2a478a496919f5e36f17c4559e54620bd3bbac5d6affa068006/ruff-0.16.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7aa0959bad8eb8bef50340154fc9b58678dae31fa4293afa38b44b6e552c0213", size = 10856126, upload-time = "2026-07-23T19:11:14.221Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/252eb8b868a16eec7257c14f504f77537e734b2d69c762e639e588e304a3/ruff-0.16.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:28ea2b7df8ebf7f9da6b7d47b230ab48f387c0a29be3b474c4d0740e197bb9af", size = 10571208, upload-time = "2026-07-23T19:11:16.378Z" }, + { url = "https://files.pythonhosted.org/packages/21/09/817a482f542f7570cbb4554b26e896610c7114f539b1d9e2d2145bf6bef6/ruff-0.16.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:33a3dfac8c35f81498dea9181bccc2f4c4bc8f1521a1dd9406e77643e0f0fb09", size = 11063329, upload-time = "2026-07-23T19:11:19.173Z" }, + { url = "https://files.pythonhosted.org/packages/2e/23/9403c180ca1cb9b1f7335f5c3e5305c09d49ea5b345196682a36028bde4a/ruff-0.16.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a5237a0bda500d30d81b8e07a6973a5cbc772864cbf746ae2f4e8a2e01c9f4ed", size = 11489751, upload-time = "2026-07-23T19:11:21.74Z" }, + { url = "https://files.pythonhosted.org/packages/b2/1d/1b2ef7bcde851c78d7f17f1cca13fd6dc695fc4b3d6197941e72cae5b132/ruff-0.16.0-py3-none-win32.whl", hash = "sha256:7fab76fa065c873f41ff744347c6e77bcc3dfec4bcc754dc26b63d23c0f7f5fb", size = 10785885, upload-time = "2026-07-23T19:11:23.947Z" }, + { url = "https://files.pythonhosted.org/packages/b2/a3/d5e4ef7a56be3f928ffb90b94c25ba7d3cb9c7fe0736aeaaedf361770712/ruff-0.16.0-py3-none-win_amd64.whl", hash = "sha256:429c117f022bf481fabd9d551e7a3952b24c65e6ef44337ea09d90bebef14472", size = 11923141, upload-time = "2026-07-23T19:11:26.409Z" }, + { url = "https://files.pythonhosted.org/packages/cb/9a/8415f2657cbe200f41a4531ccededf135505a92d4a012229121f885b26f9/ruff-0.16.0-py3-none-win_arm64.whl", hash = "sha256:14296fedcd2705c77ab8235439278bbb38f285cf7da5528b00b3e330c3d4872d", size = 11273407, upload-time = "2026-07-23T19:11:28.705Z" }, +] + +[[package]] +name = "sie-sdk" +version = "0.6.23" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "httpx" }, + { name = "msgpack" }, + { name = "msgpack-numpy" }, + { name = "numpy" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "websockets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/c0/b0fd1ecb9cfd92271a22de027b2d924b16b1d5b526332da38e0a1265373c/sie_sdk-0.6.23.tar.gz", hash = "sha256:7a7455badd364b8bff05d3f36004ad959e524dd9fef3d1bf4148a67eb5132778", size = 197836, upload-time = "2026-07-24T04:05:17.119Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/58/ecf8d19e4a5e8797781433ebaf2e5034610c896d5a5595e7c901df34099e/sie_sdk-0.6.23-py3-none-any.whl", hash = "sha256:9e3d558a3b7b5d60f3d6deeededdd865b37a8ef7505dd922b5d2749e1efe1f0d", size = 130234, upload-time = "2026-07-24T04:05:15.755Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/cc/6253133b5bb138fc3306cebfbda2c520f545d36b5be2c7255cc528bb45d6/typing_extensions-4.16.0.tar.gz", hash = "sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5", size = 113555, upload-time = "2026-07-02T08:40:05.92Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/d3/b8441a820a491ddfc024b0b0cf0393375b75ea13866d9c66727e54c2fc80/typing_extensions-4.16.0-py3-none-any.whl", hash = "sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8", size = 45571, upload-time = "2026-07-02T08:40:04.659Z" }, +] + +[[package]] +name = "websockets" +version = "14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/54/8359678c726243d19fae38ca14a334e740782336c9f19700858c4eb64a1e/websockets-14.2.tar.gz", hash = "sha256:5059ed9c54945efb321f097084b4c7e52c246f2c869815876a69d1efc4ad6eb5", size = 164394, upload-time = "2025-01-19T21:00:56.431Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/81/04f7a397653dc8bec94ddc071f34833e8b99b13ef1a3804c149d59f92c18/websockets-14.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1f20522e624d7ffbdbe259c6b6a65d73c895045f76a93719aa10cd93b3de100c", size = 163096, upload-time = "2025-01-19T20:59:29.763Z" }, + { url = "https://files.pythonhosted.org/packages/ec/c5/de30e88557e4d70988ed4d2eabd73fd3e1e52456b9f3a4e9564d86353b6d/websockets-14.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:647b573f7d3ada919fd60e64d533409a79dcf1ea21daeb4542d1d996519ca967", size = 160758, upload-time = "2025-01-19T20:59:32.095Z" }, + { url = "https://files.pythonhosted.org/packages/e5/8c/d130d668781f2c77d106c007b6c6c1d9db68239107c41ba109f09e6c218a/websockets-14.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6af99a38e49f66be5a64b1e890208ad026cda49355661549c507152113049990", size = 160995, upload-time = "2025-01-19T20:59:33.527Z" }, + { url = "https://files.pythonhosted.org/packages/a6/bc/f6678a0ff17246df4f06765e22fc9d98d1b11a258cc50c5968b33d6742a1/websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:091ab63dfc8cea748cc22c1db2814eadb77ccbf82829bac6b2fbe3401d548eda", size = 170815, upload-time = "2025-01-19T20:59:35.837Z" }, + { url = "https://files.pythonhosted.org/packages/d8/b2/8070cb970c2e4122a6ef38bc5b203415fd46460e025652e1ee3f2f43a9a3/websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b374e8953ad477d17e4851cdc66d83fdc2db88d9e73abf755c94510ebddceb95", size = 169759, upload-time = "2025-01-19T20:59:38.216Z" }, + { url = "https://files.pythonhosted.org/packages/81/da/72f7caabd94652e6eb7e92ed2d3da818626e70b4f2b15a854ef60bf501ec/websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a39d7eceeea35db85b85e1169011bb4321c32e673920ae9c1b6e0978590012a3", size = 170178, upload-time = "2025-01-19T20:59:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/31/e0/812725b6deca8afd3a08a2e81b3c4c120c17f68c9b84522a520b816cda58/websockets-14.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0a6f3efd47ffd0d12080594f434faf1cd2549b31e54870b8470b28cc1d3817d9", size = 170453, upload-time = "2025-01-19T20:59:41.996Z" }, + { url = "https://files.pythonhosted.org/packages/66/d3/8275dbc231e5ba9bb0c4f93144394b4194402a7a0c8ffaca5307a58ab5e3/websockets-14.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:065ce275e7c4ffb42cb738dd6b20726ac26ac9ad0a2a48e33ca632351a737267", size = 169830, upload-time = "2025-01-19T20:59:44.669Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ae/e7d1a56755ae15ad5a94e80dd490ad09e345365199600b2629b18ee37bc7/websockets-14.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e9d0e53530ba7b8b5e389c02282f9d2aa47581514bd6049d3a7cffe1385cf5fe", size = 169824, upload-time = "2025-01-19T20:59:46.932Z" }, + { url = "https://files.pythonhosted.org/packages/b6/32/88ccdd63cb261e77b882e706108d072e4f1c839ed723bf91a3e1f216bf60/websockets-14.2-cp312-cp312-win32.whl", hash = "sha256:20e6dd0984d7ca3037afcb4494e48c74ffb51e8013cac71cf607fffe11df7205", size = 163981, upload-time = "2025-01-19T20:59:49.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/7d/32cdb77990b3bdc34a306e0a0f73a1275221e9a66d869f6ff833c95b56ef/websockets-14.2-cp312-cp312-win_amd64.whl", hash = "sha256:44bba1a956c2c9d268bdcdf234d5e5ff4c9b6dc3e300545cbe99af59dda9dcce", size = 164421, upload-time = "2025-01-19T20:59:50.674Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c8/d529f8a32ce40d98309f4470780631e971a5a842b60aec864833b3615786/websockets-14.2-py3-none-any.whl", hash = "sha256:7a6ceec4ea84469f15cf15807a747e9efe57e369c384fa86e022b3bea679b79b", size = 157416, upload-time = "2025-01-19T21:00:54.843Z" }, +] + +[[package]] +name = "yarl" +version = "1.24.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/33/ebe9e3d1f86c7a0b51094c0a146392045ca1631d2664889539dec8088a33/yarl-1.24.5.tar.gz", hash = "sha256:e81b83143bee16329c23db3c1b2d82b29892fcbcb849186d2f6e98a5abe9a57f", size = 228679, upload-time = "2026-07-20T02:07:45.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/84/71d051c850b5af41d168c679d9eb67eb7c55283ac4ee131673edf134bc4e/yarl-1.24.5-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d693396e5aea78db03decd60aec9ece16c9b40ba00a587f089615ff4e718a81d", size = 136035, upload-time = "2026-07-20T02:05:25.489Z" }, + { url = "https://files.pythonhosted.org/packages/03/4d/8ad27f9a1b7e69313cca5d695b925b48efe51208d3490e0844bae97cabc0/yarl-1.24.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3363fcc96e665878946ad7a106b9a13eac0541766a690ef287c0232ac768b6ec", size = 97642, upload-time = "2026-07-20T02:05:27.429Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b4/05b4131c407006cd1e410e9c6539f16a0945724677e5364447313c15ea3e/yarl-1.24.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9d399bdcfb4a0f659b9b3788bbc89babe63d9a6a65aacdf4d4e7065ff2e6316c", size = 97323, upload-time = "2026-07-20T02:05:29.441Z" }, + { url = "https://files.pythonhosted.org/packages/20/16/e618c875c73e0e39611f20a581b3d5e8d59b8857bf001bee3263044c6deb/yarl-1.24.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90333fd89b43c0d08ac85f3f1447593fc2c66de18c3d6378d7125ea118dc7a54", size = 107741, upload-time = "2026-07-20T02:05:31.367Z" }, + { url = "https://files.pythonhosted.org/packages/d9/9a/c4defeaf3ed33fcb346aacf9c6e971a8d4e2bde04a0310e79abb208e7965/yarl-1.24.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:665b0a2c463cc9423dd647e0bfd9f4ccc9b50f768c55304d5e9f80b177c1de12", size = 103570, upload-time = "2026-07-20T02:05:33.303Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e7/0e0e0de5865ebd5914537ef486f36c727a59865c3ac0cf5ff1b32aececbf/yarl-1.24.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e006d3a974c4ee19512e5f058abedb6eef36a5e553c14812bdeba1758d812e6d", size = 115815, upload-time = "2026-07-20T02:05:35.292Z" }, + { url = "https://files.pythonhosted.org/packages/2b/27/ca56b700cb170aba25a3893b75355b213935657dc5714d2383354a270e62/yarl-1.24.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e7d42c531243450ef0d4d9c172e7ed6ef052640f195629065041b5add4e058d1", size = 116025, upload-time = "2026-07-20T02:05:37.503Z" }, + { url = "https://files.pythonhosted.org/packages/d6/d0/d56c859b8222116f5d68459199f48359e0bf121b6f65a69bf329b3602ba0/yarl-1.24.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f08c7513ecef5aad65687bfdf6bc601ae9fccd04a42904501f8f7141abad9eb9", size = 109835, upload-time = "2026-07-20T02:05:39.506Z" }, + { url = "https://files.pythonhosted.org/packages/70/a2/3a35557e4d1a79425040eba202ccaf08bdc8717680fc77e2498a1ad2e0a5/yarl-1.24.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6c95b17fe34ed802f17e205112e6e10db92275c34fee290aa9bdc55a9c724027", size = 108884, upload-time = "2026-07-20T02:05:41.584Z" }, + { url = "https://files.pythonhosted.org/packages/e4/35/ef4c26356b7913c68983bac2d72a4212b3347af551cb8d250b99b5ed7b7f/yarl-1.24.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:56b149b22de33b23b0c6077ab9518c6dcb538ad462e1830e68d06591ccf6e38b", size = 107308, upload-time = "2026-07-20T02:05:43.697Z" }, + { url = "https://files.pythonhosted.org/packages/d5/91/ff0dc66c2ccf3e0153ab97ff61eabab4400e6a5264af427ab30cd69f1857/yarl-1.24.5-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a8fe66b8f300da93798025a785a5b90b42f3810dc2b72283ff84a41aaaebc293", size = 103646, upload-time = "2026-07-20T02:05:45.895Z" }, + { url = "https://files.pythonhosted.org/packages/74/f0/33b9271c7f881766359d58266fa0811d2e5210ed860e28da7dc6d7786344/yarl-1.24.5-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:377fe3732edbaf78ee74efdf2c9f49f6e99f20e7f9d2649fda3eb4badd77d76e", size = 115305, upload-time = "2026-07-20T02:05:47.832Z" }, + { url = "https://files.pythonhosted.org/packages/ef/65/fd79fb1868c4a80db8661091de525bf430f63c3bea1b20e8b6a84fc7d359/yarl-1.24.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e8ffa78582120024f476a611d7befc123cee59e47e8309d470cf667d806e613b", size = 108404, upload-time = "2026-07-20T02:05:49.604Z" }, + { url = "https://files.pythonhosted.org/packages/ff/ba/dbabe6b262f17a816c70cfc09558dbf03ece3ec76684d02f911a3d3a189c/yarl-1.24.5-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:daba5e594f06114e37db186efd2dd916609071e59daca901a0a2e71f02b142ce", size = 115940, upload-time = "2026-07-20T02:05:51.741Z" }, + { url = "https://files.pythonhosted.org/packages/a5/43/fab2d1dad9d340a268cdde63756a123d069723efff6a372d123fa74a9517/yarl-1.24.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:65be18ec59496c13908f02a2472751d9ef840b4f3fb5726f129306bf6a2a7bba", size = 110006, upload-time = "2026-07-20T02:05:53.554Z" }, + { url = "https://files.pythonhosted.org/packages/c4/27/41eb51bbd1b8d89546b83897cfb0164f1e109304fd408dbb151b639eec0f/yarl-1.24.5-cp312-cp312-win_amd64.whl", hash = "sha256:a929d878fec099030c292803b31e5d5540a7b6a31e6a3cc76cb4685fc2a2f51b", size = 97618, upload-time = "2026-07-20T02:05:55.57Z" }, + { url = "https://files.pythonhosted.org/packages/3c/25/b2553764b3d65db711d8f45416351ec4f420847558eb669edcbcaadf5780/yarl-1.24.5-cp312-cp312-win_arm64.whl", hash = "sha256:7ce27823052e2013b597e0c738b13e7e36b8ccb9400df8959417b052ab0fd92c", size = 93018, upload-time = "2026-07-20T02:05:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/61/02/962c1cbfc401a30c1d034dc67ff395f64b52302c6d62de556c1fca99acc0/yarl-1.24.5-py3-none-any.whl", hash = "sha256:a33700d13d9b7d84fd10947b09ff69fb9a792e519c8cb9764a3ca70baa6c23a7", size = 58612, upload-time = "2026-07-20T02:07:43.461Z" }, +] diff --git a/examples/maintenance-triage-agent/verified-run/evaluation.json b/examples/maintenance-triage-agent/verified-run/evaluation.json new file mode 100644 index 00000000..59fe6407 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/evaluation.json @@ -0,0 +1,45 @@ +{ + "passed": true, + "checks": [ + { + "name": "read-only-route", + "passed": true, + "detail": "read_only_detector_trend_review" + }, + { + "name": "three-detector-readings", + "passed": true, + "detail": "[{'location': 'Sebring', 'time': '7:37 p.m.', 'degrees_f_above_ambient': 38, 'alert': 'none'}, {'location': 'Salem', 'time': '8:13 p.m.', 'degrees_f_above_ambient': 103, 'alert': 'noncritical alert to the Wayside Help Desk, not the crew', 'camera_observation': 'fire near the bearing'}, {'location': 'East Palestine', 'time': 'about 8:52 p.m.', 'degrees_f_above_ambient': 253, 'alert': 'critical alarm broadcast in the locomotive cab'}]" + }, + { + "name": "temperature-deltas", + "passed": true, + "detail": "{'successive_increases_degrees_f': [65, 150], 'total_increase_degrees_f': 215, 'sebring_to_salem_minutes': 36, 'salem_to_east_palestine_minutes': 39}" + }, + { + "name": "published-derailment-count", + "passed": true, + "detail": "{'total_cars': 38, 'statement': 'the hopper car and 37 others derailed as emergency braking activated'}" + }, + { + "name": "ranked-primary-source-evidence", + "passed": true, + "detail": "['chunk-12', 'chunk-1', 'chunk-11', 'chunk-4', 'chunk-13', 'chunk-8', 'chunk-9', 'chunk-17', 'chunk-7', 'chunk-0', 'chunk-16', 'chunk-3', 'chunk-5', 'chunk-10', 'chunk-15', 'chunk-2', 'chunk-14', 'chunk-6']" + }, + { + "name": "ntsb-cause-preserved", + "passed": true, + "detail": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car." + }, + { + "name": "no-new-causal-claim", + "passed": true, + "detail": "[]" + }, + { + "name": "no-control-write", + "passed": true, + "detail": "[]" + } + ] +} diff --git a/examples/maintenance-triage-agent/verified-run/manifest.json b/examples/maintenance-triage-agent/verified-run/manifest.json new file mode 100644 index 00000000..a3ec637d --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/manifest.json @@ -0,0 +1,210 @@ +{ + "created_at": "2026-07-25T02:35:45.228957+00:00", + "endpoint": "http://127.0.0.1:8080", + "sie_server_commit": "4b5ea9ccd5d5fc07c56edfea790080b05e17f0d2", + "run_command": "Modal exact-source reference examples against public SIE main at 4b5ea9c", + "models": { + "parse": "docling-project/docling", + "retrieve": "BAAI/bge-m3", + "rerank": "Qwen/Qwen3-Reranker-4B", + "entities": "urchade/gliner_multi-v2.1", + "extract": "fastino/gliner2-large-v1" + }, + "fixture": { + "path": "fixtures/east-palestine-bearing-spread.pdf", + "sha256": "0556a971978198a493acda277dfdfd75a837be4ba5c626d6f03565cb17cee8ca" + }, + "diagnostic_fixtures": [ + { + "path": "fixtures/output-schema-probe-request.json", + "sha256": "d7678dd861df33f19e264af3253f5fe0a540db855c3ac31fcece8d2ccdf20907" + }, + { + "path": "fixtures/output-schema-probe-response.json", + "sha256": "b68bfdcdda685b5474dbdc3a926f2327e6515a552fe6031a31d2d41c9ee71a3a" + } + ], + "artifacts": [ + { + "path": "parsed.md", + "sha256": "893da4e76591881139272f831fae3a73f47d2998d8881abb16d6b7ae88a6e9b3" + }, + { + "path": "review.json", + "sha256": "8b1acca32d3b2ef97ff17493a7df4240f92305eb486f55fcd86c2b51a2561753" + }, + { + "path": "raw/entities-detector-0.json", + "sha256": "d2ed1eadc8c1bfb8ef13d1862616b8f80405ff90e07432692b999f47e88e05f6" + }, + { + "path": "raw/entities-detector-1.json", + "sha256": "dc1929adbfdbe184963bf232f568b6c9621b0996cebe096c9b138e140bab5f67" + }, + { + "path": "raw/entities-detector-2.json", + "sha256": "02f407aea2f62358fcc2de29e941bea74c945508f73b98e8742d27e81cda7dee" + }, + { + "path": "raw/entities-outcome.json", + "sha256": "987d419d16fe1c82ff6f7707b9126ad56bc39e73904c481c6f9df2b084602dba" + }, + { + "path": "raw/entities.json", + "sha256": "007960f40bb6065f6abf37c6840ae02deea02db34af5b19825ae7c4bd9f9cef5" + }, + { + "path": "raw/gliner2-cause.json", + "sha256": "8d2dffca0c06aa5545f2546f3910085ba3e29a7e8c060ae5e2663f597b03e1b5" + }, + { + "path": "raw/gliner2-derailment.json", + "sha256": "35d2b38b46435e46d332c0d0b4cf8de99b3c61173641006e02093f0b4669ddc1" + }, + { + "path": "raw/gliner2-east-palestine.json", + "sha256": "3768f34af5ad52fc5f74635fa7e1a61902926a7b72ee873582faee2f03330692" + }, + { + "path": "raw/gliner2-engineer.json", + "sha256": "3ff4b858a3741c48b9ee86e89b62a8461b36d14d5663eb9f0bef3aa618a04651" + }, + { + "path": "raw/gliner2-salem.json", + "sha256": "1e3b58562aa8e10091b0dc5ca96c13c768cd6b1767e71dc2dff2bbf959a64ebf" + }, + { + "path": "raw/gliner2-sebring.json", + "sha256": "6f27fbd04af070d6dde9905bb94d15d766116a288fee15520698d87d8bc9933a" + }, + { + "path": "raw/mapped.json", + "sha256": "16658df2e9fc8b99fdb4db07fb5db1bacb93bb94d167e7a60bee5100fbbbd12f" + }, + { + "path": "raw/parse.json", + "sha256": "818a458d3611298b32e2593a9f67825f6429fb12421c94524fa7b14626abb871" + }, + { + "path": "raw/rerank.json", + "sha256": "e4a55306508d2af18eb6739064f7c94da52368a37b88e6fd665e62f12a5bcd58" + }, + { + "path": "raw/retrieve.json", + "sha256": "3e4080ca59359cd7374616c3c0590510dc0d6e0ca21bd3cf9e77c61c1a7fdbfe" + }, + { + "path": "evaluation.json", + "sha256": "b4366233704be690691323f833d1fa08ae65c367919ad45f3e4d0c9fe3e17390" + } + ], + "source_document": { + "url": "https://www.ntsb.gov/investigations/AccidentReports/Reports/SPC2406.pdf", + "source_page_index": 2, + "printed_pages": "4\u20135" + }, + "calls": [ + { + "stage": "parse", + "model": "docling", + "configured_model": "docling-project/docling", + "latency_ms": 3064.6 + }, + { + "stage": "retrieve", + "model": "BAAI/bge-m3", + "latency_ms": 355.0 + }, + { + "stage": "rerank", + "model": "Qwen/Qwen3-Reranker-4B", + "latency_ms": 546.8 + }, + { + "stage": "entities_detector_0", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 33.4 + }, + { + "stage": "entities_detector_1", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 31.1 + }, + { + "stage": "entities_detector_2", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 29.6 + }, + { + "stage": "entities_outcome", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 35.0 + }, + { + "stage": "gliner2_sebring", + "model": "fastino/gliner2-large-v1", + "latency_ms": 47.5, + "source_chunk_ids": [ + "chunk-11" + ], + "source_sha256": "152e2342c0b6d57c1cc619bda3976958dc467e1f83964fe8c055d313ccea502d" + }, + { + "stage": "gliner2_salem", + "model": "fastino/gliner2-large-v1", + "latency_ms": 50.0, + "source_chunk_ids": [ + "chunk-12" + ], + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + { + "stage": "gliner2_east_palestine", + "model": "fastino/gliner2-large-v1", + "latency_ms": 48.7, + "source_chunk_ids": [ + "chunk-13" + ], + "source_sha256": "e78d51724d0ebbce9b68971491aff2b20d24bf0e2dca2f0c86a963e87c89c825" + }, + { + "stage": "gliner2_cause", + "model": "fastino/gliner2-large-v1", + "latency_ms": 44.9, + "source_chunk_ids": [ + "chunk-1" + ], + "source_sha256": "06acd274b771b3c61e4c7ebe8e7da561c28a58ac5963d85f503855e78d0b23df" + }, + { + "stage": "gliner2_engineer", + "model": "fastino/gliner2-large-v1", + "latency_ms": 47.8, + "source_chunk_ids": [ + "chunk-14" + ], + "source_sha256": "5c9b6299b2cb7ebb678aa0be97d6d2ab6fe7a4aa83b7752efc48d4e6db375d04" + }, + { + "stage": "gliner2_derailment", + "model": "fastino/gliner2-large-v1", + "latency_ms": 44.9, + "source_chunk_ids": [ + "chunk-15" + ], + "source_sha256": "54654ec0a72f7663349720e7124882792a6a36f8ece85a0e481db09348ff5026" + } + ], + "pipeline": [ + "parse", + "retrieve", + "rerank", + "entities_detector_sections", + "entities_outcome", + "gliner2_detector_sections", + "gliner2_outcome_sections", + "deterministic_source_mapping", + "deterministic_validation" + ], + "decision_boundary": "The review reconstructs the NTSB's published detector sequence. It makes no new causal determination and performs no control write." +} diff --git a/examples/maintenance-triage-agent/verified-run/parsed.md b/examples/maintenance-triage-agent/verified-run/parsed.md new file mode 100644 index 00000000..9cf659cd --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/parsed.md @@ -0,0 +1,63 @@ +## When the bearing failed + +The East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine. + +## All about bearings + +## Bearings 101 + +A bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .) + +## Hot bearing detectors + +Overheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow. + +Bearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine. + +## The L1 bearing + +The bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel. + +Railcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right. + + + +## The undetected hot bearing burns off + +1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103° above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew. + +2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated. + + + +## On fire but not 'critical' + +## Sebring + +At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38°F above ambient -not high enough to trigger an alert. The R1 bearing measured 20°F above ambient. But the L1 bearing was hotter. + +## Salem + +At 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103°F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted. + +## East Palestine + +About 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253°F above ambient at the L1 bearing; bearing R1 remained at 20°F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab. + +Under NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m. + +But it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated. + + + + + + + +## The Wayside Help Desk + +The Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine. + +In the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. ' + + \ No newline at end of file diff --git a/examples/maintenance-triage-agent/verified-run/raw/entities-detector-0.json b/examples/maintenance-triage-agent/verified-run/raw/entities-detector-0.json new file mode 100644 index 00000000..ce3cdcb8 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/entities-detector-0.json @@ -0,0 +1,57 @@ +{ + "entities": [ + { + "text": "7:37 p.m.", + "label": "event time", + "score": 0.79638671875, + "start": 3, + "end": 12, + "bbox": null + }, + { + "text": "Sebring HBD", + "label": "location", + "score": 0.9130859375, + "start": 22, + "end": 33, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.98583984375, + "start": 55, + "end": 65, + "bbox": null + }, + { + "text": "alert", + "label": "alert", + "score": 0.58984375, + "start": 125, + "end": 130, + "bbox": null + }, + { + "text": "R1 bearing", + "label": "bearing", + "score": 0.98193359375, + "start": 136, + "end": 146, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.97900390625, + "start": 184, + "end": 194, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ntsb-detector-0", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/entities-detector-1.json b/examples/maintenance-triage-agent/verified-run/raw/entities-detector-1.json new file mode 100644 index 00000000..7db4d8af --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/entities-detector-1.json @@ -0,0 +1,57 @@ +{ + "entities": [ + { + "text": "8:13 p.m.", + "label": "event time", + "score": 0.8671875, + "start": 3, + "end": 12, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.69873046875, + "start": 22, + "end": 27, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.96728515625, + "start": 53, + "end": 63, + "bbox": null + }, + { + "text": "noncritical alert", + "label": "alert", + "score": 0.6435546875, + "start": 132, + "end": 149, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.66845703125, + "start": 244, + "end": 249, + "bbox": null + }, + { + "text": "Sebring", + "label": "location", + "score": 0.638671875, + "start": 314, + "end": 321, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ntsb-detector-1", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/entities-detector-2.json b/examples/maintenance-triage-agent/verified-run/raw/entities-detector-2.json new file mode 100644 index 00000000..bc277915 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/entities-detector-2.json @@ -0,0 +1,65 @@ +{ + "entities": [ + { + "text": "8:52 p.m .", + "label": "event time", + "score": 0.748046875, + "start": 6, + "end": 16, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.50537109375, + "start": 42, + "end": 56, + "bbox": null + }, + { + "text": "Less than a minute later", + "label": "event time", + "score": 0.685546875, + "start": 62, + "end": 86, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.90283203125, + "start": 149, + "end": 159, + "bbox": null + }, + { + "text": "bearing R1", + "label": "bearing", + "score": 0.83544921875, + "start": 161, + "end": 171, + "bbox": null + }, + { + "text": "critical alarm", + "label": "alert", + "score": 0.72998046875, + "start": 238, + "end": 252, + "bbox": null + }, + { + "text": "locomotive cab", + "label": "location", + "score": 0.552734375, + "start": 281, + "end": 295, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ntsb-detector-2", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/entities-outcome.json b/examples/maintenance-triage-agent/verified-run/raw/entities-outcome.json new file mode 100644 index 00000000..155ca2e3 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/entities-outcome.json @@ -0,0 +1,89 @@ +{ + "entities": [ + { + "text": "East Palestine", + "label": "location", + "score": 0.966796875, + "start": 4, + "end": 18, + "bbox": null + }, + { + "text": "overheated bearing", + "label": "bearing", + "score": 0.5107421875, + "start": 44, + "end": 62, + "bbox": null + }, + { + "text": "Ohio", + "label": "location", + "score": 0.52783203125, + "start": 277, + "end": 281, + "bbox": null + }, + { + "text": "Sebring", + "label": "location", + "score": 0.9091796875, + "start": 291, + "end": 298, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.94384765625, + "start": 300, + "end": 305, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.97607421875, + "start": 311, + "end": 325, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.96826171875, + "start": 368, + "end": 382, + "bbox": null + }, + { + "text": "37 others", + "label": "railcar count", + "score": 0.72119140625, + "start": 465, + "end": 474, + "bbox": null + }, + { + "text": "8:54 p.m.", + "label": "event time", + "score": 0.8271484375, + "start": 725, + "end": 734, + "bbox": null + }, + { + "text": "37 others", + "label": "railcar count", + "score": 0.70068359375, + "start": 776, + "end": 785, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ntsb-outcome", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/entities.json b/examples/maintenance-triage-agent/verified-run/raw/entities.json new file mode 100644 index 00000000..03bd3b84 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/entities.json @@ -0,0 +1,237 @@ +{ + "model": "urchade/gliner_multi-v2.1", + "entities": [ + { + "text": "7:37 p.m.", + "label": "event time", + "score": 0.79638671875, + "start": 3, + "end": 12, + "bbox": null + }, + { + "text": "Sebring HBD", + "label": "location", + "score": 0.9130859375, + "start": 22, + "end": 33, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.98583984375, + "start": 55, + "end": 65, + "bbox": null + }, + { + "text": "alert", + "label": "alert", + "score": 0.58984375, + "start": 125, + "end": 130, + "bbox": null + }, + { + "text": "R1 bearing", + "label": "bearing", + "score": 0.98193359375, + "start": 136, + "end": 146, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.97900390625, + "start": 184, + "end": 194, + "bbox": null + }, + { + "text": "8:13 p.m.", + "label": "event time", + "score": 0.8671875, + "start": 3, + "end": 12, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.69873046875, + "start": 22, + "end": 27, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.96728515625, + "start": 53, + "end": 63, + "bbox": null + }, + { + "text": "noncritical alert", + "label": "alert", + "score": 0.6435546875, + "start": 132, + "end": 149, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.66845703125, + "start": 244, + "end": 249, + "bbox": null + }, + { + "text": "Sebring", + "label": "location", + "score": 0.638671875, + "start": 314, + "end": 321, + "bbox": null + }, + { + "text": "8:52 p.m .", + "label": "event time", + "score": 0.748046875, + "start": 6, + "end": 16, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.50537109375, + "start": 42, + "end": 56, + "bbox": null + }, + { + "text": "Less than a minute later", + "label": "event time", + "score": 0.685546875, + "start": 62, + "end": 86, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.90283203125, + "start": 149, + "end": 159, + "bbox": null + }, + { + "text": "bearing R1", + "label": "bearing", + "score": 0.83544921875, + "start": 161, + "end": 171, + "bbox": null + }, + { + "text": "critical alarm", + "label": "alert", + "score": 0.72998046875, + "start": 238, + "end": 252, + "bbox": null + }, + { + "text": "locomotive cab", + "label": "location", + "score": 0.552734375, + "start": 281, + "end": 295, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.966796875, + "start": 4, + "end": 18, + "bbox": null + }, + { + "text": "overheated bearing", + "label": "bearing", + "score": 0.5107421875, + "start": 44, + "end": 62, + "bbox": null + }, + { + "text": "Ohio", + "label": "location", + "score": 0.52783203125, + "start": 277, + "end": 281, + "bbox": null + }, + { + "text": "Sebring", + "label": "location", + "score": 0.9091796875, + "start": 291, + "end": 298, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.94384765625, + "start": 300, + "end": 305, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.97607421875, + "start": 311, + "end": 325, + "bbox": null + }, + { + "text": "East Palestine", + "label": "location", + "score": 0.96826171875, + "start": 368, + "end": 382, + "bbox": null + }, + { + "text": "37 others", + "label": "railcar count", + "score": 0.72119140625, + "start": 465, + "end": 474, + "bbox": null + }, + { + "text": "8:54 p.m.", + "label": "event time", + "score": 0.8271484375, + "start": 725, + "end": 734, + "bbox": null + }, + { + "text": "37 others", + "label": "railcar count", + "score": 0.70068359375, + "start": 776, + "end": 785, + "bbox": null + } + ] +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/gliner2-cause.json b/examples/maintenance-triage-agent/verified-run/raw/gliner2-cause.json new file mode 100644 index 00000000..24316b72 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/gliner2-cause.json @@ -0,0 +1,17 @@ +{ + "entities": [ + { + "text": "overheated bearing", + "label": "bearing failure", + "score": 0.8525390625, + "start": 44, + "end": 62, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-cause-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/gliner2-derailment.json b/examples/maintenance-triage-agent/verified-run/raw/gliner2-derailment.json new file mode 100644 index 00000000..0e9f3288 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/gliner2-derailment.json @@ -0,0 +1,25 @@ +{ + "entities": [ + { + "text": "hopper car", + "label": "derailed railcars", + "score": 0.99462890625, + "start": 25, + "end": 35, + "bbox": null + }, + { + "text": "37 others", + "label": "derailed railcars", + "score": 0.9921875, + "start": 40, + "end": 49, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-derailment-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/gliner2-east-palestine.json b/examples/maintenance-triage-agent/verified-run/raw/gliner2-east-palestine.json new file mode 100644 index 00000000..b21dfb9f --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/gliner2-east-palestine.json @@ -0,0 +1,81 @@ +{ + "entities": [ + { + "text": "8:52 p.m .", + "label": "event time", + "score": 0.9775390625, + "start": 6, + "end": 16, + "bbox": null + }, + { + "text": "East Palestine HBD", + "label": "location", + "score": 0.9140625, + "start": 42, + "end": 60, + "bbox": null + }, + { + "text": "253\u00b0F", + "label": "degrees above ambient", + "score": 0.99609375, + "start": 122, + "end": 127, + "bbox": null + }, + { + "text": "L1", + "label": "bearing", + "score": 0.8515625, + "start": 149, + "end": 151, + "bbox": null + }, + { + "text": "R1", + "label": "bearing", + "score": 0.9619140625, + "start": 169, + "end": 171, + "bbox": null + }, + { + "text": "20\u00b0F", + "label": "degrees above ambient", + "score": 0.9814453125, + "start": 184, + "end": 188, + "bbox": null + }, + { + "text": "critical alarm", + "label": "alert status", + "score": 0.935546875, + "start": 238, + "end": 252, + "bbox": null + }, + { + "text": "locomotive cab", + "label": "location", + "score": 0.67724609375, + "start": 281, + "end": 295, + "bbox": null + }, + { + "text": "locomotive cab", + "label": "alert recipient", + "score": 0.7412109375, + "start": 281, + "end": 295, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-east_palestine-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/gliner2-engineer.json b/examples/maintenance-triage-agent/verified-run/raw/gliner2-engineer.json new file mode 100644 index 00000000..7035cad2 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/gliner2-engineer.json @@ -0,0 +1,33 @@ +{ + "entities": [ + { + "text": "stop the train", + "label": "operator action", + "score": 0.58251953125, + "start": 68, + "end": 82, + "bbox": null + }, + { + "text": "slow the train", + "label": "operator action", + "score": 0.6806640625, + "start": 167, + "end": 181, + "bbox": null + }, + { + "text": "8:54 p.m.", + "label": "event time", + "score": 0.99853515625, + "start": 189, + "end": 198, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-engineer-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/gliner2-salem.json b/examples/maintenance-triage-agent/verified-run/raw/gliner2-salem.json new file mode 100644 index 00000000..ea049ef9 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/gliner2-salem.json @@ -0,0 +1,81 @@ +{ + "entities": [ + { + "text": "8:13 p.m.", + "label": "event time", + "score": 0.99853515625, + "start": 3, + "end": 12, + "bbox": null + }, + { + "text": "Salem HBD", + "label": "location", + "score": 0.98193359375, + "start": 22, + "end": 31, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 0.935546875, + "start": 53, + "end": 63, + "bbox": null + }, + { + "text": "103\u00b0F", + "label": "degrees above ambient", + "score": 0.9970703125, + "start": 68, + "end": 73, + "bbox": null + }, + { + "text": "noncritical", + "label": "alert status", + "score": 0.880859375, + "start": 132, + "end": 143, + "bbox": null + }, + { + "text": "Wayside Help Desk", + "label": "alert recipient", + "score": 0.98876953125, + "start": 157, + "end": 174, + "bbox": null + }, + { + "text": "Salem", + "label": "location", + "score": 0.91162109375, + "start": 244, + "end": 249, + "bbox": null + }, + { + "text": "fire near the bearing", + "label": "camera observation", + "score": 0.5859375, + "start": 257, + "end": 278, + "bbox": null + }, + { + "text": "Sebring", + "label": "location", + "score": 0.98388671875, + "start": 314, + "end": 321, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-salem-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/gliner2-sebring.json b/examples/maintenance-triage-agent/verified-run/raw/gliner2-sebring.json new file mode 100644 index 00000000..730f8e99 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/gliner2-sebring.json @@ -0,0 +1,57 @@ +{ + "entities": [ + { + "text": "7:37 p.m.", + "label": "event time", + "score": 0.99609375, + "start": 3, + "end": 12, + "bbox": null + }, + { + "text": "Sebring HBD", + "label": "location", + "score": 0.9990234375, + "start": 22, + "end": 33, + "bbox": null + }, + { + "text": "38\u00b0F", + "label": "degrees above ambient", + "score": 0.99609375, + "start": 75, + "end": 79, + "bbox": null + }, + { + "text": "R1 bearing", + "label": "bearing", + "score": 0.9990234375, + "start": 136, + "end": 146, + "bbox": null + }, + { + "text": "20\u00b0F", + "label": "degrees above ambient", + "score": 0.99169921875, + "start": 156, + "end": 160, + "bbox": null + }, + { + "text": "L1 bearing", + "label": "bearing", + "score": 1.0, + "start": 184, + "end": 194, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "ranked-ntsb-sebring-evidence", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/mapped.json b/examples/maintenance-triage-agent/verified-run/raw/mapped.json new file mode 100644 index 00000000..9b031c78 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/mapped.json @@ -0,0 +1,97 @@ +{ + "method": "Exact ranked NTSB fragments validated against GLiNER2 source spans", + "data": { + "bearing": "L1", + "sebring_time": "7:37 p.m.", + "sebring_temperature": "38\u00b0F above ambient", + "salem_time": "8:13 p.m.", + "salem_temperature": "103\u00b0F above ambient", + "east_palestine_temperature": "253\u00b0F above ambient", + "sebring_alert_status_text": "not high enough to trigger an alert", + "salem_alert_level_text": "noncritical alert", + "salem_alert_recipient_text": "Wayside Help Desk", + "salem_crew_notification_text": "not to the crew", + "salem_camera_observation_text": "fire near the bearing", + "east_palestine_alert_text": "critical alarm, which was broadcast in the locomotive cab", + "engineer_action": "The engineer began to slow the train before 8:54 p.m.", + "derailment_statement": "The hopper car and 37 others derailed as the train's emergency braking system activated", + "cause_statement": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car." + }, + "source_scopes": { + "bearing": { + "stage": "sebring", + "chunk_id": "chunk-11", + "source_sha256": "152e2342c0b6d57c1cc619bda3976958dc467e1f83964fe8c055d313ccea502d" + }, + "sebring_time": { + "stage": "sebring", + "chunk_id": "chunk-11", + "source_sha256": "152e2342c0b6d57c1cc619bda3976958dc467e1f83964fe8c055d313ccea502d" + }, + "sebring_temperature": { + "stage": "sebring", + "chunk_id": "chunk-11", + "source_sha256": "152e2342c0b6d57c1cc619bda3976958dc467e1f83964fe8c055d313ccea502d" + }, + "sebring_alert_status_text": { + "stage": "sebring", + "chunk_id": "chunk-11", + "source_sha256": "152e2342c0b6d57c1cc619bda3976958dc467e1f83964fe8c055d313ccea502d" + }, + "salem_time": { + "stage": "salem", + "chunk_id": "chunk-12", + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + "salem_temperature": { + "stage": "salem", + "chunk_id": "chunk-12", + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + "salem_alert_level_text": { + "stage": "salem", + "chunk_id": "chunk-12", + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + "salem_alert_recipient_text": { + "stage": "salem", + "chunk_id": "chunk-12", + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + "salem_crew_notification_text": { + "stage": "salem", + "chunk_id": "chunk-12", + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + "salem_camera_observation_text": { + "stage": "salem", + "chunk_id": "chunk-12", + "source_sha256": "864d80e2d7aec89dcbdca6e30ef034f32f7be9f733c667394f6119e414496eac" + }, + "east_palestine_temperature": { + "stage": "east_palestine", + "chunk_id": "chunk-13", + "source_sha256": "e78d51724d0ebbce9b68971491aff2b20d24bf0e2dca2f0c86a963e87c89c825" + }, + "east_palestine_alert_text": { + "stage": "east_palestine", + "chunk_id": "chunk-13", + "source_sha256": "e78d51724d0ebbce9b68971491aff2b20d24bf0e2dca2f0c86a963e87c89c825" + }, + "engineer_action": { + "stage": "outcome", + "chunk_id": "chunk-1,chunk-9,chunk-14,chunk-15", + "source_sha256": "94a34efc3a9681e9c70502a0aa96853d143bacb2bee3bf38d4ec4992c926c77a" + }, + "derailment_statement": { + "stage": "outcome", + "chunk_id": "chunk-1,chunk-9,chunk-14,chunk-15", + "source_sha256": "94a34efc3a9681e9c70502a0aa96853d143bacb2bee3bf38d4ec4992c926c77a" + }, + "cause_statement": { + "stage": "outcome", + "chunk_id": "chunk-1,chunk-9,chunk-14,chunk-15", + "source_sha256": "94a34efc3a9681e9c70502a0aa96853d143bacb2bee3bf38d4ec4992c926c77a" + } + } +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/parse.json b/examples/maintenance-triage-agent/verified-run/raw/parse.json new file mode 100644 index 00000000..8e709f96 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/parse.json @@ -0,0 +1,2513 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "ntsb-east-palestine-bearing-spread", + "data": { + "text": "When the bearing failed\n\nThe East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine.\n\nAll about bearings\n\nBearings 101\n\nA bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .)\n\nHot bearing detectors\n\nOverheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow.\n\nBearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine.\n\nThe L1 bearing\n\nThe bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel.\n\nRailcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right.\n\nThe undetected hot bearing burns off\n\n1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103\u00b0 above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew.\n\n2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated.\n\nOn fire but not 'critical'\n\nSebring\n\nAt 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38\u00b0F above ambient -not high enough to trigger an alert. The R1 bearing measured 20\u00b0F above ambient. But the L1 bearing was hotter.\n\nSalem\n\nAt 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103\u00b0F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted.\n\nEast Palestine\n\nAbout 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253\u00b0F above ambient at the L1 bearing; bearing R1 remained at 20\u00b0F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab.\n\nUnder NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m.\n\nBut it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated.\n\nThe Wayside Help Desk\n\nThe Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine.\n\nIn the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. '", + "markdown": "## When the bearing failed\n\nThe East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine.\n\n## All about bearings\n\n## Bearings 101\n\nA bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .)\n\n## Hot bearing detectors\n\nOverheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow.\n\nBearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine.\n\n## The L1 bearing\n\nThe bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel.\n\nRailcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right.\n\n\n\n## The undetected hot bearing burns off\n\n1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103\u00b0 above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew.\n\n2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated.\n\n\n\n## On fire but not 'critical'\n\n## Sebring\n\nAt 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38\u00b0F above ambient -not high enough to trigger an alert. The R1 bearing measured 20\u00b0F above ambient. But the L1 bearing was hotter.\n\n## Salem\n\nAt 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103\u00b0F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted.\n\n## East Palestine\n\nAbout 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253\u00b0F above ambient at the L1 bearing; bearing R1 remained at 20\u00b0F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab.\n\nUnder NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m.\n\nBut it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated.\n\n\n\n\n\n\n\n## The Wayside Help Desk\n\nThe Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine.\n\nIn the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. '\n\n", + "document": { + "schema_name": "DoclingDocument", + "version": "1.10.0", + "name": "document", + "origin": { + "mimetype": "application/pdf", + "binary_hash": 17308852665820571850, + "filename": "document.pdf" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "content_layer": "furniture", + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/pictures/4" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/pictures/5" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/texts/74" + } + ], + "content_layer": "body", + "name": "_root_", + "label": "unspecified" + }, + "groups": [], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 564.4200000000001, + "r": 259.82, + "b": 546.4611206896552, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 23 + ] + } + ], + "orig": "When the bearing failed", + "text": "When the bearing failed", + "level": 1 + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 536.769, + "r": 384.38100000000094, + "b": 492.6875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 326 + ] + } + ], + "orig": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine.", + "text": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine." + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 479.535, + "r": 169.46999999999997, + "b": 466.0658405172414, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 18 + ] + } + ], + "orig": "All about bearings", + "text": "All about bearings", + "level": 1 + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 454.269, + "r": 100.449, + "b": 446.1875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "Bearings 101", + "text": "Bearings 101", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 437.769, + "r": 387.6777000000003, + "b": 381.6875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 402 + ] + } + ], + "orig": "A bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .)", + "text": "A bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .)" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 373.269, + "r": 134.8146, + "b": 365.1875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "Hot bearing detectors", + "text": "Hot bearing detectors", + "level": 1 + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 356.769, + "r": 380.7522000000002, + "b": 288.6875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 461 + ] + } + ], + "orig": "Overheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow.", + "text": "Overheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 405.0, + "t": 536.769, + "r": 747.4463999999987, + "b": 504.6875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 257 + ] + } + ], + "orig": "Bearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine.", + "text": "Bearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine." + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 405.0, + "t": 491.769, + "r": 465.6150000000001, + "b": 483.6875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "The L1 bearing", + "text": "The L1 bearing", + "level": 1 + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 405.0, + "t": 475.269, + "r": 545.7308, + "b": 419.1875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 148 + ] + } + ], + "orig": "The bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel.", + "text": "The bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 405.0, + "t": 410.769, + "r": 548.5022999999999, + "b": 330.6875043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 235 + ] + } + ], + "orig": "Railcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right.", + "text": "Railcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/pictures/0" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 686.3698, + "t": 375.2054468, + "r": 713.4175756000001, + "b": 365.23934631551725, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 6 + ] + } + ], + "orig": "Axle 1", + "text": "Axle 1" + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/pictures/0" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 624.2781, + "t": 375.2054468, + "r": 651.3258756, + "b": 365.23934631551725, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 6 + ] + } + ], + "orig": "Axle 2", + "text": "Axle 2" + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/pictures/0" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 695.1237, + "t": 330.3484468, + "r": 705.612066, + "b": 320.3823463155172, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 2 + ] + } + ], + "orig": "L1", + "text": "L1" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/pictures/0" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 593.0918, + "t": 488.4558, + "r": 667.5128000000003, + "b": 480.3743043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 19 + ] + } + ], + "orig": "Direction of travel", + "text": "Direction of travel", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 58.32, + "t": 263.6853, + "r": 314.595, + "b": 250.21614051724134, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 36 + ] + } + ], + "orig": "The undetected hot bearing burns off", + "text": "The undetected hot bearing burns off", + "level": 1 + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 58.32, + "t": 238.2726, + "r": 235.04399999999987, + "b": 131.19110431034483, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 369 + ] + } + ], + "orig": "1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103\u00b0 above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew.", + "text": "1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103\u00b0 above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 58.32, + "t": 123.77260000000001, + "r": 232.73099999999982, + "b": 60.691104310344826, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 206 + ] + } + ], + "orig": "2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated.", + "text": "2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 672.4547, + "t": 208.7127292, + "r": 690.1383808, + "b": 199.44846171896552, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 4 + ] + } + ], + "orig": "Axle", + "text": "Axle" + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 564.619, + "t": 79.17139999999995, + "r": 572.419, + "b": 68.39607241379304, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "D", + "text": "D" + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 493.468, + "t": 206.67275240000004, + "r": 509.2169176, + "b": 198.42208406724137, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 4 + ] + } + ], + "orig": "Axle", + "text": "Axle" + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 493.468, + "t": 102.58355240000003, + "r": 509.2169176, + "b": 94.33288406724137, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 4 + ] + } + ], + "orig": "Axle", + "text": "Axle" + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 360.686, + "t": 233.1465, + "r": 368.342, + "b": 222.3711724137931, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "B", + "text": "B" + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 292.76, + "t": 233.1465, + "r": 300.836, + "b": 222.3711724137931, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "A", + "text": "A" + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/pictures/1" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 328.9302, + "t": 145.08720000000005, + "r": 336.7782, + "b": 134.31187241379314, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 1 + ] + } + ], + "orig": "C", + "text": "C" + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 839.4709, + "t": 535.6673, + "r": 997.5229000000005, + "b": 522.1981405172414, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 26 + ] + } + ], + "orig": "On fire but not 'critical'", + "text": "On fire but not 'critical'", + "level": 1 + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 511.2363, + "r": 870.1199999999999, + "b": 503.15480431034484, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "Sebring", + "text": "Sebring", + "level": 1 + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 494.7363, + "r": 1048.473899999999, + "b": 450.65480431034484, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 206 + ] + } + ], + "orig": "At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38\u00b0F above ambient -not high enough to trigger an alert. The R1 bearing measured 20\u00b0F above ambient. But the L1 bearing was hotter.", + "text": "At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38\u00b0F above ambient -not high enough to trigger an alert. The R1 bearing measured 20\u00b0F above ambient. But the L1 bearing was hotter." + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 440.9763, + "r": 864.2069999999999, + "b": 432.8948043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 5 + ] + } + ], + "orig": "Salem", + "text": "Salem", + "level": 1 + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 424.4763, + "r": 1060.3187999999984, + "b": 344.3948043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 385 + ] + } + ], + "orig": "At 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103\u00b0F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted.", + "text": "At 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103\u00b0F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 334.7163, + "r": 896.3945999999999, + "b": 326.6348043103448, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "East Palestine", + "text": "East Palestine", + "level": 1 + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 318.2163, + "r": 1059.4389999999994, + "b": 250.13490431034484, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 296 + ] + } + ], + "orig": "About 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253\u00b0F above ambient at the L1 bearing; bearing R1 remained at 20\u00b0F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab.", + "text": "About 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253\u00b0F above ambient at the L1 bearing; bearing R1 remained at 20\u00b0F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 241.71640000000002, + "r": 1058.4899999999977, + "b": 197.63490431034484, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 198 + ] + } + ], + "orig": "Under NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m.", + "text": "Under NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.8, + "t": 189.21640000000002, + "r": 1059.8229000000015, + "b": 169.13490431034484, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 109 + ] + } + ], + "orig": "But it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated.", + "text": "But it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated." + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/pictures/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 833.9872, + "t": 133.88260000000002, + "r": 868.7184, + "b": 126.69904827586208, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 8 + ] + } + ], + "orig": "Exemplar", + "text": "Exemplar" + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/pictures/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 830.1044, + "t": 123.88260000000002, + "r": 871.6004000000001, + "b": 116.69904827586208, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 11 + ] + } + ], + "orig": "hot bearing", + "text": "hot bearing" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/pictures/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 829.4618, + "t": 113.88260000000002, + "r": 860.4681999999999, + "b": 106.69904827586208, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 8 + ] + } + ], + "orig": "detector", + "text": "detector" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/pictures/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 860.4735, + "t": 113.88260000000002, + "r": 871.3054999999999, + "b": 106.69904827586208, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 3 + ] + } + ], + "orig": "(D)", + "text": "(D)" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1103.283, + "t": 459.9460169, + "r": 1132.6282367999997, + "b": 451.13907228060344, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "Sebring", + "text": "Sebring" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1221.517, + "t": 437.8684169, + "r": 1245.5365470999998, + "b": 429.0614722806034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 5 + ] + } + ], + "orig": "Salem", + "text": "Salem" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1429.238, + "t": 377.7558169, + "r": 1484.3319166699998, + "b": 368.94887228060344, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "East Palestine", + "text": "East Palestine" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1348.1992890000001, + "t": 530.5634069000001, + "r": 1403.0269928239652, + "b": 523.5108815633621, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 19 + ] + } + ], + "orig": "Direction of travel", + "text": "Direction of travel" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1128.258, + "t": 522.8016169, + "r": 1145.2943223, + "b": 513.9946722806035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 3 + ] + } + ], + "orig": "HBD", + "text": "HBD" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1120.676, + "t": 511.0321169, + "r": 1152.8851436, + "b": 502.22517228060343, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "MP 79.8", + "text": "MP 79.8" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1117.959, + "t": 497.3011169, + "r": 1155.5919123000003, + "b": 488.49417228060344, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 9 + ] + } + ], + "orig": "7:37 p.m.", + "text": "7:37 p.m." + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1256.737, + "t": 522.8016169, + "r": 1273.7733223, + "b": 513.9946722806035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 3 + ] + } + ], + "orig": "HBD", + "text": "HBD" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1246.733, + "t": 511.0321169, + "r": 1283.7872462, + "b": 502.22517228060343, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 8 + ] + } + ], + "orig": "MP 69.01", + "text": "MP 69.01" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1246.439, + "t": 497.3011169, + "r": 1284.0719123000003, + "b": 488.49417228060344, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 9 + ] + } + ], + "orig": "8:13 p.m.", + "text": "8:13 p.m." + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1481.912, + "t": 522.8016169, + "r": 1498.9483223, + "b": 513.9946722806035, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 3 + ] + } + ], + "orig": "HBD", + "text": "HBD" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1471.908, + "t": 511.0321169, + "r": 1508.9622462, + "b": 502.22517228060343, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 8 + ] + } + ], + "orig": "MP 49.81", + "text": "MP 49.81" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1471.614, + "t": 497.3011169, + "r": 1509.2469123000003, + "b": 488.49417228060344, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 9 + ] + } + ], + "orig": "8:52 p.m.", + "text": "8:52 p.m." + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1103.283, + "t": 418.4676169, + "r": 1147.2606428099998, + "b": 409.6606722806034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "38\u00b0F above", + "text": "38\u00b0F above" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1103.283, + "t": 407.6789169, + "r": 1135.0409802, + "b": 398.8719722806034, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "ambient", + "text": "ambient" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1219.693, + "t": 409.9422169, + "r": 1268.62755547, + "b": 401.13527228060343, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 11 + ] + } + ], + "orig": "103\u00b0F above", + "text": "103\u00b0F above" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1219.693, + "t": 398.1727169, + "r": 1251.4509802, + "b": 389.36577228060344, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "ambient", + "text": "ambient" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1435.721, + "t": 361.1577169, + "r": 1484.65555547, + "b": 352.35077228060345, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 11 + ] + } + ], + "orig": "253\u00b0F above", + "text": "253\u00b0F above" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1435.721, + "t": 350.3690169, + "r": 1467.4789802, + "b": 341.56207228060345, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 7 + ] + } + ], + "orig": "ambient", + "text": "ambient" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1336.495, + "t": 417.0137169, + "r": 1382.5725142, + "b": 408.20677228060345, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "Columbiana", + "text": "Columbiana" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1420.784, + "t": 433.0398169, + "r": 1478.4426825199994, + "b": 424.23287228060343, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "New Waterford", + "text": "New Waterford" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1506.9052806999998, + "t": 448.5140896, + "r": 1513.9508184366377, + "b": 407.7761, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 12 + ] + } + ], + "orig": "Pennsylvania", + "text": "Pennsylvania" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1494.5372806999999, + "t": 436.9147345, + "r": 1501.5828184366378, + "b": 422.6737, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 4 + ] + } + ], + "orig": "Ohio", + "text": "Ohio" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1115.13, + "t": 340.56681929999996, + "r": 1128.5079415, + "b": 333.52128156336204, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 4 + ] + } + ], + "orig": "5 mi", + "text": "5 mi" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1179.771, + "t": 509.0503193, + "r": 1224.1755655899995, + "b": 502.0047815633621, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "10 miles apart", + "text": "10 miles apart" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/pictures/3" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1356.878, + "t": 509.0503193, + "r": 1401.2825655899994, + "b": 502.0047815633621, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "20 miles apart", + "text": "20 miles apart" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/pictures/4" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1082.88, + "t": 248.1653, + "r": 1105.4640000000002, + "b": 240.98174827586206, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 5 + ] + } + ], + "orig": "Salem", + "text": "Salem" + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/pictures/4" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1190.88, + "t": 248.1653, + "r": 1233.84, + "b": 240.98174827586206, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 10 + ] + } + ], + "orig": "Columbiana", + "text": "Columbiana" + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/pictures/4" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1307.4, + "t": 248.1653, + "r": 1361.1616, + "b": 240.98174827586206, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 13 + ] + } + ], + "orig": "New Waterford", + "text": "New Waterford" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/pictures/4" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1412.64, + "t": 248.1653, + "r": 1463.8352, + "b": 240.98174827586206, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 14 + ] + } + ], + "orig": "East Palestine", + "text": "East Palestine" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "section_header", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1096.8, + "t": 205.0697, + "r": 1224.1044000000002, + "b": 194.2943724137931, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 21 + ] + } + ], + "orig": "The Wayside Help Desk", + "text": "The Wayside Help Desk", + "level": 1 + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1096.8, + "t": 182.2867, + "r": 1491.8910000000046, + "b": 104.30520431034483, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 662 + ] + } + ], + "orig": "The Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine.", + "text": "The Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine." + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1096.8, + "t": 91.73670000000004, + "r": 1455.1457999999986, + "b": 60.35520431034479, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 247 + ] + } + ], + "orig": "In the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. '", + "text": "In the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. '" + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 46.8, + "t": 26.423999999999978, + "r": 213.3315000000001, + "b": 18.342504310344793, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 42 + ] + } + ], + "orig": "4 \u00b7 National Transportation Safety Board", + "text": "4 \u00b7 National Transportation Safety Board" + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 348.576, + "t": 26.423999999999978, + "r": 744.9720000000019, + "b": 18.342504310344793, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 74 + ] + } + ], + "orig": "EAST PALESTINE TRAIN DERAILMENT AND SUBSEQUENT HAZARDOUS MATERIALS RELEASE", + "text": "EAST PALESTINE TRAIN DERAILMENT AND SUBSEQUENT HAZARDOUS MATERIALS RELEASE" + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 838.9583, + "t": 26.423999999999978, + "r": 932.2163000000008, + "b": 18.342504310344793, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 18 + ] + } + ], + "orig": "ILLUSTRATED DIGEST", + "text": "ILLUSTRATED DIGEST" + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "page_footer", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1370.665, + "t": 26.423999999999978, + "r": 1537.1911, + "b": 18.342504310344793, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 42 + ] + } + ], + "orig": "National Transportation Safety Board \u00b7 5", + "text": "National Transportation Safety Board \u00b7 5" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + } + ], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 558.920166015625, + "t": 490.6365203857422, + "r": 744.68798828125, + "b": 301.3375244140625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + } + ], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 236.49266052246094, + "t": 279.51922607421875, + "r": 742.8156127929688, + "b": 47.257568359375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + } + ], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 820.133056640625, + "t": 161.46026611328125, + "r": 1060.780517578125, + "b": 46.2568359375, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + } + ], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1073.904296875, + "t": 537.2559967041016, + "r": 1536.0584716796875, + "b": 320.5912780761719, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/4", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + } + ], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1076.4564208984375, + "t": 315.5904541015625, + "r": 1537.9404296875, + "b": 235.01913452148438, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "body", + "label": "picture", + "prov": [ + { + "page_no": 1, + "bbox": { + "l": 1474.5579833984375, + "t": 110.49270629882812, + "r": 1544.7860107421875, + "b": 42.13043212890625, + "coord_origin": "BOTTOMLEFT" + }, + "charspan": [ + 0, + 0 + ] + } + ], + "captions": [], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "form_items": [], + "pages": { + "1": { + "size": { + "width": 1584.0, + "height": 612.0 + }, + "page_no": 1 + } + } + } + }, + "model": "docling" +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/rerank.json b/examples/maintenance-triage-agent/verified-run/raw/rerank.json new file mode 100644 index 00000000..3a7c0576 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/rerank.json @@ -0,0 +1,99 @@ +{ + "model": "Qwen/Qwen3-Reranker-4B", + "scores": [ + { + "item_id": "chunk-12", + "score": 0.94921875, + "rank": 0 + }, + { + "item_id": "chunk-1", + "score": 0.9375, + "rank": 1 + }, + { + "item_id": "chunk-11", + "score": 0.91015625, + "rank": 2 + }, + { + "item_id": "chunk-4", + "score": 0.90625, + "rank": 3 + }, + { + "item_id": "chunk-13", + "score": 0.8359375, + "rank": 4 + }, + { + "item_id": "chunk-8", + "score": 0.46875, + "rank": 5 + }, + { + "item_id": "chunk-9", + "score": 0.37890625, + "rank": 6 + }, + { + "item_id": "chunk-17", + "score": 0.08447265625, + "rank": 7 + }, + { + "item_id": "chunk-7", + "score": 0.033203125, + "rank": 8 + }, + { + "item_id": "chunk-0", + "score": 0.0274658203125, + "rank": 9 + }, + { + "item_id": "chunk-16", + "score": 0.013427734375, + "rank": 10 + }, + { + "item_id": "chunk-3", + "score": 0.01043701171875, + "rank": 11 + }, + { + "item_id": "chunk-5", + "score": 0.0086669921875, + "rank": 12 + }, + { + "item_id": "chunk-10", + "score": 0.007171630859375, + "rank": 13 + }, + { + "item_id": "chunk-15", + "score": 0.006744384765625, + "rank": 14 + }, + { + "item_id": "chunk-2", + "score": 0.0005035400390625, + "rank": 15 + }, + { + "item_id": "chunk-14", + "score": 0.0003452301025390625, + "rank": 16 + }, + { + "item_id": "chunk-6", + "score": 1.150369644165039e-05, + "rank": 17 + } + ], + "query_id": "bearing-trend-query", + "usage": { + "input_tokens": 2938 + } +} diff --git a/examples/maintenance-triage-agent/verified-run/raw/retrieve.json b/examples/maintenance-triage-agent/verified-run/raw/retrieve.json new file mode 100644 index 00000000..c6384496 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/raw/retrieve.json @@ -0,0 +1,19799 @@ +{ + "query": { + "id": "bearing-trend-query", + "dense": [ + 0.0245361328125, + -0.01031494140625, + -0.0169677734375, + 0.03955078125, + 0.0174560546875, + -0.05078125, + -0.00994873046875, + 0.028076171875, + 0.0004730224609375, + 0.019775390625, + 0.01171875, + 0.0233154296875, + -0.02880859375, + 0.00872802734375, + 0.05078125, + 0.0118408203125, + 0.05517578125, + -0.0194091796875, + -0.028564453125, + -0.01336669921875, + 0.0166015625, + -0.0269775390625, + -0.052001953125, + 0.072265625, + -0.00531005859375, + 0.0206298828125, + -0.056396484375, + -0.026123046875, + -0.032470703125, + 0.0255126953125, + -0.00604248046875, + -0.01495361328125, + -0.01300048828125, + -0.016845703125, + -0.032958984375, + -0.0137939453125, + 0.032470703125, + -0.0091552734375, + -0.0439453125, + -0.0203857421875, + 0.040771484375, + -0.046142578125, + 0.045166015625, + 0.05029296875, + 0.0220947265625, + -0.033203125, + -0.0233154296875, + -0.0299072265625, + 0.029052734375, + -0.052734375, + 0.0281982421875, + -0.0093994140625, + 0.0191650390625, + -0.06494140625, + 0.0419921875, + 0.036865234375, + -0.0196533203125, + 0.00238037109375, + -0.04052734375, + -0.0537109375, + -0.01531982421875, + 0.0274658203125, + -0.0150146484375, + -0.033447265625, + -0.044189453125, + 0.087890625, + 0.01416015625, + -0.02490234375, + -0.03173828125, + -0.02685546875, + -0.006591796875, + -0.00860595703125, + -0.0020751953125, + -0.00933837890625, + -0.03076171875, + 0.0191650390625, + 0.04638671875, + -0.0211181640625, + 0.0118408203125, + -0.03466796875, + 0.02685546875, + 0.017333984375, + -0.034423828125, + 0.002044677734375, + 0.052001953125, + 0.07958984375, + -0.0277099609375, + 0.039306640625, + -0.016357421875, + -0.00994873046875, + 0.028564453125, + 0.03173828125, + 0.0146484375, + 0.00176239013671875, + -0.0211181640625, + 0.021728515625, + -0.0233154296875, + -0.019775390625, + -0.004608154296875, + -0.044189453125, + 0.0021514892578125, + -0.0135498046875, + 6.079673767089844e-05, + -0.031982421875, + 0.04052734375, + -0.006561279296875, + 0.034423828125, + 0.0274658203125, + -0.0189208984375, + 0.0201416015625, + -0.0042724609375, + -0.0260009765625, + 0.0240478515625, + -0.0228271484375, + -0.0439453125, + 0.00125885009765625, + -0.02978515625, + -0.04833984375, + 0.0205078125, + -0.07373046875, + 0.041259765625, + -0.02197265625, + 0.07373046875, + -0.0027008056640625, + 0.00099945068359375, + -0.046875, + 0.024169921875, + -0.0135498046875, + 0.0191650390625, + -0.0220947265625, + -0.01123046875, + 0.00384521484375, + -0.017333984375, + -0.01446533203125, + -0.033203125, + -0.01129150390625, + -0.01055908203125, + 0.0247802734375, + 0.043212890625, + -0.03759765625, + -0.00762939453125, + 0.02978515625, + -0.0157470703125, + -0.0223388671875, + 0.0206298828125, + -0.0068359375, + 0.0027008056640625, + -0.0198974609375, + 0.0130615234375, + -0.05126953125, + -0.00775146484375, + 0.00180816650390625, + 0.0517578125, + -0.02490234375, + 0.0020904541015625, + -0.0194091796875, + 0.020263671875, + -0.0101318359375, + 0.0289306640625, + 0.034423828125, + 0.0146484375, + 0.0003147125244140625, + -0.0020294189453125, + 0.0172119140625, + 0.06103515625, + 0.03515625, + 0.003448486328125, + 0.0017852783203125, + -0.005462646484375, + 0.0133056640625, + -0.00360107421875, + -0.0263671875, + 0.04248046875, + 0.005584716796875, + -0.01556396484375, + 0.0174560546875, + 0.087890625, + 0.0390625, + 0.003631591796875, + -0.03759765625, + 0.0206298828125, + 0.0247802734375, + 0.0016326904296875, + 0.0277099609375, + -0.003204345703125, + -0.001373291015625, + -0.012451171875, + -0.046630859375, + 0.0341796875, + -0.000789642333984375, + 0.0047607421875, + 0.0089111328125, + -0.0166015625, + 0.00909423828125, + 0.02880859375, + 0.0299072265625, + 0.0091552734375, + -0.048095703125, + -0.005706787109375, + -0.044921875, + 0.00689697265625, + 0.01165771484375, + 0.08984375, + 0.0245361328125, + -0.03369140625, + 0.00933837890625, + 0.0126953125, + 0.01953125, + 0.0101318359375, + -0.0238037109375, + -0.005096435546875, + 0.004486083984375, + 0.029296875, + 0.00811767578125, + -0.0172119140625, + 0.0027618408203125, + -0.015869140625, + 0.007659912109375, + -0.032470703125, + -0.017578125, + 0.033447265625, + 0.040771484375, + -0.08642578125, + -0.08935546875, + -0.031982421875, + 0.01153564453125, + -0.017333984375, + 0.0223388671875, + 0.0115966796875, + -0.0322265625, + -0.044189453125, + 0.0206298828125, + -0.0625, + -0.01708984375, + 0.03173828125, + 0.045654296875, + 0.006011962890625, + -0.0118408203125, + -0.00885009765625, + 0.0147705078125, + -0.03369140625, + -0.017333984375, + -0.003509521484375, + 0.01611328125, + -0.06640625, + -0.044677734375, + -0.0113525390625, + 0.06494140625, + 0.0002803802490234375, + 0.039306640625, + 0.041259765625, + 0.0274658203125, + -0.0810546875, + 0.003936767578125, + 0.04833984375, + 0.05859375, + 0.00830078125, + 0.0011444091796875, + 0.00732421875, + 0.01348876953125, + 0.0120849609375, + 0.032470703125, + 0.0311279296875, + 0.0206298828125, + 0.006927490234375, + 0.01336669921875, + -0.0263671875, + 0.02197265625, + 0.03369140625, + 0.00225830078125, + -0.0634765625, + -0.0081787109375, + -0.0220947265625, + 0.003753662109375, + -0.0108642578125, + 0.0306396484375, + 0.00982666015625, + -0.0164794921875, + 0.0322265625, + 0.015869140625, + -0.017578125, + -0.0284423828125, + 0.0033416748046875, + -0.017822265625, + -0.04736328125, + -0.044189453125, + -0.0311279296875, + -0.056396484375, + 0.0037078857421875, + -0.052490234375, + 0.006927490234375, + -0.0289306640625, + 0.059814453125, + -0.02880859375, + 0.0302734375, + -0.00046539306640625, + -0.060791015625, + -0.134765625, + 0.000469207763671875, + 0.00099945068359375, + -0.003143310546875, + -0.005523681640625, + -0.0177001953125, + -0.0361328125, + -0.0186767578125, + 0.017578125, + -0.01611328125, + -0.006866455078125, + -0.05029296875, + 0.0184326171875, + -0.06787109375, + -0.051025390625, + -0.04638671875, + 0.0035400390625, + 0.0126953125, + 0.0361328125, + -0.031494140625, + -0.042236328125, + 0.00634765625, + -0.0120849609375, + 0.0093994140625, + -0.024169921875, + -0.024169921875, + 0.04052734375, + 0.030517578125, + -0.001556396484375, + 0.0026397705078125, + 0.0172119140625, + -0.032470703125, + -0.0064697265625, + 0.06103515625, + 0.0208740234375, + 0.0196533203125, + -0.00439453125, + -0.02392578125, + 0.015380859375, + 0.05322265625, + 0.0311279296875, + 0.054931640625, + -0.0225830078125, + -0.005859375, + 0.032958984375, + -0.05517578125, + 0.0150146484375, + 0.02197265625, + -0.044189453125, + -0.041259765625, + -0.00909423828125, + -0.00244140625, + -0.049072265625, + -0.005126953125, + -0.0184326171875, + 0.0032806396484375, + 0.0024261474609375, + 0.002197265625, + -0.01263427734375, + 0.01129150390625, + 0.00885009765625, + -0.0322265625, + -0.0302734375, + 0.00034332275390625, + 0.0009307861328125, + -0.0026702880859375, + -0.0019683837890625, + 0.0234375, + 0.046142578125, + -0.01190185546875, + -0.01123046875, + 0.0162353515625, + 0.022705078125, + 0.00677490234375, + -0.026611328125, + 0.0211181640625, + -0.0177001953125, + -0.0223388671875, + -0.02880859375, + -0.06640625, + -0.05810546875, + -0.007232666015625, + 0.04248046875, + 0.0322265625, + -0.00421142578125, + -0.05615234375, + 0.01312255859375, + 0.0390625, + 0.049072265625, + 0.1796875, + 0.06494140625, + -0.060546875, + 0.033203125, + 0.003326416015625, + -0.0263671875, + 0.0277099609375, + -0.009521484375, + -0.01300048828125, + -0.0091552734375, + -0.058349609375, + 0.0194091796875, + 0.025390625, + -0.0020751953125, + -0.02978515625, + -0.038818359375, + -0.01373291015625, + 0.005340576171875, + 0.076171875, + 0.0004100799560546875, + 0.08056640625, + -0.01129150390625, + -0.01708984375, + -0.03076171875, + -0.02783203125, + 0.00043487548828125, + -0.0230712890625, + 0.0233154296875, + 0.029052734375, + -0.04052734375, + -0.046630859375, + 0.02490234375, + 0.0159912109375, + -0.0025787353515625, + -0.043701171875, + 0.02978515625, + -0.0048828125, + 0.03369140625, + 0.040283203125, + 0.051025390625, + -0.02392578125, + -0.025390625, + 0.0233154296875, + -0.0174560546875, + 0.0289306640625, + 0.003936767578125, + 0.0303955078125, + -0.0126953125, + -0.01531982421875, + -0.0240478515625, + -0.035400390625, + 0.00390625, + -0.0101318359375, + -0.0034332275390625, + -0.00494384765625, + -0.0289306640625, + -0.033935546875, + 0.021240234375, + -0.0087890625, + 0.002197265625, + 0.060546875, + 0.01458740234375, + -0.030029296875, + -0.0289306640625, + 0.01513671875, + 0.049560546875, + -0.0155029296875, + 0.00653076171875, + 0.04052734375, + 0.0634765625, + 0.017822265625, + -0.01092529296875, + -0.00933837890625, + 0.0137939453125, + 0.026123046875, + -0.0164794921875, + -0.0233154296875, + 0.0087890625, + 0.01409912109375, + -0.0004100799560546875, + -0.024658203125, + 0.0150146484375, + -0.036865234375, + 6.586313247680664e-06, + -0.0225830078125, + 0.01385498046875, + 0.0361328125, + 0.044677734375, + 0.0189208984375, + -0.021240234375, + 0.0274658203125, + 0.005645751953125, + -0.02587890625, + -0.04736328125, + -0.0157470703125, + 0.025634765625, + 0.031494140625, + -0.0152587890625, + -0.002105712890625, + 0.042724609375, + -0.029541015625, + -0.0172119140625, + 0.0135498046875, + 0.0693359375, + -0.02587890625, + 0.0289306640625, + 0.0146484375, + -0.0166015625, + 0.00115203857421875, + -0.00494384765625, + -0.041015625, + 0.016845703125, + -0.044677734375, + -0.01312255859375, + 0.08642578125, + 0.021728515625, + -0.058349609375, + 0.002166748046875, + 0.01275634765625, + 0.026611328125, + -0.0137939453125, + -0.0115966796875, + 0.044189453125, + -0.00494384765625, + -0.0113525390625, + 0.0038909912109375, + -0.0186767578125, + -0.060791015625, + 0.02587890625, + 0.03515625, + 0.0087890625, + -0.005401611328125, + 0.03955078125, + 0.025390625, + 0.0191650390625, + 0.037841796875, + 0.00274658203125, + 0.00173187255859375, + -0.017822265625, + 0.0177001953125, + -0.00616455078125, + -0.0211181640625, + -0.02587890625, + -0.035888671875, + -0.04638671875, + -0.029296875, + -0.0296630859375, + -0.046875, + -0.02685546875, + -0.000514984130859375, + -0.0068359375, + 0.0194091796875, + -0.0283203125, + -0.0361328125, + -0.0145263671875, + 0.0262451171875, + 0.01055908203125, + -0.002655029296875, + -0.052001953125, + -0.006317138671875, + 0.00135040283203125, + 0.0135498046875, + 0.02978515625, + 0.0177001953125, + 0.0654296875, + -0.004241943359375, + -0.033203125, + -0.0186767578125, + 0.0419921875, + 0.0098876953125, + 0.0086669921875, + -0.033935546875, + -0.042724609375, + -0.0267333984375, + 0.0068359375, + 0.0003452301025390625, + -0.07958984375, + -0.0118408203125, + -0.0267333984375, + 0.0267333984375, + 0.04248046875, + -0.0008697509765625, + -0.0498046875, + 0.026611328125, + -0.018310546875, + 0.048828125, + -0.0002117156982421875, + -0.03369140625, + 0.0169677734375, + 0.008056640625, + -0.027099609375, + 0.0791015625, + 0.01220703125, + 0.00677490234375, + -0.009765625, + 0.0291748046875, + 0.0167236328125, + 0.05859375, + -0.016845703125, + -0.006744384765625, + -0.04833984375, + -0.00144195556640625, + -0.00848388671875, + -0.003936767578125, + 0.045654296875, + 0.0283203125, + -0.00982666015625, + 0.00848388671875, + 0.01226806640625, + -0.046142578125, + 0.00262451171875, + 0.0028228759765625, + -0.003509521484375, + -0.0240478515625, + 0.031494140625, + -0.0029144287109375, + 0.0081787109375, + 0.03564453125, + -0.0322265625, + -0.0172119140625, + 0.026123046875, + 0.0087890625, + 0.049560546875, + -0.040283203125, + -0.018310546875, + 0.00958251953125, + 0.0238037109375, + -0.0255126953125, + 0.042724609375, + 0.0281982421875, + 0.01025390625, + -0.011962890625, + 0.0028076171875, + -0.033447265625, + -0.0181884765625, + 0.02783203125, + -0.00775146484375, + 0.01483154296875, + -0.00087738037109375, + -0.0439453125, + -0.0245361328125, + -0.036376953125, + -0.0189208984375, + -0.002227783203125, + 0.030517578125, + 0.0213623046875, + 0.01043701171875, + 0.0078125, + 0.037841796875, + -0.015869140625, + 0.01171875, + 0.03662109375, + 0.04541015625, + -0.05419921875, + -0.005523681640625, + 0.036865234375, + 0.024658203125, + 0.0260009765625, + -0.041015625, + -0.002227783203125, + -0.02685546875, + -0.00311279296875, + 0.03515625, + 0.0093994140625, + 0.04931640625, + -0.0211181640625, + -0.0030975341796875, + 0.032958984375, + -0.03125, + -0.02099609375, + 0.032470703125, + -0.0498046875, + -0.04833984375, + -0.044677734375, + -0.0269775390625, + 0.041259765625, + -0.07958984375, + 0.044189453125, + 0.040283203125, + 0.0311279296875, + 0.0198974609375, + 0.00775146484375, + -0.05078125, + 0.016845703125, + -0.0027313232421875, + 0.0208740234375, + 0.00640869140625, + -0.009033203125, + -0.01422119140625, + 0.00150299072265625, + 0.06103515625, + -0.024169921875, + -0.033935546875, + 0.041259765625, + -0.004150390625, + -0.00122833251953125, + 0.00836181640625, + 0.001739501953125, + -0.034423828125, + 0.006561279296875, + 0.017578125, + 0.0380859375, + -0.027587890625, + -0.040771484375, + -0.01513671875, + -0.00189971923828125, + -0.042236328125, + -0.008056640625, + 0.01068115234375, + 0.041748046875, + -0.000164031982421875, + -0.00189208984375, + 0.016845703125, + 0.0115966796875, + 0.035888671875, + 0.0147705078125, + -0.005828857421875, + 0.036865234375, + -0.001495361328125, + 0.0419921875, + -0.04052734375, + -0.0093994140625, + -0.05224609375, + -0.025634765625, + -0.04052734375, + 0.00177764892578125, + 0.028564453125, + 0.042236328125, + 0.005096435546875, + 0.0203857421875, + -0.04736328125, + -0.009765625, + 0.0262451171875, + 0.005340576171875, + 0.00921630859375, + 0.00421142578125, + -0.00604248046875, + -0.0322265625, + -0.00714111328125, + -0.01348876953125, + 0.026611328125, + -0.01953125, + 0.03125, + -0.0194091796875, + 0.00099945068359375, + -0.041748046875, + 0.0157470703125, + -0.024658203125, + 0.00469970703125, + 0.01416015625, + -0.0130615234375, + -0.00762939453125, + -0.03076171875, + -0.04248046875, + -0.05322265625, + -0.0126953125, + -0.0120849609375, + 0.0213623046875, + 0.02978515625, + 0.003662109375, + 0.01806640625, + 0.0255126953125, + -0.0208740234375, + 0.00714111328125, + 0.005218505859375, + 0.0225830078125, + -0.021728515625, + -0.0037841796875, + 0.008056640625, + 0.0189208984375, + -0.0233154296875, + -0.0306396484375, + -0.058349609375, + 0.0189208984375, + 0.0084228515625, + 0.0155029296875, + 0.018310546875, + -0.0238037109375, + -0.01300048828125, + 0.0810546875, + -0.0274658203125, + -0.008056640625, + 0.032958984375, + -0.038818359375, + -0.01239013671875, + 0.0537109375, + -0.07177734375, + -0.036865234375, + 0.056396484375, + -0.0006866455078125, + -0.0120849609375, + -0.0048828125, + -0.05908203125, + -0.005126953125, + -0.11328125, + 0.0277099609375, + 0.043212890625, + -0.011962890625, + -0.03125, + 0.0069580078125, + -0.00860595703125, + 0.03466796875, + 0.0059814453125, + -0.038330078125, + 0.007781982421875, + 0.004241943359375, + -0.000690460205078125, + -0.00081634521484375, + -0.045654296875, + -0.0126953125, + -0.020263671875, + -0.010498046875, + 0.0206298828125, + 0.0106201171875, + 0.022705078125, + -0.0025482177734375, + 0.01043701171875, + 0.043701171875, + 0.049560546875, + -0.005401611328125, + -0.010498046875, + -0.004425048828125, + -0.053955078125, + -0.013427734375, + -0.0172119140625, + 0.0087890625, + 0.06396484375, + 0.044189453125, + 0.01953125, + 8.869171142578125e-05, + 0.015869140625, + -0.0189208984375, + -0.0546875, + -0.031005859375, + -0.06591796875, + 0.0150146484375, + -0.0673828125, + -0.002532958984375, + -0.00909423828125, + -0.01519775390625, + -0.01806640625, + -0.02197265625, + -0.0233154296875, + 0.028564453125, + -0.054931640625, + 0.041259765625, + 0.003936767578125, + -0.0194091796875, + 0.043701171875, + -0.0137939453125, + -0.005584716796875, + 0.005584716796875, + 0.06396484375, + 0.07666015625, + 0.0299072265625, + -0.0247802734375, + 0.0047607421875, + -0.061279296875, + -0.00982666015625, + -0.00121307373046875, + -0.060546875, + 0.018310546875, + 0.031494140625, + 0.018798828125, + -0.042236328125, + -0.0517578125, + 0.0213623046875, + 0.01019287109375, + 0.018310546875, + -0.021240234375, + 0.0196533203125, + -0.016845703125, + -0.0244140625, + -0.0166015625, + -0.0089111328125, + 0.005462646484375, + -0.043701171875, + -0.044189453125, + 0.018798828125, + 0.00130462646484375, + 0.025634765625, + -0.0026702880859375, + 0.03515625, + 0.01153564453125, + -0.052734375, + 0.017333984375, + -0.049560546875, + 0.0732421875, + -0.0027923583984375, + 0.033935546875, + -0.0390625, + 0.03369140625, + -0.029296875, + -0.0086669921875, + -0.08251953125, + 0.01953125, + -0.01153564453125, + 0.039306640625, + 0.0135498046875, + 0.0181884765625, + 0.036376953125, + -0.0159912109375, + 0.045166015625, + -0.00982666015625, + 0.004241943359375, + 0.0211181640625, + -0.030029296875, + -0.0419921875, + -0.044921875, + -0.032470703125, + -0.0069580078125, + -0.06005859375, + -0.042724609375, + -0.03515625, + -0.00830078125, + 0.00469970703125, + 0.021240234375, + -0.044921875, + -0.04052734375, + -0.0002288818359375, + 0.044677734375, + 0.0263671875, + -0.0419921875, + -0.000152587890625, + 0.03662109375, + 0.02587890625, + -0.01055908203125, + 0.03076171875, + 0.040771484375, + -0.0167236328125, + -0.0223388671875, + 0.0062255859375, + -0.041259765625, + -0.01220703125, + 0.0025482177734375, + 0.032958984375, + 0.0019683837890625, + -0.0164794921875, + -0.0081787109375, + 0.027587890625, + -0.01263427734375, + -0.0164794921875, + 0.00885009765625, + -0.037109375, + 0.036376953125, + 0.00148773193359375, + -0.016845703125, + 0.043212890625, + 0.003631591796875, + 0.0159912109375, + 0.03662109375, + 0.0146484375, + -0.05322265625, + 0.037841796875, + -0.008056640625, + -0.0439453125, + -0.00830078125, + 0.00433349609375, + 0.004302978515625, + 0.040283203125, + 0.00189971923828125, + 0.01373291015625, + -0.00921630859375, + 0.05810546875, + -0.00022792816162109375, + 0.02099609375, + -0.00823974609375, + 0.005035400390625, + -0.00119781494140625, + -0.0595703125, + 0.0179443359375, + -0.04833984375, + 0.038330078125, + 0.01031494140625, + 0.01953125, + 0.01513671875, + 0.0283203125, + 0.013671875, + 0.045654296875, + 0.072265625, + 0.0255126953125, + 0.04931640625, + -0.035888671875, + -0.0025634765625, + 0.06201171875, + 0.011962890625, + -0.034912109375, + -0.044189453125, + -0.00177764892578125, + -0.022705078125, + 0.0023040771484375, + 0.0517578125, + -0.01123046875, + 0.0291748046875, + -0.04931640625, + -0.021240234375, + -0.0220947265625, + -0.0034637451171875, + -0.047607421875, + 0.013427734375, + 0.003814697265625, + -0.01171875, + -0.0252685546875, + 0.01031494140625, + 0.00167083740234375, + -0.0125732421875, + -0.033447265625, + 0.00946044921875, + -0.026611328125, + 0.0140380859375, + -0.04052734375, + -0.046630859375, + 0.03076171875, + -0.0086669921875, + -0.0238037109375, + 0.0419921875, + -0.00933837890625, + -0.0023193359375, + -0.005218505859375, + 0.00142669677734375, + -0.01611328125, + -0.0274658203125, + 0.036865234375, + -0.04541015625, + 0.049560546875, + -0.040283203125, + -0.0228271484375, + 0.03955078125, + 0.006744384765625, + 0.020263671875, + -0.042236328125, + -0.016845703125, + 0.0125732421875, + -0.000728607177734375, + 0.01239013671875, + 0.00628662109375, + 0.01348876953125, + 0.0556640625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 18.97879499999533, + "queue_ms": 2.163505999988047, + "tokenization_ms": 0.017859999999814136, + "inference_ms": 16.66648600000542, + "postprocessing_ms": null + } + }, + "chunks": [ + { + "id": "chunk-0", + "dense": [ + -0.0213623046875, + 0.02099609375, + -0.0439453125, + 0.012939453125, + -0.01055908203125, + -0.01422119140625, + 0.0184326171875, + 0.05322265625, + -0.023193359375, + 0.0267333984375, + 0.01007080078125, + -0.00982666015625, + 0.01092529296875, + 0.01806640625, + 0.034912109375, + -0.04736328125, + 0.017822265625, + 0.01324462890625, + -0.003082275390625, + 0.0238037109375, + -0.027587890625, + 0.005340576171875, + 0.0037384033203125, + 0.0272216796875, + -0.0263671875, + 0.03271484375, + -0.0283203125, + 0.012451171875, + -0.02880859375, + -0.017333984375, + -0.01116943359375, + -0.0234375, + -0.01141357421875, + -0.044677734375, + -0.05078125, + -0.0198974609375, + 0.026611328125, + 0.01953125, + -0.03271484375, + 0.046875, + -0.01483154296875, + 0.01348876953125, + 0.0289306640625, + -0.043701171875, + 0.00933837890625, + -0.03515625, + 0.0030364990234375, + -0.005126953125, + 0.0191650390625, + -0.01031494140625, + -0.0137939453125, + -0.01116943359375, + 0.0216064453125, + -0.024169921875, + 0.00927734375, + 0.0361328125, + 0.01007080078125, + 0.0230712890625, + -0.0419921875, + -0.0027923583984375, + -0.0037078857421875, + 0.0027008056640625, + -0.01190185546875, + -0.029296875, + -0.00177764892578125, + 0.09619140625, + -0.0024261474609375, + -0.033203125, + -0.0341796875, + -0.0625, + 0.01141357421875, + -0.0216064453125, + 0.0198974609375, + 0.00726318359375, + -0.056640625, + 0.05322265625, + 0.031494140625, + -0.0201416015625, + -0.04638671875, + -0.0035247802734375, + 0.0849609375, + -0.0272216796875, + -0.01953125, + 0.0028839111328125, + -0.01611328125, + 0.0194091796875, + -0.01470947265625, + -0.0024871826171875, + -0.047607421875, + 0.051513671875, + 0.064453125, + -0.029296875, + -0.05810546875, + 0.003936767578125, + 0.005584716796875, + 0.04248046875, + -0.03564453125, + -0.048583984375, + 0.0242919921875, + 0.012939453125, + 0.01092529296875, + 0.01226806640625, + -0.01409912109375, + -0.04150390625, + 0.0400390625, + -0.0020904541015625, + 0.047607421875, + 0.016845703125, + -0.0048828125, + 0.007415771484375, + 0.0294189453125, + 0.044677734375, + 0.01214599609375, + 0.0048828125, + 0.00897216796875, + -0.00311279296875, + -0.007415771484375, + -0.046875, + 0.027587890625, + -0.03564453125, + 0.01092529296875, + 0.047119140625, + 0.051025390625, + -0.0390625, + -0.031494140625, + -0.03564453125, + 0.042724609375, + -0.01434326171875, + 0.016357421875, + -0.0031585693359375, + 0.0166015625, + 0.003387451171875, + -0.0283203125, + -0.00017547607421875, + 0.007232666015625, + -0.002899169921875, + -0.0284423828125, + 0.01190185546875, + -0.0106201171875, + -0.0306396484375, + -0.0167236328125, + 0.03076171875, + -0.0152587890625, + -0.0289306640625, + -0.01300048828125, + 0.00148773193359375, + 0.056884765625, + -0.041259765625, + 0.002716064453125, + -0.03076171875, + -0.005584716796875, + -0.0255126953125, + 0.0311279296875, + -0.058837890625, + -0.0111083984375, + -0.0123291015625, + 0.008056640625, + 0.0234375, + -0.01324462890625, + -0.0006103515625, + 0.024169921875, + 0.038330078125, + -0.0238037109375, + 0.015380859375, + 0.0230712890625, + 0.01348876953125, + 0.0576171875, + 0.021728515625, + -0.0133056640625, + -0.034912109375, + 0.045166015625, + -0.0257568359375, + 0.052978515625, + -0.03759765625, + 0.005615234375, + 0.05029296875, + 0.030029296875, + 0.01531982421875, + 0.030029296875, + -0.0712890625, + 0.00811767578125, + 0.0166015625, + 0.02490234375, + 0.0042724609375, + -0.0025177001953125, + 0.023193359375, + 0.03515625, + -0.0211181640625, + -0.0001373291015625, + 0.03271484375, + -0.0289306640625, + -0.00506591796875, + 0.0230712890625, + 0.03857421875, + 0.0196533203125, + -0.006378173828125, + -0.00119781494140625, + -0.0264892578125, + 0.01055908203125, + 0.059814453125, + 0.00186920166015625, + -0.010009765625, + 0.0286865234375, + 0.00014972686767578125, + -0.010986328125, + 0.0026397705078125, + -0.044677734375, + -0.0177001953125, + 0.0361328125, + -0.046142578125, + 0.042236328125, + -0.00012493133544921875, + -0.005706787109375, + -0.01708984375, + 0.0023345947265625, + -0.0086669921875, + -0.0252685546875, + -0.0224609375, + -0.032470703125, + 0.00933837890625, + 0.042236328125, + 0.042236328125, + -0.03564453125, + 0.00469970703125, + 0.03076171875, + -0.0186767578125, + 0.050537109375, + 0.026123046875, + -0.0252685546875, + -0.053955078125, + 0.00860595703125, + -0.035888671875, + -0.04052734375, + 0.00982666015625, + 0.0361328125, + 0.005126953125, + 0.017578125, + 0.00408935546875, + 0.01336669921875, + 0.006591796875, + -0.0125732421875, + 0.0016937255859375, + 0.039306640625, + -0.016357421875, + -0.0062255859375, + -0.031982421875, + 0.027099609375, + -0.0245361328125, + -0.029052734375, + -0.0361328125, + 0.01556396484375, + -0.00909423828125, + -0.023681640625, + -0.0218505859375, + 0.02294921875, + 0.025390625, + 0.026611328125, + -0.02490234375, + -0.0306396484375, + -0.026123046875, + -0.004364013671875, + 0.033203125, + 0.0009613037109375, + 0.0103759765625, + -0.002899169921875, + 0.02001953125, + -0.01348876953125, + -0.057373046875, + -0.015869140625, + -0.0164794921875, + -0.031494140625, + -0.034912109375, + -0.01080322265625, + 0.01336669921875, + -0.029052734375, + 0.023193359375, + 0.0035400390625, + -0.05615234375, + 0.03857421875, + 0.005645751953125, + 0.033935546875, + 0.0224609375, + 0.064453125, + -0.002105712890625, + 0.057373046875, + 0.00079345703125, + -0.06005859375, + -0.053466796875, + 0.0028076171875, + -0.037353515625, + 0.0260009765625, + -0.000919342041015625, + 0.05859375, + 0.01708984375, + -0.042236328125, + -0.023193359375, + 0.031494140625, + -0.1748046875, + 0.0228271484375, + -0.0150146484375, + 0.029052734375, + 0.041015625, + -0.0023193359375, + 0.01416015625, + 0.0028533935546875, + -0.0322265625, + 0.03076171875, + -0.0032501220703125, + -0.059326171875, + 0.00885009765625, + -0.025146484375, + 0.018798828125, + -0.01446533203125, + -0.05615234375, + -0.02001953125, + 0.0322265625, + -0.042236328125, + 0.0255126953125, + 0.00057220458984375, + 0.03515625, + -0.05224609375, + -0.022216796875, + -0.029296875, + 0.0006866455078125, + 0.003997802734375, + -0.048583984375, + 0.016845703125, + -0.0140380859375, + 0.0286865234375, + -0.0130615234375, + 0.047119140625, + -0.0296630859375, + 0.078125, + 0.03515625, + -0.006744384765625, + 0.034912109375, + 0.0205078125, + 0.00836181640625, + 0.03515625, + -0.030029296875, + -0.004241943359375, + 0.02099609375, + -0.07958984375, + -0.01611328125, + 0.006195068359375, + -0.04443359375, + -0.0283203125, + 0.00628662109375, + -0.048095703125, + 0.006195068359375, + 0.0174560546875, + 0.0247802734375, + -0.000732421875, + -0.0184326171875, + 0.006134033203125, + -0.060546875, + 0.0380859375, + -0.036376953125, + -0.04345703125, + -0.007781982421875, + 0.03564453125, + -0.06298828125, + -0.00274658203125, + 0.005279541015625, + -0.004302978515625, + 0.00122833251953125, + -0.042236328125, + 0.005615234375, + -0.0400390625, + 0.03369140625, + -0.0011138916015625, + -0.00099945068359375, + 0.005126953125, + -0.0089111328125, + -0.047119140625, + -0.01123046875, + -0.11767578125, + 0.0048828125, + 0.03857421875, + -0.04638671875, + -0.03173828125, + -0.0230712890625, + 0.033447265625, + 0.0194091796875, + 0.01129150390625, + 0.03759765625, + 0.2080078125, + 0.045166015625, + 0.0224609375, + -0.0242919921875, + 0.029296875, + -0.017822265625, + 0.0235595703125, + -0.0225830078125, + 0.0062255859375, + -0.039794921875, + -0.0213623046875, + 0.02099609375, + 0.009521484375, + 0.002044677734375, + -0.01153564453125, + -0.0439453125, + -0.029541015625, + -0.033935546875, + 0.1044921875, + -0.00121307373046875, + 0.03271484375, + -0.0166015625, + 0.0771484375, + -0.0224609375, + -0.0245361328125, + -0.00439453125, + -0.020751953125, + 0.00830078125, + 0.01806640625, + 0.0269775390625, + -0.034912109375, + -0.01422119140625, + 0.062255859375, + -0.0400390625, + 0.00616455078125, + 0.0101318359375, + -0.0228271484375, + -0.044677734375, + 0.0123291015625, + -0.0281982421875, + 0.0166015625, + -0.0272216796875, + -0.0185546875, + -0.00238037109375, + 0.0296630859375, + -0.042724609375, + -0.0206298828125, + -0.0240478515625, + 0.0091552734375, + 0.05615234375, + -0.0235595703125, + -0.000965118408203125, + -0.031494140625, + 0.01556396484375, + -0.0693359375, + -0.0252685546875, + 0.01385498046875, + -0.0185546875, + -0.00457763671875, + -0.03564453125, + 0.024169921875, + 0.02294921875, + -0.07373046875, + -0.006317138671875, + 0.029296875, + 0.021240234375, + -0.057861328125, + 0.0069580078125, + 0.022216796875, + 0.00933837890625, + 0.02099609375, + -0.01416015625, + 0.00384521484375, + 0.0419921875, + 0.0174560546875, + -0.060302734375, + -7.62939453125e-05, + 0.03125, + -0.01123046875, + -0.0022735595703125, + -0.03857421875, + -0.01318359375, + -0.0693359375, + -0.045166015625, + 0.0030364990234375, + -0.03515625, + 0.000713348388671875, + 0.018798828125, + -0.0361328125, + -0.01904296875, + 0.006072998046875, + -0.001007080078125, + -0.0027008056640625, + 0.00075531005859375, + -0.08203125, + 0.0167236328125, + 0.051513671875, + 0.0255126953125, + 0.00168609619140625, + -0.01275634765625, + -0.024169921875, + -0.0308837890625, + -0.004302978515625, + 0.0380859375, + 0.010009765625, + -0.0272216796875, + 0.0194091796875, + 0.013916015625, + 0.031494140625, + 0.000957489013671875, + 0.0146484375, + 0.02001953125, + 0.0164794921875, + -0.0106201171875, + 0.005401611328125, + 0.05078125, + -0.0380859375, + 0.023193359375, + -0.0028533935546875, + 0.052001953125, + -0.0283203125, + -0.005889892578125, + -0.020263671875, + 0.018798828125, + -0.0133056640625, + 0.009765625, + -0.0166015625, + -0.01080322265625, + 0.01953125, + 0.04443359375, + 0.02490234375, + -0.0089111328125, + -0.0081787109375, + 0.037841796875, + 0.064453125, + 0.01507568359375, + -0.0026397705078125, + 0.0118408203125, + 0.04638671875, + 0.03759765625, + 0.01116943359375, + -0.0177001953125, + -0.0181884765625, + -0.031494140625, + -0.044921875, + 0.0015716552734375, + -0.042236328125, + -0.0260009765625, + -0.07177734375, + 0.037109375, + 0.0380859375, + 0.0308837890625, + -0.072265625, + -0.01495361328125, + -0.06298828125, + -0.01953125, + -0.0019989013671875, + -0.01611328125, + -0.0086669921875, + -0.00982666015625, + -0.0029754638671875, + -0.002044677734375, + 0.005157470703125, + 0.04833984375, + 0.0242919921875, + 0.056884765625, + -0.0047607421875, + 0.029541015625, + 0.02734375, + -0.01806640625, + 0.00701904296875, + -0.044677734375, + -0.03369140625, + 0.0419921875, + -0.0032958984375, + -0.0032196044921875, + -3.0159950256347656e-05, + 0.01483154296875, + -0.0019683837890625, + 0.025390625, + 0.0159912109375, + 0.017822265625, + -0.0255126953125, + 0.041259765625, + -0.0269775390625, + 0.0201416015625, + -0.036865234375, + -0.0257568359375, + 0.0166015625, + 0.00439453125, + -0.0211181640625, + 0.12255859375, + -0.024658203125, + 0.0126953125, + 0.01434326171875, + 0.01202392578125, + 0.00909423828125, + 0.032958984375, + 0.044921875, + -0.033935546875, + 0.0169677734375, + -0.047607421875, + 0.007049560546875, + 0.0025177001953125, + -0.01116943359375, + 0.001312255859375, + -0.01239013671875, + 0.04638671875, + -0.0125732421875, + 0.033447265625, + 0.0289306640625, + 0.017578125, + -0.06982421875, + -0.0130615234375, + -0.0093994140625, + 0.021728515625, + 0.056396484375, + 0.0228271484375, + -0.001708984375, + -0.046875, + -0.03564453125, + -0.00213623046875, + 0.048583984375, + 0.0018463134765625, + 0.0216064453125, + 0.030517578125, + 0.003448486328125, + -0.04736328125, + 0.044921875, + -0.0004787445068359375, + 0.0035400390625, + -0.01513671875, + -0.0133056640625, + -0.033203125, + 0.0322265625, + -0.024169921875, + 0.016845703125, + 0.0238037109375, + 0.023193359375, + -0.004974365234375, + 0.01239013671875, + -0.046875, + 0.0057373046875, + 0.0625, + -0.03125, + 0.01531982421875, + -0.00836181640625, + -0.034423828125, + 0.0103759765625, + 0.0240478515625, + 0.015625, + 0.051513671875, + 0.007080078125, + -0.0255126953125, + 0.00022602081298828125, + 0.01287841796875, + -0.028076171875, + -0.007720947265625, + -0.0135498046875, + -0.02099609375, + 0.0147705078125, + 0.05322265625, + -0.0240478515625, + 0.00106048583984375, + 0.000514984130859375, + -0.0081787109375, + 0.0030059814453125, + -0.004913330078125, + -0.01385498046875, + -0.05224609375, + 0.0103759765625, + 0.016845703125, + -0.041015625, + -0.035888671875, + 0.008056640625, + -0.019287109375, + -0.01025390625, + 0.0140380859375, + 0.021728515625, + 0.0225830078125, + -0.0615234375, + -0.04443359375, + -0.0294189453125, + 0.03369140625, + 0.0286865234375, + 0.0150146484375, + 0.06396484375, + 0.03466796875, + -0.000965118408203125, + 0.0025177001953125, + 0.043701171875, + -0.03173828125, + -0.0751953125, + -0.0152587890625, + -0.030029296875, + 0.01025390625, + -0.0050048828125, + 0.05517578125, + 0.004638671875, + 0.026123046875, + -0.0252685546875, + 0.0023345947265625, + -0.01171875, + -0.049072265625, + -0.0181884765625, + -0.00421142578125, + 0.0076904296875, + -0.01055908203125, + 0.057861328125, + 0.04345703125, + 0.038330078125, + -0.0230712890625, + -0.00982666015625, + 0.0150146484375, + 0.0228271484375, + -0.023681640625, + 0.00555419921875, + 0.000576019287109375, + 0.048583984375, + 0.034423828125, + 0.0322265625, + -0.0031585693359375, + 0.0050048828125, + 0.023193359375, + -0.04638671875, + 0.01287841796875, + 0.0133056640625, + 0.0272216796875, + -0.007659912109375, + -0.08203125, + -0.053955078125, + -0.0010223388671875, + -0.0089111328125, + 0.0419921875, + 0.037841796875, + 0.041259765625, + -0.0023193359375, + -0.04150390625, + -0.01263427734375, + -0.06884765625, + 0.0106201171875, + -0.0028839111328125, + 0.045654296875, + -0.01483154296875, + -0.026611328125, + -0.0018463134765625, + -0.016845703125, + -0.0123291015625, + 0.029541015625, + 0.01318359375, + -0.030517578125, + 0.041259765625, + -0.01806640625, + 0.005767822265625, + -0.0284423828125, + 0.03515625, + -0.0087890625, + 0.03857421875, + 0.001129150390625, + -0.047607421875, + 0.011474609375, + 0.0257568359375, + 0.00543212890625, + -0.006744384765625, + 0.0025177001953125, + 0.015869140625, + -0.0006561279296875, + 0.019287109375, + 0.0205078125, + -0.0269775390625, + -0.06103515625, + 0.01446533203125, + 0.008056640625, + 0.011474609375, + -0.0035400390625, + 0.031982421875, + -0.04052734375, + -0.01806640625, + 0.0172119140625, + 0.0308837890625, + -0.02294921875, + -0.03369140625, + -0.00885009765625, + -0.0228271484375, + 0.012939453125, + -0.00012969970703125, + -0.039794921875, + -0.02099609375, + 0.051513671875, + 0.046875, + -0.04443359375, + 0.02783203125, + -0.0498046875, + 0.01318359375, + -0.162109375, + 0.0576171875, + -0.0439453125, + -0.02783203125, + -0.029541015625, + -0.0218505859375, + -0.0245361328125, + -0.00390625, + -0.046875, + -0.04638671875, + 0.033447265625, + -0.0089111328125, + 0.01953125, + -0.0024566650390625, + -0.052734375, + 0.01422119140625, + -0.005157470703125, + 0.018798828125, + 0.013916015625, + -0.005950927734375, + -0.006683349609375, + -0.0048828125, + 4.839897155761719e-05, + -0.0281982421875, + -0.037353515625, + -0.003265380859375, + 0.0498046875, + -0.0035858154296875, + -0.03271484375, + -0.021240234375, + -0.023681640625, + -0.062255859375, + 0.0093994140625, + 0.038818359375, + 0.03271484375, + 0.0230712890625, + 0.01177978515625, + 0.0040283203125, + 0.00102996826171875, + 0.0213623046875, + 0.03759765625, + 0.0108642578125, + 0.01055908203125, + -0.00244140625, + 0.0198974609375, + 0.01409912109375, + -0.0299072265625, + 0.01507568359375, + -0.040283203125, + 0.03466796875, + -0.0400390625, + 0.03857421875, + -0.0079345703125, + 0.0086669921875, + 0.03369140625, + 0.01226806640625, + -0.0625, + 0.000537872314453125, + -0.00244140625, + 0.05615234375, + -0.005401611328125, + 0.0257568359375, + -0.0191650390625, + -0.03564453125, + 0.00119781494140625, + 0.02001953125, + -0.01513671875, + 0.0390625, + -0.0047607421875, + 0.0166015625, + -0.00439453125, + -0.0245361328125, + 0.0184326171875, + -0.0302734375, + 0.005401611328125, + 0.00084686279296875, + 0.033935546875, + 0.0019989013671875, + -0.01123046875, + -0.0184326171875, + -0.00994873046875, + 0.01300048828125, + -0.027099609375, + -0.00787353515625, + 0.0218505859375, + 0.0205078125, + -0.042236328125, + 0.01446533203125, + -0.018798828125, + -0.0277099609375, + -0.04833984375, + 0.0137939453125, + 0.01361083984375, + 0.00433349609375, + 0.00787353515625, + 0.003173828125, + -0.034423828125, + -0.0238037109375, + 0.000213623046875, + 0.0054931640625, + 0.00665283203125, + -0.0140380859375, + -0.01055908203125, + 0.0238037109375, + -0.01153564453125, + 0.054443359375, + 0.03857421875, + 0.002227783203125, + 0.000934600830078125, + -0.00994873046875, + 0.00179290771484375, + -0.012939453125, + -0.009521484375, + -0.054443359375, + -0.041015625, + -0.00616455078125, + -0.002960205078125, + -0.0089111328125, + -0.0277099609375, + -0.0111083984375, + -0.01275634765625, + -0.0181884765625, + 0.0125732421875, + -0.0235595703125, + 0.0009613037109375, + 0.014404296875, + 0.0194091796875, + 0.033447265625, + 0.023193359375, + -0.00067901611328125, + 0.049072265625, + -0.007232666015625, + -0.01263427734375, + 0.0458984375, + -0.003631591796875, + -0.035888671875, + -0.06640625, + 0.030517578125, + -0.027099609375, + -0.05908203125, + 0.04052734375, + -0.005340576171875, + 0.017822265625, + -0.0146484375, + -0.0118408203125, + -0.0146484375, + 0.01025390625, + -0.0306396484375, + -0.01080322265625, + -0.02099609375, + 0.00653076171875, + 0.00848388671875, + -0.0224609375, + 0.0277099609375, + -0.006439208984375, + -0.01556396484375, + 0.009033203125, + -0.02587890625, + 0.004669189453125, + -0.00433349609375, + 0.033203125, + -0.0159912109375, + 0.02880859375, + -0.0263671875, + 0.000385284423828125, + 0.006378173828125, + -0.0081787109375, + 0.02783203125, + -0.03857421875, + 0.015380859375, + 0.00927734375, + 0.04345703125, + -0.0002727508544921875, + 0.0224609375, + 0.017333984375, + -0.07763671875, + 0.030029296875, + -0.03125, + 0.0240478515625, + -0.022216796875, + 0.01470947265625, + 0.048095703125, + 0.01495361328125, + 0.052001953125, + 0.00518798828125, + 0.0245361328125, + 0.0235595703125, + 0.052001953125, + -0.0228271484375, + 0.034912109375, + -0.02734375, + 0.01275634765625, + -0.037109375, + -0.033935546875, + 0.068359375, + -0.0284423828125, + -0.01025390625, + 0.01409912109375, + 0.01214599609375, + 0.057373046875, + 0.0029754638671875, + 0.00116729736328125, + -0.0281982421875, + -0.0018463134765625, + -0.037109375, + 0.003509521484375, + -0.02587890625, + 0.01483154296875, + -0.0284423828125, + 0.0888671875, + -0.018798828125, + -0.0311279296875, + -0.00390625, + 0.0123291015625, + -0.0152587890625, + 0.007354736328125, + -0.0064697265625, + 0.00396728515625, + -0.026123046875, + 0.015625, + -0.00927734375, + -0.00921630859375, + 0.0123291015625, + -0.0634765625, + 0.038330078125, + 0.0174560546875, + -0.046142578125, + 0.01422119140625, + -0.016357421875, + -0.0341796875, + -0.044677734375, + -0.007171630859375, + 0.0115966796875, + 0.021240234375, + -0.0037689208984375, + -0.0234375, + -0.0263671875, + 0.025390625, + -0.0194091796875, + -0.000843048095703125, + 0.06884765625, + -0.00738525390625, + 0.00872802734375, + 0.0294189453125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 15.358657999996694, + "queue_ms": 0.10244199999931425, + "tokenization_ms": 0.016650000006279697, + "inference_ms": 15.091482000002543, + "postprocessing_ms": null + } + }, + { + "id": "chunk-1", + "dense": [ + 0.032470703125, + -0.021240234375, + -0.050537109375, + 0.07421875, + -0.0203857421875, + -0.025634765625, + 0.0322265625, + 0.02001953125, + -0.01123046875, + -0.007171630859375, + -0.0196533203125, + 0.000942230224609375, + -0.0072021484375, + 0.004119873046875, + 0.0703125, + -0.01348876953125, + 0.056396484375, + -0.032958984375, + 0.0291748046875, + -0.0031585693359375, + -0.01458740234375, + -0.00408935546875, + -0.037353515625, + 0.001800537109375, + 0.01171875, + -0.01275634765625, + -0.03515625, + -0.00787353515625, + -0.01507568359375, + -0.048828125, + -0.04638671875, + 0.007476806640625, + 0.0191650390625, + 0.01104736328125, + -0.0654296875, + -0.033447265625, + -0.000797271728515625, + -0.001373291015625, + -0.035400390625, + 0.026123046875, + -0.00194549560546875, + -0.0179443359375, + 0.0322265625, + -0.0022735595703125, + 0.0157470703125, + -0.050537109375, + -0.0142822265625, + -0.0091552734375, + 0.031982421875, + -0.0419921875, + 0.003570556640625, + 0.0013885498046875, + 0.07373046875, + -0.06591796875, + -0.0135498046875, + 0.0294189453125, + -0.0177001953125, + -0.0002765655517578125, + -0.06103515625, + -0.050048828125, + -0.03466796875, + 0.04443359375, + 0.010009765625, + -0.01611328125, + -0.046875, + 0.10791015625, + 0.037109375, + 0.006622314453125, + -0.044189453125, + -0.0185546875, + -0.004119873046875, + -0.033203125, + 0.0238037109375, + -0.018798828125, + -0.044921875, + 0.04248046875, + 0.054931640625, + -0.017578125, + -0.00860595703125, + -0.0157470703125, + 0.01287841796875, + -0.03271484375, + -0.0380859375, + 0.0196533203125, + 0.06591796875, + 0.02978515625, + -0.02197265625, + -0.0155029296875, + -0.01129150390625, + -0.0050048828125, + 0.068359375, + 0.038818359375, + 0.01470947265625, + -0.0113525390625, + -0.047607421875, + 0.02099609375, + -0.01043701171875, + -0.0074462890625, + -0.0017547607421875, + -0.0142822265625, + 0.004241943359375, + -0.0283203125, + 0.004180908203125, + -0.00341796875, + 0.02880859375, + -0.0303955078125, + 0.053955078125, + 0.0244140625, + 0.01434326171875, + 0.015869140625, + 0.05419921875, + -0.022705078125, + 0.04931640625, + -0.0177001953125, + -0.01708984375, + 0.0167236328125, + -0.03955078125, + -0.03515625, + -0.0216064453125, + -0.0576171875, + 0.000591278076171875, + 0.020751953125, + 0.052734375, + -0.00909423828125, + 0.0081787109375, + -0.0634765625, + -0.0181884765625, + -0.032958984375, + 0.004486083984375, + -0.023193359375, + 0.0093994140625, + -0.030517578125, + -0.03662109375, + 0.00122833251953125, + -0.059814453125, + -0.037841796875, + -0.023193359375, + 0.00628662109375, + 0.00787353515625, + -0.0478515625, + 0.04248046875, + 0.016845703125, + 0.0167236328125, + -0.02880859375, + 0.029296875, + -0.000400543212890625, + 0.01190185546875, + 0.0189208984375, + 0.013427734375, + -0.068359375, + -0.01080322265625, + 0.01214599609375, + 0.07470703125, + -0.01171875, + 0.009765625, + 0.0177001953125, + 0.025146484375, + 0.00927734375, + 0.0181884765625, + -0.001007080078125, + -0.017578125, + 2.968311309814453e-05, + -0.00360107421875, + 0.0255126953125, + 0.05126953125, + -0.0191650390625, + 0.007293701171875, + 0.0142822265625, + -0.0024261474609375, + 0.005340576171875, + 0.04052734375, + -0.021240234375, + 0.038818359375, + 0.00439453125, + -0.0279541015625, + 0.0517578125, + 0.09130859375, + 0.01806640625, + 0.007537841796875, + -0.029296875, + -0.00140380859375, + -0.00518798828125, + 0.01123046875, + 0.01165771484375, + -0.0064697265625, + 0.048583984375, + 0.0020904541015625, + -0.04443359375, + 0.0185546875, + 0.01104736328125, + -0.0036163330078125, + -0.0189208984375, + 0.01446533203125, + 0.0299072265625, + 0.0380859375, + 0.01953125, + 0.056396484375, + 0.004119873046875, + -0.01336669921875, + -0.0179443359375, + -0.016357421875, + 0.0107421875, + 0.06689453125, + 0.013671875, + -0.00909423828125, + -0.00121307373046875, + 0.0006256103515625, + -0.019775390625, + 0.014892578125, + -0.014892578125, + 0.036865234375, + 0.0228271484375, + 0.01190185546875, + -0.0245361328125, + -0.06494140625, + 0.0311279296875, + 0.00640869140625, + -0.00738525390625, + -0.006561279296875, + 0.0111083984375, + -0.0111083984375, + 0.01611328125, + -0.0654296875, + -0.028564453125, + 0.00341796875, + -0.007598876953125, + -0.0240478515625, + 0.02685546875, + 0.01458740234375, + 0.022216796875, + 0.0245361328125, + 0.00360107421875, + 0.0167236328125, + -0.011962890625, + 0.0279541015625, + 0.04248046875, + 0.00738525390625, + -0.00012159347534179688, + -0.01287841796875, + 0.040771484375, + 0.03759765625, + -0.00038909912109375, + -0.021240234375, + 0.014892578125, + -0.0283203125, + 0.0123291015625, + -0.007598876953125, + 0.024658203125, + -0.0150146484375, + 0.000286102294921875, + 0.01287841796875, + 0.01336669921875, + -0.058837890625, + 0.0152587890625, + 0.048828125, + 0.0274658203125, + -0.048828125, + 0.004791259765625, + -0.0274658203125, + 0.00457763671875, + 0.002349853515625, + 0.053466796875, + 0.03515625, + 0.001495361328125, + 0.0267333984375, + 0.001922607421875, + -0.037353515625, + -0.01031494140625, + 0.038330078125, + 0.02490234375, + 0.006256103515625, + 0.0018463134765625, + -9.059906005859375e-05, + 0.00640869140625, + -0.0155029296875, + -0.004180908203125, + 0.004638671875, + -0.0194091796875, + 0.02978515625, + 0.048828125, + 0.0341796875, + -0.01708984375, + -0.014404296875, + -0.007354736328125, + -0.001617431640625, + -0.041748046875, + -0.0634765625, + -0.042724609375, + 0.0087890625, + -0.00872802734375, + 0.03271484375, + -0.0281982421875, + 0.05029296875, + -0.01416015625, + 0.01202392578125, + 0.017333984375, + -0.0021514892578125, + -0.1669921875, + -0.008056640625, + 0.01397705078125, + 0.02099609375, + 0.000629425048828125, + 0.01806640625, + -0.0262451171875, + -0.0185546875, + -0.0169677734375, + 0.047607421875, + 0.02880859375, + -0.0439453125, + -0.01519775390625, + -0.064453125, + -0.00885009765625, + -0.015380859375, + 0.003448486328125, + 0.02587890625, + 0.03271484375, + -0.052490234375, + -0.01129150390625, + 0.064453125, + -0.01153564453125, + 0.023193359375, + -0.018798828125, + -0.005828857421875, + 0.045654296875, + 0.048583984375, + -0.0040283203125, + 0.022705078125, + -0.01507568359375, + -0.0250244140625, + 0.00482177734375, + 0.04052734375, + 0.0062255859375, + -0.00506591796875, + -0.00174713134765625, + -0.080078125, + 0.034423828125, + 0.057861328125, + 0.006561279296875, + 0.0859375, + -0.005523681640625, + -0.00946044921875, + 0.03271484375, + -0.0615234375, + -0.00616455078125, + 0.053466796875, + -0.032958984375, + -0.0546875, + 0.03466796875, + 0.00341796875, + -0.0118408203125, + -0.04638671875, + 0.008056640625, + -0.020263671875, + 0.028564453125, + 0.01092529296875, + -0.0213623046875, + -0.009765625, + 0.007476806640625, + -0.006591796875, + -0.056396484375, + 0.0341796875, + -0.02685546875, + -0.00738525390625, + -0.005523681640625, + -0.01519775390625, + 0.0123291015625, + -0.01708984375, + 0.005645751953125, + 0.01519775390625, + 0.0279541015625, + 0.064453125, + 0.0286865234375, + 0.00677490234375, + -0.068359375, + -0.044189453125, + 0.0228271484375, + -0.0849609375, + -0.018310546875, + 0.035400390625, + 0.002593994140625, + -0.00823974609375, + -0.0169677734375, + -0.0537109375, + 0.025146484375, + 0.02099609375, + 0.0791015625, + 0.21875, + 0.00274658203125, + -0.0277099609375, + -0.0322265625, + 0.0301513671875, + -0.053955078125, + -0.000835418701171875, + -0.0225830078125, + -0.03662109375, + -0.017578125, + -0.034912109375, + 0.0341796875, + 0.005218505859375, + 0.000247955322265625, + -0.002105712890625, + 0.0031280517578125, + 0.0019683837890625, + -0.01171875, + 0.06787109375, + 0.0018310546875, + 0.058837890625, + -0.0181884765625, + 0.06689453125, + -0.022705078125, + 0.004608154296875, + -0.02001953125, + -0.03173828125, + -0.007232666015625, + -0.03076171875, + 0.0269775390625, + -0.0537109375, + 0.00013256072998046875, + 0.028564453125, + -0.03125, + -0.03515625, + 0.028564453125, + 0.01007080078125, + -0.0216064453125, + 0.03564453125, + -0.01409912109375, + -0.0014495849609375, + -0.0164794921875, + -0.04443359375, + -0.05126953125, + 0.045166015625, + -0.01556396484375, + 0.00408935546875, + -0.0019378662109375, + -0.00872802734375, + 0.0194091796875, + -0.0291748046875, + 0.005615234375, + -0.0048828125, + 0.00439453125, + -0.052490234375, + 0.0029296875, + 0.01153564453125, + 0.04296875, + -0.01080322265625, + 0.028076171875, + 0.031982421875, + 0.020751953125, + -0.014404296875, + -0.0213623046875, + 0.01556396484375, + 0.00579833984375, + 0.023193359375, + -0.048828125, + 0.0257568359375, + 0.0361328125, + 0.03564453125, + -0.0028228759765625, + -0.01263427734375, + 0.01385498046875, + 0.020751953125, + -0.014892578125, + -0.00384521484375, + 0.050048828125, + 0.00921630859375, + -0.0279541015625, + -0.05517578125, + -0.0191650390625, + -0.052734375, + -0.01202392578125, + -0.0189208984375, + 0.0035247802734375, + 0.023681640625, + 0.041259765625, + -0.01373291015625, + 0.01904296875, + -0.029296875, + -0.02099609375, + -0.0024566650390625, + -0.008544921875, + -0.03369140625, + 0.031494140625, + 0.00946044921875, + -0.004180908203125, + 0.001495361328125, + 0.018798828125, + -0.01153564453125, + -0.0274658203125, + -0.04248046875, + 0.058837890625, + 0.0146484375, + -0.045654296875, + 0.012451171875, + 0.00714111328125, + -0.01263427734375, + -0.017578125, + 0.03271484375, + 0.01123046875, + -0.03955078125, + -0.01068115234375, + 0.017333984375, + 0.0301513671875, + -0.0068359375, + 0.04052734375, + -0.040771484375, + 0.0322265625, + -0.0294189453125, + 0.0186767578125, + 0.04248046875, + 0.04443359375, + 0.00104522705078125, + -0.046875, + -0.01507568359375, + -0.01336669921875, + 0.019775390625, + 0.02587890625, + 0.004638671875, + -0.0291748046875, + -0.01611328125, + 0.0255126953125, + 0.033935546875, + 0.0140380859375, + 0.044189453125, + 0.000335693359375, + -0.0240478515625, + -0.005096435546875, + 0.0106201171875, + -0.0111083984375, + -0.025634765625, + -0.058837890625, + -0.054931640625, + -0.0216064453125, + -0.0546875, + -0.01708984375, + -0.06103515625, + 0.0030364990234375, + 0.035888671875, + -0.0172119140625, + -0.0113525390625, + -0.058837890625, + -0.048095703125, + 0.0263671875, + 0.0172119140625, + -0.0184326171875, + -0.030517578125, + 0.000152587890625, + -0.022216796875, + 0.040283203125, + 0.029541015625, + 0.04150390625, + 0.0419921875, + 0.0098876953125, + -0.0181884765625, + 0.00106048583984375, + 0.045166015625, + 0.006561279296875, + 0.0194091796875, + -0.04443359375, + -0.016357421875, + 0.0096435546875, + 0.042724609375, + 0.01312255859375, + -0.02978515625, + 0.0106201171875, + 0.013427734375, + 0.03271484375, + -0.027099609375, + 0.04052734375, + -0.048095703125, + 0.0517578125, + 0.004119873046875, + -0.031005859375, + -0.027099609375, + -0.0147705078125, + -0.0020751953125, + -0.0146484375, + -0.033447265625, + 0.0947265625, + -0.0279541015625, + 0.010498046875, + 0.01904296875, + 0.037353515625, + 0.045654296875, + 0.01324462890625, + 0.00360107421875, + -0.0306396484375, + -0.00732421875, + -0.0294189453125, + 0.01202392578125, + 0.017822265625, + 0.036865234375, + -0.03759765625, + -0.0064697265625, + 0.0030670166015625, + -0.009033203125, + -0.00244140625, + 0.01336669921875, + 0.0184326171875, + -0.04296875, + 0.0166015625, + 0.0029144287109375, + 0.0084228515625, + 0.052490234375, + 0.034423828125, + -0.0267333984375, + -0.036376953125, + 0.0164794921875, + -0.005035400390625, + 0.017822265625, + -0.038818359375, + 0.00016307830810546875, + -0.0054931640625, + 0.02099609375, + -0.001312255859375, + 0.0303955078125, + 0.020751953125, + -0.000301361083984375, + -0.032470703125, + -0.0179443359375, + -0.023193359375, + -0.004364013671875, + 0.055908203125, + -0.01318359375, + 0.021484375, + 0.07568359375, + -0.0341796875, + 0.0078125, + -0.043701171875, + -0.002655029296875, + 0.028564453125, + 0.0174560546875, + 0.036376953125, + 0.006683349609375, + -0.0164794921875, + 0.0213623046875, + -0.00677490234375, + -0.010986328125, + -0.005462646484375, + -0.007354736328125, + -0.052734375, + 0.0040283203125, + 0.02001953125, + 0.025146484375, + 0.01556396484375, + -0.04736328125, + -0.0164794921875, + -0.035400390625, + 0.022216796875, + 0.0218505859375, + 0.00872802734375, + 0.07275390625, + -0.045166015625, + -0.00653076171875, + -0.005401611328125, + -0.01263427734375, + -0.051025390625, + -0.01434326171875, + -0.046630859375, + 0.0322265625, + -0.09033203125, + -0.05517578125, + 0.01708984375, + -0.03564453125, + 0.06591796875, + 0.027099609375, + 0.0006561279296875, + -0.03125, + 0.009765625, + 0.005706787109375, + -0.016357421875, + -0.0002651214599609375, + -0.046875, + 0.00927734375, + 0.006683349609375, + 0.033203125, + -0.008544921875, + 0.046142578125, + -0.0018768310546875, + -0.025634765625, + 0.00823974609375, + -0.01226806640625, + 0.01495361328125, + -0.008056640625, + 0.01495361328125, + -0.0118408203125, + -0.02001953125, + -0.016357421875, + -0.01470947265625, + -0.0279541015625, + -0.059814453125, + 0.01519775390625, + 0.01043701171875, + 0.00506591796875, + -0.0203857421875, + 0.036865234375, + -0.000499725341796875, + 0.000919342041015625, + -0.0216064453125, + 0.0155029296875, + 0.00640869140625, + 0.0225830078125, + 0.01263427734375, + -0.01397705078125, + 0.0042724609375, + 0.0152587890625, + 0.033935546875, + -0.038818359375, + 0.0016937255859375, + -0.0030517578125, + 0.03515625, + -0.01226806640625, + 0.00799560546875, + -0.004730224609375, + 0.0240478515625, + -0.04541015625, + 0.0159912109375, + 0.000835418701171875, + 0.0016021728515625, + 0.0028076171875, + -0.01031494140625, + 0.034423828125, + -0.0030517578125, + 0.0174560546875, + -0.0218505859375, + 0.0322265625, + -0.068359375, + -0.0118408203125, + -0.018798828125, + 0.0625, + 0.00518798828125, + -0.01220703125, + -0.048583984375, + -0.03955078125, + -0.01153564453125, + 0.0157470703125, + 0.0059814453125, + -0.04443359375, + -0.00909423828125, + -0.013671875, + -0.017578125, + -0.0361328125, + -0.00714111328125, + -0.00958251953125, + 0.06396484375, + 0.037841796875, + 0.0181884765625, + 0.03515625, + 0.0147705078125, + -0.0064697265625, + 0.0400390625, + 0.0052490234375, + 0.050537109375, + -0.0086669921875, + 0.00396728515625, + 0.04443359375, + -0.004730224609375, + -0.017333984375, + -0.041259765625, + 0.0177001953125, + 0.011962890625, + 0.018310546875, + 0.0179443359375, + 0.020263671875, + 0.05224609375, + 0.01507568359375, + 0.0216064453125, + -0.01953125, + -0.01153564453125, + -0.008544921875, + -0.0303955078125, + -0.040283203125, + 0.006256103515625, + -0.037109375, + 0.002777099609375, + -0.022705078125, + 0.02099609375, + -0.005859375, + 0.04150390625, + -0.053955078125, + 0.010498046875, + -0.1396484375, + 0.0279541015625, + 0.0162353515625, + -0.039306640625, + -0.00567626953125, + 0.006561279296875, + -0.01129150390625, + 0.00048828125, + 0.000576019287109375, + -0.043212890625, + -0.000782012939453125, + 0.08349609375, + 0.0123291015625, + -0.00115966796875, + -0.0286865234375, + 0.00872802734375, + -0.0615234375, + -0.0164794921875, + 0.0038909912109375, + -0.0002765655517578125, + 0.00157928466796875, + -0.0157470703125, + 0.043212890625, + -0.03076171875, + -0.02490234375, + -0.046630859375, + 0.05029296875, + -0.0279541015625, + -0.033447265625, + -0.016845703125, + -0.032958984375, + -0.07177734375, + 0.00689697265625, + 0.0576171875, + 0.07080078125, + 0.0015411376953125, + 0.0208740234375, + -0.048583984375, + -0.040283203125, + -0.0032806396484375, + 0.0274658203125, + 0.004913330078125, + -0.037841796875, + 0.026123046875, + 0.000583648681640625, + 0.005523681640625, + -0.040771484375, + -0.0074462890625, + -0.033447265625, + -0.0252685546875, + -0.048583984375, + 0.038330078125, + 0.046142578125, + -0.004241943359375, + 0.0167236328125, + -0.0024261474609375, + -0.021484375, + -0.0277099609375, + 0.04638671875, + 0.052734375, + 0.0213623046875, + 0.02197265625, + 0.000858306884765625, + -0.040771484375, + 0.005523681640625, + -0.0150146484375, + 0.007781982421875, + -0.004180908203125, + 0.062255859375, + -0.0111083984375, + -0.043701171875, + -0.0157470703125, + -0.00445556640625, + 0.008056640625, + 0.016845703125, + -0.03662109375, + 0.0274658203125, + -0.022216796875, + 0.01519775390625, + -0.00136566162109375, + -0.09130859375, + -0.0311279296875, + -0.0400390625, + -0.037841796875, + 0.036865234375, + -0.0081787109375, + 0.00095367431640625, + -0.0191650390625, + 0.058349609375, + -0.01165771484375, + -0.068359375, + 0.01263427734375, + -0.016845703125, + 0.0023956298828125, + -0.064453125, + -0.004241943359375, + -0.0576171875, + -0.001007080078125, + -0.041259765625, + -0.04052734375, + -0.0400390625, + -0.01324462890625, + 0.01446533203125, + -0.0033416748046875, + -0.0244140625, + 0.01495361328125, + 0.04248046875, + 0.0184326171875, + 0.0191650390625, + 0.001068115234375, + 0.0201416015625, + -0.0361328125, + 0.0002288818359375, + -0.031494140625, + 0.0303955078125, + -0.003265380859375, + -0.0218505859375, + -0.017333984375, + -0.0439453125, + -0.0026702880859375, + -0.031005859375, + -0.0155029296875, + -0.01123046875, + -0.026123046875, + -0.037109375, + 0.018310546875, + 0.03662109375, + -0.0213623046875, + -0.0267333984375, + -0.0101318359375, + 0.0142822265625, + -0.04296875, + 0.00299072265625, + 0.0201416015625, + 0.0062255859375, + -0.0040283203125, + -0.0162353515625, + 0.0174560546875, + 0.00063323974609375, + 0.0225830078125, + -0.000614166259765625, + 0.032470703125, + -0.007476806640625, + -0.005035400390625, + -0.016357421875, + 0.037109375, + 0.011962890625, + 0.00616455078125, + 0.0026092529296875, + -0.024658203125, + -0.032470703125, + -0.016357421875, + -0.052734375, + 0.03955078125, + -0.0225830078125, + 0.02099609375, + 0.02734375, + -0.03857421875, + -0.0201416015625, + 0.0025787353515625, + -0.029541015625, + -0.053466796875, + -0.034423828125, + -0.0257568359375, + 0.0274658203125, + 0.055419921875, + -0.03173828125, + 0.0439453125, + 0.00115203857421875, + -0.04443359375, + -0.020751953125, + 0.0169677734375, + -0.006011962890625, + 0.00732421875, + 0.01190185546875, + -0.005462646484375, + 0.006683349609375, + -0.0322265625, + 0.041748046875, + -0.00982666015625, + 0.01312255859375, + 0.033935546875, + 0.0478515625, + 0.0177001953125, + 0.040283203125, + 9.012222290039062e-05, + 0.007537841796875, + 0.0277099609375, + -0.019775390625, + 0.022705078125, + 0.045166015625, + 0.02197265625, + -0.03271484375, + -0.01806640625, + 0.0216064453125, + -0.022216796875, + 0.018798828125, + 0.010986328125, + -0.016357421875, + 0.024658203125, + -0.02685546875, + -0.019287109375, + -0.011962890625, + -0.0238037109375, + -0.027099609375, + 0.028564453125, + -0.0167236328125, + -0.0021514892578125, + -0.03515625, + 0.0003032684326171875, + 0.040771484375, + -0.04931640625, + -5.507469177246094e-05, + 0.03955078125, + -0.004791259765625, + 1.6927719116210938e-05, + -0.00360107421875, + -0.056640625, + 0.029296875, + -0.004638671875, + -5.221366882324219e-05, + 0.01556396484375, + -0.02978515625, + -0.00909423828125, + -0.00104522705078125, + 0.0147705078125, + -0.03271484375, + 0.006988525390625, + 0.007537841796875, + -0.0234375, + 0.010986328125, + -0.0262451171875, + 0.039306640625, + 0.0068359375, + -0.0252685546875, + -0.026123046875, + -0.02978515625, + 0.046630859375, + 0.000553131103515625, + 0.01495361328125, + 0.028076171875, + 0.013671875, + 3.8623809814453125e-05, + 0.0654296875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 15.509692000009068, + "queue_ms": 1.5471530000041867, + "tokenization_ms": 0.017560000003413734, + "inference_ms": 13.784053999998491, + "postprocessing_ms": null + } + }, + { + "id": "chunk-2", + "dense": [ + -0.0201416015625, + 0.0194091796875, + -0.0264892578125, + 0.04150390625, + -0.0013885498046875, + -0.0177001953125, + 0.0184326171875, + 0.0242919921875, + 0.0011444091796875, + 0.00653076171875, + -0.0361328125, + 0.00836181640625, + 0.0179443359375, + 0.004180908203125, + 0.024658203125, + -0.004364013671875, + 0.0263671875, + -0.01080322265625, + 0.037109375, + -0.019287109375, + -0.03173828125, + 0.03271484375, + -0.062255859375, + 0.02099609375, + 0.0159912109375, + 0.01385498046875, + -0.032470703125, + 0.048583984375, + -0.0023040771484375, + -0.01544189453125, + -0.03076171875, + -0.002777099609375, + 0.0035400390625, + 0.0111083984375, + -0.03369140625, + -0.024658203125, + 0.009521484375, + -0.03271484375, + -0.02099609375, + 0.059814453125, + -0.040283203125, + -0.04248046875, + 0.0216064453125, + -0.042236328125, + 0.0174560546875, + -0.03564453125, + -0.0247802734375, + -0.00787353515625, + 0.0299072265625, + -0.0654296875, + -0.043701171875, + 0.0032958984375, + 0.0322265625, + -0.048583984375, + -0.037353515625, + 0.027099609375, + -0.0301513671875, + 0.00738525390625, + -0.076171875, + -0.032958984375, + -0.030029296875, + 0.01007080078125, + -0.00921630859375, + -0.0079345703125, + 0.007354736328125, + 0.0419921875, + -0.01300048828125, + 0.01507568359375, + -0.018798828125, + -0.0546875, + 0.04931640625, + -0.033203125, + -0.000659942626953125, + -0.0224609375, + -0.06640625, + 0.045654296875, + -0.028076171875, + -0.045654296875, + -0.057373046875, + 0.027099609375, + 0.031494140625, + 0.0269775390625, + -0.060302734375, + 0.0038604736328125, + 0.039306640625, + 0.0260009765625, + -0.020263671875, + 0.020751953125, + -0.045654296875, + 0.03271484375, + 0.0145263671875, + 0.01544189453125, + -0.00921630859375, + -0.0084228515625, + -0.03466796875, + 0.0281982421875, + -0.0181884765625, + -0.05810546875, + 0.0147705078125, + -0.0213623046875, + -0.0186767578125, + 0.00579833984375, + -0.028076171875, + -0.005126953125, + 0.043701171875, + -0.01611328125, + 0.02587890625, + 0.039306640625, + 0.01226806640625, + -0.00946044921875, + 0.04248046875, + 0.06396484375, + 0.01348876953125, + 0.0213623046875, + 0.00958251953125, + -0.0120849609375, + -0.041259765625, + -0.0272216796875, + 0.042724609375, + -0.0093994140625, + -0.0201416015625, + 0.050537109375, + 0.003692626953125, + 0.0157470703125, + -0.0218505859375, + -0.035888671875, + 0.0294189453125, + -0.02294921875, + 0.02294921875, + -0.0140380859375, + -0.0169677734375, + 0.0230712890625, + 0.004974365234375, + 0.01544189453125, + 0.003997802734375, + -0.0380859375, + 0.00726318359375, + 0.00689697265625, + 0.0135498046875, + -0.0264892578125, + 0.02294921875, + 0.01904296875, + -0.0078125, + -0.01336669921875, + -0.01446533203125, + 0.006622314453125, + 0.048095703125, + 0.004913330078125, + 0.0047607421875, + -0.0308837890625, + -0.007049560546875, + -0.005035400390625, + 0.01171875, + 0.01416015625, + -0.035400390625, + -0.0299072265625, + 0.0311279296875, + 0.0159912109375, + -0.043701171875, + 0.00421142578125, + 0.0703125, + 0.03125, + -0.01300048828125, + 0.0152587890625, + 0.049072265625, + -0.01361083984375, + 0.04052734375, + 0.03564453125, + -0.0235595703125, + -0.0322265625, + 0.0230712890625, + -0.0181884765625, + 0.007476806640625, + 0.001190185546875, + 0.028076171875, + 0.049072265625, + 0.04443359375, + 0.005157470703125, + 0.004669189453125, + -0.0308837890625, + 0.043212890625, + 0.014404296875, + -0.0038299560546875, + 0.045654296875, + -0.01318359375, + 0.061279296875, + 0.00144195556640625, + -0.003692626953125, + 0.01116943359375, + -0.01611328125, + -0.06689453125, + -0.0162353515625, + 0.026611328125, + 0.072265625, + 0.05859375, + 0.00225830078125, + 0.020751953125, + 0.003265380859375, + 0.0089111328125, + 0.0269775390625, + -0.046875, + -0.005859375, + 0.024658203125, + 0.0654296875, + 0.004180908203125, + 0.0042724609375, + -0.0284423828125, + -0.0147705078125, + 0.00872802734375, + -0.049560546875, + 0.039794921875, + -0.05908203125, + -0.027099609375, + -0.0223388671875, + 0.020263671875, + 0.053955078125, + 0.015869140625, + -0.039794921875, + 0.025390625, + -0.00286865234375, + 0.00592041015625, + 0.0181884765625, + -0.01708984375, + 0.0216064453125, + -0.01361083984375, + -0.043212890625, + 0.000568389892578125, + 0.01239013671875, + -0.002166748046875, + -0.044921875, + -0.0157470703125, + 0.0361328125, + -0.0159912109375, + 0.01483154296875, + 0.0196533203125, + 0.009521484375, + 0.00933837890625, + 0.034423828125, + 0.0157470703125, + 0.00836181640625, + -0.0079345703125, + -0.021240234375, + 0.04443359375, + -0.000942230224609375, + 0.003326416015625, + -0.0089111328125, + -0.0106201171875, + -0.033203125, + -0.0191650390625, + -0.0206298828125, + 0.021728515625, + -0.01422119140625, + -0.010986328125, + -0.033447265625, + 0.030029296875, + 0.01226806640625, + 0.01483154296875, + 0.00628662109375, + -0.020263671875, + -0.036376953125, + -0.0213623046875, + 0.0400390625, + 0.01190185546875, + -0.00408935546875, + 0.043212890625, + 0.030517578125, + 0.005889892578125, + 0.0361328125, + 0.01055908203125, + -0.01092529296875, + -0.0269775390625, + -0.0019683837890625, + 0.02294921875, + -0.0322265625, + -0.03369140625, + 0.04443359375, + 0.003143310546875, + -0.036865234375, + 0.0634765625, + 0.0260009765625, + 0.06103515625, + 0.01611328125, + 0.03857421875, + -0.0230712890625, + 0.037353515625, + -0.0125732421875, + -0.04736328125, + -0.01031494140625, + -0.01092529296875, + 0.01025390625, + 0.024658203125, + -0.0390625, + 0.048583984375, + -0.047119140625, + -0.025146484375, + 0.0186767578125, + 0.005859375, + -0.173828125, + 0.03076171875, + 0.014404296875, + -0.037109375, + 0.037109375, + 0.01171875, + -0.039794921875, + -0.06396484375, + 0.001739501953125, + 0.04736328125, + -0.00238037109375, + -0.039794921875, + 0.002227783203125, + -0.041015625, + 0.028076171875, + 0.00121307373046875, + -0.036865234375, + 0.023681640625, + -0.00836181640625, + -0.0301513671875, + 0.00811767578125, + -0.01031494140625, + 0.03466796875, + 0.027099609375, + -0.00738525390625, + 0.0014495849609375, + 0.040283203125, + 0.0234375, + -0.001617431640625, + -0.013916015625, + -0.020751953125, + 0.07470703125, + 0.007720947265625, + 0.041015625, + -6.580352783203125e-05, + 0.026611328125, + -0.01239013671875, + 0.0218505859375, + 0.0189208984375, + -0.0003070831298828125, + 0.0311279296875, + 0.017333984375, + -0.008544921875, + -0.0042724609375, + 0.00016021728515625, + -0.04833984375, + -0.01806640625, + 0.0223388671875, + -0.06884765625, + -0.05517578125, + -0.02001953125, + -0.0223388671875, + 0.0101318359375, + 0.006744384765625, + -0.051025390625, + 0.0240478515625, + 0.01611328125, + -0.027099609375, + 0.009765625, + 0.0179443359375, + -0.012939453125, + -0.00390625, + -0.038330078125, + 0.0228271484375, + -0.0308837890625, + 0.002197265625, + 0.020751953125, + -0.03271484375, + 0.040283203125, + -0.0673828125, + -0.00189208984375, + -0.0206298828125, + -0.00194549560546875, + 0.037353515625, + 0.0027008056640625, + -0.01007080078125, + -0.033447265625, + -0.052001953125, + -0.03515625, + -0.0634765625, + 0.00982666015625, + 0.0498046875, + 0.0033721923828125, + -0.037353515625, + -0.00147247314453125, + 0.0211181640625, + 0.053466796875, + 0.0118408203125, + 0.0419921875, + 0.234375, + 0.036865234375, + 0.029052734375, + -0.022216796875, + 0.0257568359375, + -0.03515625, + 0.0517578125, + -0.02197265625, + 0.023681640625, + -0.01446533203125, + -0.0218505859375, + 0.00921630859375, + 0.0164794921875, + 0.03515625, + 0.0146484375, + 0.0419921875, + -0.0267333984375, + -0.025390625, + 0.09423828125, + -0.006195068359375, + 0.043212890625, + -0.029541015625, + 0.049560546875, + -0.025146484375, + -0.043212890625, + 0.01495361328125, + -0.007720947265625, + -0.04248046875, + -0.01611328125, + -0.0225830078125, + -0.041015625, + 0.0130615234375, + -0.02587890625, + -0.04248046875, + -0.044677734375, + 0.01904296875, + -0.0103759765625, + -0.006683349609375, + -0.0096435546875, + 0.03173828125, + 0.004638671875, + -0.01953125, + 0.020751953125, + -0.045166015625, + -0.005859375, + -0.04052734375, + -0.011474609375, + 0.002716064453125, + 0.0194091796875, + 0.041015625, + -0.026123046875, + 0.010009765625, + -9.632110595703125e-05, + 0.0272216796875, + -0.0181884765625, + -0.010986328125, + 0.00909423828125, + 0.0162353515625, + 0.003326416015625, + 0.00250244140625, + 0.0299072265625, + -0.00439453125, + -0.0211181640625, + -0.057861328125, + 0.0267333984375, + 0.01080322265625, + 0.0157470703125, + -0.0126953125, + 0.043701171875, + 0.045166015625, + 0.0023040771484375, + -0.0003662109375, + -0.00274658203125, + 0.003753662109375, + 0.020263671875, + -0.017822265625, + 0.0201416015625, + 0.059814453125, + -0.01214599609375, + -0.025390625, + -0.036865234375, + -0.06005859375, + -0.021728515625, + -0.04052734375, + 0.022216796875, + -0.001922607421875, + 0.0230712890625, + 0.04833984375, + -0.00128936767578125, + -0.000629425048828125, + -0.03857421875, + -0.0198974609375, + -0.0111083984375, + -0.023681640625, + -0.05810546875, + 0.00408935546875, + -0.0238037109375, + -0.0216064453125, + -0.0213623046875, + 0.002716064453125, + 0.0240478515625, + -0.06005859375, + -0.03564453125, + -0.034423828125, + 0.021728515625, + -0.0010986328125, + 0.020751953125, + 0.0205078125, + 0.031982421875, + 0.0108642578125, + -0.029296875, + 0.04248046875, + 0.032470703125, + -0.0223388671875, + 0.0211181640625, + 0.01202392578125, + -0.04345703125, + 0.0296630859375, + 0.007659912109375, + 0.01495361328125, + 0.00139617919921875, + 0.01904296875, + 0.0341796875, + 0.015625, + -0.006927490234375, + -0.01953125, + 0.016845703125, + -0.00994873046875, + -0.0015411376953125, + 0.031494140625, + 0.003814697265625, + -0.0238037109375, + -0.01611328125, + -0.0150146484375, + 0.0294189453125, + -0.01409912109375, + 0.02587890625, + 0.01300048828125, + -0.007171630859375, + -0.0206298828125, + -0.0013885498046875, + 0.0018310546875, + -0.0172119140625, + -0.07666015625, + -0.053466796875, + 0.0164794921875, + -0.02294921875, + 0.0140380859375, + -0.078125, + -0.01483154296875, + 0.005889892578125, + 0.040283203125, + -0.0047607421875, + -0.08056640625, + -0.0164794921875, + -0.010009765625, + -0.024658203125, + -0.004852294921875, + -0.0002346038818359375, + -0.01483154296875, + -0.0186767578125, + 0.027099609375, + 0.00848388671875, + -0.00125885009765625, + 0.0023040771484375, + 0.061279296875, + 0.034912109375, + -0.006134033203125, + -0.00090789794921875, + -0.025146484375, + -0.0081787109375, + -0.03515625, + -0.01806640625, + -0.002960205078125, + 0.039306640625, + 0.01068115234375, + -0.04736328125, + 0.037353515625, + -0.0242919921875, + -0.00250244140625, + 0.0106201171875, + 0.046875, + -0.00469970703125, + -0.024658203125, + -0.046142578125, + 0.00836181640625, + -0.023681640625, + -0.025146484375, + 0.0181884765625, + -0.0019073486328125, + 0.00616455078125, + 0.11865234375, + -0.0093994140625, + -0.015869140625, + 0.051513671875, + 0.0096435546875, + 0.0400390625, + -0.000576019287109375, + 0.033935546875, + -0.07373046875, + -0.042724609375, + 0.00439453125, + 0.01239013671875, + 0.062255859375, + -0.0654296875, + -0.06982421875, + -0.037353515625, + 0.015380859375, + -0.042236328125, + 0.041015625, + 0.0299072265625, + 0.0267333984375, + -0.047607421875, + 0.0260009765625, + -0.04150390625, + -0.01007080078125, + 3.1948089599609375e-05, + 0.00933837890625, + 0.007354736328125, + -0.0546875, + 0.006500244140625, + 0.00186920166015625, + 0.047607421875, + -0.043701171875, + 0.02197265625, + 0.0281982421875, + -0.00726318359375, + -0.00311279296875, + -0.05078125, + -0.00830078125, + -0.006805419921875, + 0.0242919921875, + -0.0191650390625, + -0.0228271484375, + -0.01495361328125, + 0.005706787109375, + 0.033447265625, + 0.039794921875, + 0.00119781494140625, + -0.0380859375, + 0.038818359375, + -0.012939453125, + 0.0076904296875, + 0.0181884765625, + -0.03564453125, + 0.0167236328125, + -0.0079345703125, + -0.023681640625, + 0.0556640625, + 0.0439453125, + 0.007720947265625, + -0.01025390625, + 0.03466796875, + -0.0103759765625, + -0.0361328125, + -0.034423828125, + 0.04443359375, + 0.049072265625, + -0.0157470703125, + -0.0301513671875, + -0.027099609375, + 0.06689453125, + 0.0076904296875, + -0.0240478515625, + 0.027099609375, + 0.029541015625, + 0.01092529296875, + -0.008056640625, + -0.0400390625, + -0.0556640625, + -0.005157470703125, + 0.01153564453125, + -0.0133056640625, + -0.05224609375, + 0.014404296875, + -0.037109375, + -0.0263671875, + 0.037353515625, + 0.0025787353515625, + -0.017578125, + -0.040283203125, + -0.003997802734375, + -0.045166015625, + -0.0076904296875, + -0.00848388671875, + 0.04052734375, + 0.033203125, + 0.01531982421875, + 0.01275634765625, + 0.0118408203125, + 0.06640625, + -0.0152587890625, + -0.0277099609375, + 0.00579833984375, + -0.013916015625, + 0.0302734375, + -0.00909423828125, + 0.0218505859375, + -0.021240234375, + 0.0022430419921875, + 0.004974365234375, + 0.0196533203125, + -0.00518798828125, + -0.042236328125, + -0.0302734375, + -0.01446533203125, + -0.00482177734375, + 0.005126953125, + 0.04150390625, + 0.0003414154052734375, + 0.019287109375, + -0.07470703125, + 0.017822265625, + 0.03271484375, + 0.052001953125, + -0.048583984375, + 0.00909423828125, + 0.003448486328125, + 0.01611328125, + 0.04833984375, + -0.00653076171875, + -0.0400390625, + -0.0260009765625, + 0.0218505859375, + -0.032958984375, + -0.0011138916015625, + -0.009521484375, + -0.0184326171875, + -0.0252685546875, + -0.06298828125, + -0.031982421875, + 0.00994873046875, + -0.01116943359375, + 0.012939453125, + 0.0419921875, + 0.040283203125, + -0.0120849609375, + -0.0301513671875, + -0.01416015625, + -0.0283203125, + 0.00787353515625, + -0.00193023681640625, + 0.054443359375, + -0.0230712890625, + -0.00286865234375, + 0.016357421875, + -0.01287841796875, + -0.0184326171875, + 0.0120849609375, + -0.0218505859375, + -0.03857421875, + -0.0245361328125, + -0.0177001953125, + -0.015380859375, + -0.004913330078125, + -0.050537109375, + 0.0130615234375, + 0.023193359375, + 0.0458984375, + -0.05517578125, + 0.049072265625, + 0.0269775390625, + 0.0031585693359375, + 0.01531982421875, + 0.0184326171875, + 0.0255126953125, + -0.01336669921875, + -0.08203125, + -0.0084228515625, + -0.02734375, + -0.035888671875, + 0.008056640625, + 0.0216064453125, + -0.00823974609375, + 0.004364013671875, + 0.004302978515625, + -0.0311279296875, + 0.0302734375, + -0.0157470703125, + -0.010986328125, + -0.00762939453125, + -0.0712890625, + 0.01531982421875, + -0.0167236328125, + -0.010498046875, + -0.042724609375, + -0.0257568359375, + -0.003082275390625, + 0.020751953125, + 0.033203125, + -0.0247802734375, + 0.02880859375, + -0.061279296875, + -0.0240478515625, + -0.1337890625, + 0.026123046875, + -0.046142578125, + -0.01275634765625, + -0.0286865234375, + -0.01263427734375, + -0.0115966796875, + -0.00506591796875, + -0.025390625, + -0.045166015625, + 0.0157470703125, + -0.00183868408203125, + 0.03125, + 0.005340576171875, + -0.033935546875, + -0.01446533203125, + -0.04248046875, + -0.01483154296875, + -0.002899169921875, + 0.0294189453125, + 0.0179443359375, + 0.002655029296875, + 0.0179443359375, + 0.003662109375, + 0.003143310546875, + -0.006072998046875, + 0.0213623046875, + -0.031494140625, + -0.038818359375, + -0.05029296875, + 0.03564453125, + -0.056396484375, + -6.723403930664062e-05, + 0.0289306640625, + 0.032470703125, + 0.0036773681640625, + -0.0033111572265625, + -0.04833984375, + -0.0048828125, + -0.00151824951171875, + 0.046142578125, + 0.005462646484375, + 0.036865234375, + 0.039794921875, + -0.05419921875, + 0.039794921875, + -0.0263671875, + -0.00665283203125, + -0.0390625, + 0.023193359375, + -0.032470703125, + -0.01422119140625, + 0.0159912109375, + -0.03515625, + -0.01031494140625, + -0.0079345703125, + -0.0380859375, + -0.044677734375, + -0.00823974609375, + 0.054443359375, + -0.0198974609375, + 0.015380859375, + -0.042236328125, + -0.049072265625, + -0.01416015625, + 0.034912109375, + -0.000888824462890625, + 0.05029296875, + 0.062255859375, + 0.019287109375, + -0.047119140625, + 0.03466796875, + -0.0081787109375, + -0.0260009765625, + 0.0419921875, + 0.00872802734375, + 0.007110595703125, + -0.0186767578125, + 0.018798828125, + -0.0294189453125, + 0.01202392578125, + -0.0029296875, + -0.037841796875, + 0.0458984375, + 0.0390625, + 0.016357421875, + -0.0172119140625, + -0.00191497802734375, + -0.029052734375, + -0.0205078125, + -0.0111083984375, + -0.00225830078125, + 0.024169921875, + 0.041259765625, + -0.052734375, + 0.0245361328125, + -0.002593994140625, + -0.00982666015625, + 0.00103759765625, + -0.0166015625, + 0.0260009765625, + 0.00909423828125, + 0.0169677734375, + 0.0198974609375, + 0.00408935546875, + 0.06591796875, + 0.04931640625, + 0.00555419921875, + 0.02197265625, + -0.031982421875, + 0.0174560546875, + -0.03369140625, + -0.07177734375, + -0.064453125, + -0.007080078125, + -0.01611328125, + -0.0118408203125, + -0.0035247802734375, + -0.0235595703125, + 0.0072021484375, + 0.0289306640625, + -0.0146484375, + 0.0308837890625, + -0.0257568359375, + -0.000972747802734375, + -0.03564453125, + 0.0078125, + 0.0296630859375, + -0.0013580322265625, + 0.01904296875, + 0.012939453125, + -0.04345703125, + 0.01080322265625, + 0.04248046875, + 0.005584716796875, + 0.03173828125, + -0.0390625, + 0.022216796875, + -0.036376953125, + -0.01904296875, + 0.00213623046875, + -0.00433349609375, + -0.0091552734375, + -0.039306640625, + -0.0091552734375, + 0.0211181640625, + -0.01080322265625, + -0.036376953125, + 0.0223388671875, + -0.021240234375, + -0.01446533203125, + 0.01544189453125, + -0.015625, + 0.017578125, + -0.0284423828125, + -0.030517578125, + 0.03564453125, + 0.0213623046875, + -0.00909423828125, + 0.043701171875, + 0.01318359375, + -0.0439453125, + 0.0439453125, + -0.04345703125, + 0.031494140625, + 0.01470947265625, + -0.0021209716796875, + 0.010009765625, + -0.05224609375, + 0.000431060791015625, + 0.0810546875, + 0.010498046875, + 0.016357421875, + 0.01116943359375, + -0.0021514892578125, + -0.030517578125, + 0.006134033203125, + 0.017822265625, + 0.05517578125, + -0.0322265625, + 0.0130615234375, + 0.051513671875, + 0.041015625, + 0.00054168701171875, + 0.01226806640625, + -0.01416015625, + 0.000701904296875, + 0.0172119140625, + 0.01507568359375, + -0.026123046875, + -0.0184326171875, + -0.00634765625, + 0.002044677734375, + -0.0106201171875, + 0.051025390625, + 0.01190185546875, + -0.01904296875, + 0.033935546875, + 0.03271484375, + 0.0272216796875, + 0.0089111328125, + 0.02490234375, + 0.0172119140625, + 0.00836181640625, + -0.0281982421875, + 0.03515625, + -0.0213623046875, + -0.01025390625, + -0.030517578125, + 0.01434326171875, + 0.0028533935546875, + 0.005950927734375, + 0.007110595703125, + 0.046875, + 0.018798828125, + -0.003753662109375, + -0.0218505859375, + 0.0255126953125, + -0.019287109375, + 0.021240234375, + -0.01611328125, + 0.03564453125, + 0.00131988525390625, + -0.03271484375, + -0.023681640625, + -0.042724609375, + -0.05615234375, + 0.00897216796875, + -0.01611328125, + 0.0003299713134765625, + -0.0140380859375, + -0.0245361328125, + -0.008056640625, + 0.0556640625, + -0.0147705078125, + 0.0498046875, + 0.0024871826171875, + -0.00732421875, + 0.02880859375, + -0.03125, + 0.06298828125, + -0.00164794921875, + 0.05029296875, + 0.00555419921875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.76146799999856, + "queue_ms": 1.4572910000083539, + "tokenization_ms": 0.018409999995583348, + "inference_ms": 15.164564000002656, + "postprocessing_ms": null + } + }, + { + "id": "chunk-3", + "dense": [ + -0.007080078125, + -0.01068115234375, + -0.08984375, + 0.045654296875, + -0.0205078125, + -0.0703125, + -0.0260009765625, + -0.0002536773681640625, + -0.01904296875, + -0.00927734375, + -0.0264892578125, + 0.0108642578125, + 0.041015625, + 0.0341796875, + 0.0255126953125, + -0.01129150390625, + 0.0062255859375, + -0.046875, + 0.00323486328125, + -0.015869140625, + -0.0025177001953125, + 0.01416015625, + -0.034912109375, + 0.008544921875, + -0.0069580078125, + -0.0172119140625, + -0.019287109375, + 0.00445556640625, + -0.01068115234375, + 0.01385498046875, + 0.00121307373046875, + -0.03662109375, + 0.00408935546875, + -0.010009765625, + -0.04833984375, + 0.0120849609375, + -0.0089111328125, + -0.010009765625, + -0.0306396484375, + -0.01446533203125, + -0.00653076171875, + -0.025146484375, + 0.043701171875, + -0.0240478515625, + 0.0289306640625, + -0.037109375, + -0.0311279296875, + -0.029052734375, + -0.01190185546875, + -0.0703125, + 0.0118408203125, + -0.00482177734375, + 0.0390625, + -0.0286865234375, + 0.026611328125, + 0.048583984375, + -0.0003337860107421875, + 0.031982421875, + -0.08740234375, + -0.04052734375, + 0.01513671875, + 0.0157470703125, + 0.00067901611328125, + -0.0103759765625, + -0.00518798828125, + 0.04150390625, + 0.006134033203125, + 0.009033203125, + -0.046875, + -0.091796875, + 0.0255126953125, + -0.01556396484375, + 9.012222290039062e-05, + -0.00139617919921875, + -0.0286865234375, + 0.035888671875, + -0.02001953125, + -0.0228271484375, + -0.0311279296875, + 0.0205078125, + 0.0103759765625, + -0.049560546875, + -0.03271484375, + 0.0277099609375, + 0.0218505859375, + 0.027587890625, + -0.0206298828125, + 0.004730224609375, + -0.017822265625, + -0.00616455078125, + 0.0157470703125, + 0.01544189453125, + 0.0264892578125, + -0.0167236328125, + -0.03515625, + 0.01409912109375, + -0.003143310546875, + -0.01348876953125, + 0.03271484375, + -0.007720947265625, + -0.0286865234375, + -0.033203125, + 0.021240234375, + -0.0228271484375, + 0.07275390625, + -0.0211181640625, + 0.08203125, + 0.04638671875, + 0.004547119140625, + 0.021728515625, + 0.01275634765625, + 0.0032958984375, + 0.03466796875, + -0.0164794921875, + -0.041259765625, + 0.00341796875, + -0.033203125, + -0.050537109375, + 0.01495361328125, + -0.00732421875, + 0.0181884765625, + 0.053466796875, + 0.048583984375, + -0.0191650390625, + -0.012451171875, + -0.0361328125, + -0.0238037109375, + -0.0235595703125, + -0.0081787109375, + -0.037841796875, + 0.000682830810546875, + 0.020263671875, + -0.0159912109375, + -0.02001953125, + -0.04833984375, + -0.05078125, + -0.0230712890625, + 0.05224609375, + -0.01300048828125, + 0.0002689361572265625, + -0.010009765625, + 0.01171875, + -0.0419921875, + -0.0230712890625, + 0.07861328125, + 0.01080322265625, + 0.035888671875, + -0.043212890625, + -0.020263671875, + -0.039794921875, + -5.793571472167969e-05, + 0.01214599609375, + 0.0458984375, + 0.0019989013671875, + -0.040283203125, + 0.001617431640625, + 0.02783203125, + 0.0264892578125, + 0.00726318359375, + -0.044921875, + 0.05029296875, + -0.02880859375, + 0.0206298828125, + 0.0213623046875, + 0.06884765625, + -0.01953125, + 0.01470947265625, + 0.057373046875, + -0.01544189453125, + 0.039794921875, + 0.0272216796875, + -0.05517578125, + 0.01544189453125, + -0.00823974609375, + 0.036376953125, + 0.029296875, + 0.0927734375, + 0.0272216796875, + 0.046142578125, + -0.01434326171875, + 0.01611328125, + -0.0130615234375, + 0.0089111328125, + 0.0341796875, + -0.0517578125, + 0.051513671875, + 0.036865234375, + -0.0419921875, + 0.00341796875, + -0.02001953125, + -0.0159912109375, + -0.02490234375, + 0.024658203125, + -0.004302978515625, + 0.09375, + -0.0196533203125, + 0.01416015625, + 0.027587890625, + 0.01080322265625, + -0.027099609375, + -0.029296875, + -0.00077056884765625, + 0.031494140625, + 0.051025390625, + -0.042724609375, + -0.0091552734375, + -0.046875, + -0.0277099609375, + 0.03564453125, + -0.064453125, + 0.039794921875, + -0.0211181640625, + 0.00244140625, + -0.052978515625, + -0.052001953125, + 0.0272216796875, + 0.01055908203125, + -0.039306640625, + -0.0380859375, + -0.00482177734375, + -0.029296875, + 0.041015625, + -0.0380859375, + -0.004638671875, + -0.01806640625, + -0.01287841796875, + 0.004913330078125, + 0.04052734375, + 0.005767822265625, + -0.00128173828125, + 0.0283203125, + 0.059814453125, + 0.02099609375, + -0.0010986328125, + -0.0126953125, + -0.000598907470703125, + 0.00147247314453125, + 0.0145263671875, + 0.000823974609375, + 0.03271484375, + 0.06787109375, + 0.0240478515625, + -0.03759765625, + -0.017578125, + -0.0093994140625, + 0.0167236328125, + 0.0216064453125, + -0.01177978515625, + -0.04833984375, + -0.043701171875, + 0.002227783203125, + -0.021728515625, + -0.04833984375, + 0.00927734375, + 0.05078125, + 0.00384521484375, + -0.0213623046875, + -0.0302734375, + 0.019287109375, + -0.005859375, + 0.006317138671875, + 0.033935546875, + 0.035888671875, + 0.00665283203125, + 0.05859375, + -0.00154876708984375, + -0.056396484375, + -0.00244140625, + 0.042236328125, + 0.004730224609375, + -0.051513671875, + -0.02294921875, + 0.00439453125, + -0.007232666015625, + -0.00433349609375, + 0.0118408203125, + -0.01129150390625, + -0.033447265625, + 0.02734375, + 0.0228271484375, + 0.076171875, + -0.0120849609375, + 0.00017642974853515625, + 0.00848388671875, + 0.0011749267578125, + -0.0228271484375, + -0.0625, + -0.037353515625, + -0.0087890625, + 0.00732421875, + -0.01177978515625, + -0.046875, + 0.0242919921875, + -0.0106201171875, + -0.02880859375, + 0.0211181640625, + -0.039306640625, + -0.17578125, + -0.0198974609375, + 0.0033721923828125, + 0.061767578125, + 0.01068115234375, + 0.01409912109375, + -0.002593994140625, + -0.040283203125, + 0.0101318359375, + 0.04150390625, + 0.0257568359375, + -0.062255859375, + 0.006591796875, + -0.050537109375, + -0.008056640625, + -0.0126953125, + 0.0184326171875, + -0.003509521484375, + 0.0458984375, + -0.00616455078125, + -0.0186767578125, + 0.037353515625, + -0.005340576171875, + 0.0064697265625, + -0.0157470703125, + -0.01129150390625, + 0.0341796875, + 0.031494140625, + 0.036376953125, + 0.01324462890625, + -0.032470703125, + 0.008544921875, + -0.0145263671875, + 0.03564453125, + 0.01092529296875, + 0.00144195556640625, + -0.0419921875, + -0.0137939453125, + -0.000545501708984375, + 0.064453125, + 0.058837890625, + 0.0458984375, + -0.00628662109375, + -0.0211181640625, + 0.0341796875, + -0.0228271484375, + -0.00701904296875, + 0.04248046875, + -0.047607421875, + -0.041015625, + 0.00616455078125, + -0.002349853515625, + 0.005767822265625, + -0.0167236328125, + -0.0380859375, + 0.01806640625, + -0.009033203125, + 0.05517578125, + -0.045166015625, + -0.00860595703125, + -0.01007080078125, + -0.06103515625, + -0.0078125, + -0.0308837890625, + -0.00555419921875, + -0.0133056640625, + 0.06640625, + 0.0252685546875, + -0.0021820068359375, + -0.0308837890625, + 0.0052490234375, + 0.0284423828125, + -0.001251220703125, + 0.0235595703125, + 0.00799560546875, + 0.06005859375, + -0.03271484375, + -0.0299072265625, + 0.0213623046875, + -0.057373046875, + -0.01904296875, + 0.05029296875, + 0.0228271484375, + -0.03466796875, + -0.0166015625, + -0.0264892578125, + 0.01416015625, + -0.048095703125, + 0.04736328125, + 0.2275390625, + 0.01324462890625, + -0.047119140625, + -0.00244140625, + 0.0157470703125, + -0.0546875, + -0.0140380859375, + -0.056884765625, + -0.034912109375, + -0.0146484375, + -0.0277099609375, + 0.05029296875, + 0.05029296875, + 0.00982666015625, + -0.02783203125, + -0.00421142578125, + -0.01031494140625, + -0.0004596710205078125, + 0.042724609375, + 0.014404296875, + 0.03125, + 0.0101318359375, + 0.061279296875, + -0.0439453125, + -0.0439453125, + -0.0311279296875, + 0.00286865234375, + 0.006744384765625, + -0.0021820068359375, + -0.0166015625, + -0.033935546875, + 0.022216796875, + 0.028076171875, + -0.034912109375, + 0.029541015625, + 0.036376953125, + 0.016357421875, + -0.032958984375, + 0.03759765625, + 0.015869140625, + 0.02880859375, + 0.0023956298828125, + -0.01495361328125, + -0.0196533203125, + 0.021728515625, + -0.01434326171875, + 0.0225830078125, + -0.043212890625, + -0.010009765625, + 0.04150390625, + -0.053955078125, + 0.030029296875, + -0.033203125, + -0.006439208984375, + -0.054443359375, + -0.024658203125, + 0.0140380859375, + -0.0169677734375, + 0.0296630859375, + 0.0015106201171875, + 0.0181884765625, + 0.01348876953125, + -0.0216064453125, + 0.01153564453125, + 0.046875, + -0.0213623046875, + 0.0078125, + -0.0252685546875, + -0.03271484375, + 0.053955078125, + 0.002593994140625, + 0.0286865234375, + -0.00616455078125, + 0.038818359375, + 0.03857421875, + -0.0263671875, + 0.062255859375, + 0.06787109375, + -0.000827789306640625, + -0.0240478515625, + -0.029541015625, + -0.0264892578125, + -0.0299072265625, + -0.04638671875, + 0.01544189453125, + 0.004547119140625, + 0.036376953125, + 0.031982421875, + -0.01611328125, + -0.0096435546875, + 0.0026702880859375, + 0.027099609375, + -0.03173828125, + -0.016845703125, + -0.0034637451171875, + 0.021240234375, + -0.018798828125, + -0.0228271484375, + 0.0089111328125, + -0.0019683837890625, + 0.008056640625, + -0.047607421875, + -0.05029296875, + 0.041259765625, + 0.0050048828125, + -0.0196533203125, + -0.005126953125, + 0.0380859375, + 0.0211181640625, + -0.01513671875, + -0.00927734375, + 0.00982666015625, + 0.011474609375, + -0.029541015625, + 0.016357421875, + 0.0177001953125, + -0.018798828125, + 0.039306640625, + 0.0025634765625, + 0.04248046875, + -0.010009765625, + 0.017333984375, + 0.032958984375, + 0.03515625, + -0.0069580078125, + -0.01611328125, + -0.041259765625, + -0.0167236328125, + 0.0211181640625, + 0.058837890625, + 0.01470947265625, + -0.0289306640625, + -0.07373046875, + 0.016845703125, + 0.0184326171875, + 0.01007080078125, + 0.007415771484375, + 0.018798828125, + 0.0108642578125, + 0.0228271484375, + 0.0108642578125, + -0.0166015625, + -0.020263671875, + -0.0296630859375, + -0.0322265625, + 0.01300048828125, + 0.02294921875, + 0.00982666015625, + -0.059326171875, + -0.01068115234375, + 0.0157470703125, + -0.00634765625, + 0.0439453125, + -0.03857421875, + -0.00616455078125, + -0.00994873046875, + -0.00982666015625, + -0.04345703125, + -0.006134033203125, + -0.0234375, + -0.0164794921875, + 0.01544189453125, + -0.0311279296875, + 0.034912109375, + -0.0062255859375, + 0.03515625, + 0.01544189453125, + 0.0380859375, + 0.0169677734375, + -0.057373046875, + -0.007232666015625, + -0.01287841796875, + -0.01318359375, + -0.0036163330078125, + 0.0306396484375, + 0.0108642578125, + -0.051025390625, + 0.00933837890625, + -0.0185546875, + 0.024169921875, + 0.00970458984375, + 0.025390625, + -0.004608154296875, + 0.040283203125, + -0.036865234375, + 0.016357421875, + 0.0252685546875, + -0.0147705078125, + -0.0079345703125, + -0.0299072265625, + -0.02294921875, + 0.07470703125, + -0.0556640625, + 0.007080078125, + 0.016845703125, + 0.01153564453125, + 0.041015625, + 0.023193359375, + 0.0302734375, + -0.0311279296875, + -0.0419921875, + -0.0380859375, + -0.001922607421875, + 0.01177978515625, + 0.0033721923828125, + -0.045654296875, + 0.01507568359375, + 0.007781982421875, + 0.00897216796875, + 0.0242919921875, + 0.0228271484375, + 0.0234375, + -0.032470703125, + 0.00872802734375, + -0.00185394287109375, + 0.00262451171875, + -0.004669189453125, + 0.0181884765625, + 0.000629425048828125, + -0.024658203125, + 0.0186767578125, + -0.0166015625, + 0.024169921875, + -0.030029296875, + -0.00701904296875, + 0.0218505859375, + 0.0007171630859375, + 0.0064697265625, + 0.002593994140625, + 0.01806640625, + -0.001129150390625, + -0.0194091796875, + -0.0111083984375, + -0.04443359375, + -0.00018405914306640625, + 0.05029296875, + -0.021728515625, + -0.006500244140625, + 0.024169921875, + -0.003326416015625, + 0.01446533203125, + -0.027587890625, + 0.0021209716796875, + 0.0106201171875, + 0.015625, + -0.000576019287109375, + -0.010009765625, + -0.008544921875, + 0.0115966796875, + -0.01007080078125, + 0.0181884765625, + 0.00897216796875, + 0.01055908203125, + -0.06396484375, + -0.0242919921875, + -0.0023651123046875, + 0.01202392578125, + 0.013916015625, + -0.00933837890625, + 0.0054931640625, + -0.03125, + 0.05810546875, + 0.0087890625, + -0.01422119140625, + 0.036865234375, + -0.0021820068359375, + -0.0152587890625, + 0.0174560546875, + -0.03515625, + -0.061279296875, + -0.005706787109375, + -0.0096435546875, + 0.0081787109375, + -0.0654296875, + -0.0306396484375, + -0.00848388671875, + -0.064453125, + 0.07666015625, + -0.003326416015625, + 0.0257568359375, + -0.06103515625, + 0.0225830078125, + -0.0167236328125, + 0.0277099609375, + -0.0224609375, + 0.01116943359375, + 0.01544189453125, + 0.00433349609375, + -0.0045166015625, + -0.002899169921875, + 0.05908203125, + 0.00933837890625, + -0.030517578125, + 0.00439453125, + -0.006378173828125, + 0.0299072265625, + -0.00604248046875, + 0.04443359375, + -0.0186767578125, + 0.0306396484375, + -0.01904296875, + 0.00921630859375, + 0.0133056640625, + -0.03662109375, + -0.007568359375, + 0.0027313232421875, + -0.035888671875, + 0.0028228759765625, + 0.014404296875, + -0.0242919921875, + -0.00035858154296875, + -0.0050048828125, + 0.033447265625, + -0.006500244140625, + 0.0047607421875, + 0.00238037109375, + 0.01409912109375, + -0.00506591796875, + 0.0145263671875, + 0.04443359375, + 0.0087890625, + -0.01544189453125, + -0.004302978515625, + 0.022216796875, + -0.053955078125, + -0.01348876953125, + -0.034423828125, + 0.0021820068359375, + -0.026611328125, + -0.005706787109375, + -0.032470703125, + -0.009033203125, + -0.01336669921875, + -0.0130615234375, + 0.049560546875, + -0.036865234375, + 0.03271484375, + -0.03759765625, + 0.026611328125, + -0.0260009765625, + -0.0289306640625, + -0.0238037109375, + 0.07421875, + -0.0196533203125, + -0.0010986328125, + -0.051513671875, + -0.045166015625, + 0.00119781494140625, + 0.032470703125, + 0.019287109375, + 0.0380859375, + 0.0181884765625, + -0.01031494140625, + -0.04150390625, + -0.0306396484375, + -0.041015625, + -0.034912109375, + -0.00604248046875, + 0.026123046875, + 0.0157470703125, + 0.0296630859375, + 0.0294189453125, + 0.00762939453125, + 0.0240478515625, + 0.0277099609375, + 0.032958984375, + 0.009521484375, + -0.01409912109375, + 0.01361083984375, + -0.01275634765625, + -0.0245361328125, + 0.033447265625, + 0.0390625, + 0.032470703125, + 0.01055908203125, + 0.0380859375, + -0.00848388671875, + 0.046875, + 0.000476837158203125, + 0.0400390625, + -0.0027313232421875, + -0.039794921875, + -0.0125732421875, + -0.026611328125, + -0.021728515625, + -0.01446533203125, + -0.036376953125, + 0.00116729736328125, + 0.01226806640625, + 0.0341796875, + 0.00909423828125, + 0.0517578125, + -0.0712890625, + 0.0299072265625, + -0.1298828125, + 0.0196533203125, + 0.02294921875, + -0.01953125, + -0.00066375732421875, + 0.0108642578125, + -0.03564453125, + -0.010986328125, + -0.009521484375, + -0.02197265625, + 0.00148773193359375, + 0.03271484375, + 0.0751953125, + -0.004974365234375, + -0.0238037109375, + 0.0181884765625, + -0.0810546875, + -0.02001953125, + -0.000659942626953125, + 0.0390625, + 0.0211181640625, + 0.024658203125, + 0.0133056640625, + -0.034423828125, + -0.00909423828125, + -0.033447265625, + 0.023193359375, + -0.0240478515625, + -0.0260009765625, + 0.005340576171875, + -0.02783203125, + -0.0673828125, + 0.043212890625, + 0.046875, + 0.01092529296875, + -0.00848388671875, + 0.021240234375, + -0.024658203125, + -0.0390625, + 0.0230712890625, + 0.032958984375, + 0.01226806640625, + -0.042724609375, + 0.04150390625, + -0.0029449462890625, + 0.025390625, + -0.043212890625, + -0.03173828125, + -0.038330078125, + -0.00811767578125, + -0.03369140625, + 0.023193359375, + -0.031982421875, + -0.036376953125, + 0.01531982421875, + -0.020263671875, + 0.01129150390625, + -0.0289306640625, + 0.0201416015625, + 0.0439453125, + -0.021728515625, + 0.00064849853515625, + -0.007354736328125, + 0.003936767578125, + 0.00176239013671875, + 0.027099609375, + -0.042724609375, + 0.01544189453125, + 0.05029296875, + 0.009521484375, + -0.0311279296875, + -0.0196533203125, + 0.033203125, + -0.00067901611328125, + 0.0205078125, + -0.048095703125, + 0.025146484375, + -0.0078125, + -0.0162353515625, + -0.0201416015625, + -0.03076171875, + -0.03857421875, + -0.033203125, + 0.00439453125, + 0.00799560546875, + 0.0242919921875, + -0.01153564453125, + -0.0211181640625, + 0.01434326171875, + -0.026123046875, + -0.06640625, + -0.00518798828125, + -0.015869140625, + 0.052001953125, + -0.04931640625, + -0.017578125, + -0.0380859375, + -0.01495361328125, + -0.0361328125, + -0.01953125, + -0.00122833251953125, + -0.00933837890625, + 0.006195068359375, + 0.005035400390625, + -0.034912109375, + 0.0019073486328125, + -0.01495361328125, + 0.006805419921875, + -0.0093994140625, + -0.023681640625, + 0.02001953125, + -0.01116943359375, + -0.0186767578125, + -0.037109375, + 0.045166015625, + 0.023681640625, + 0.0206298828125, + -0.017333984375, + -0.044677734375, + 0.037109375, + -0.0181884765625, + 0.005279541015625, + 0.0186767578125, + -0.01153564453125, + -0.037353515625, + -0.0133056640625, + 0.040283203125, + 0.00726318359375, + -0.015380859375, + 0.0147705078125, + 0.020263671875, + -0.072265625, + -0.02587890625, + 0.0201416015625, + -0.005767822265625, + 0.0322265625, + -0.056640625, + 0.00830078125, + -0.0186767578125, + -0.0264892578125, + -0.01953125, + 0.00144195556640625, + 0.03564453125, + -0.0301513671875, + 0.0033416748046875, + 0.04931640625, + 0.0205078125, + 0.007080078125, + 0.01611328125, + 0.00689697265625, + -0.00592041015625, + -0.033935546875, + -0.036376953125, + 0.056884765625, + -0.0032958984375, + 0.0072021484375, + 0.0264892578125, + -0.0017547607421875, + -0.0216064453125, + 0.031982421875, + -0.0186767578125, + -0.052734375, + -0.01153564453125, + -0.037109375, + -0.0147705078125, + -0.005645751953125, + -0.00107574462890625, + 0.0301513671875, + -0.005340576171875, + -0.020263671875, + 0.01531982421875, + 0.0123291015625, + -0.00390625, + 0.0040283203125, + 0.033447265625, + -0.00982666015625, + -0.0030975341796875, + 0.0213623046875, + 0.0186767578125, + 0.027099609375, + 0.016357421875, + 0.04736328125, + 0.064453125, + 0.0159912109375, + 0.047607421875, + 0.027587890625, + 0.009033203125, + 0.0308837890625, + 0.0152587890625, + -0.004638671875, + -0.005859375, + -0.010498046875, + -0.04833984375, + -0.0213623046875, + 0.059814453125, + 0.01348876953125, + 0.043212890625, + 0.0247802734375, + -0.00982666015625, + 0.007476806640625, + -0.064453125, + 0.0169677734375, + 0.033447265625, + -0.00970458984375, + -0.02734375, + 0.01129150390625, + -0.00823974609375, + -0.0031890869140625, + -0.049560546875, + 0.0177001953125, + -0.00506591796875, + -0.0419921875, + 0.0308837890625, + 0.06591796875, + 0.0004215240478515625, + -0.0186767578125, + -0.0196533203125, + -0.039794921875, + 0.0087890625, + -0.0019683837890625, + 0.0286865234375, + 0.0703125, + -0.032958984375, + -0.04931640625, + 0.005401611328125, + 0.01556396484375, + 0.0079345703125, + 0.0238037109375, + 0.00921630859375, + -0.022216796875, + -0.002197265625, + -0.01123046875, + -0.0020904541015625, + 0.046875, + 0.0224609375, + -0.00262451171875, + -0.055419921875, + 0.0166015625, + -0.0047607421875, + -0.021728515625, + 0.05322265625, + 0.006378173828125, + 0.03076171875, + 0.0004329681396484375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 18.04185500000699, + "queue_ms": 1.7034959999904231, + "tokenization_ms": 0.01857999998833293, + "inference_ms": 16.131075000004103, + "postprocessing_ms": null + } + }, + { + "id": "chunk-4", + "dense": [ + 0.0035858154296875, + 0.036865234375, + -0.0322265625, + 0.03662109375, + -0.0220947265625, + -0.004150390625, + -0.0269775390625, + 0.0712890625, + -0.0247802734375, + 0.002532958984375, + -0.006500244140625, + -0.01513671875, + 0.0177001953125, + 0.015380859375, + 0.06103515625, + 0.01806640625, + 0.04345703125, + 0.0047607421875, + 0.00921630859375, + -0.0208740234375, + -0.0059814453125, + -0.0089111328125, + -0.0157470703125, + 0.01202392578125, + -0.0069580078125, + -0.005218505859375, + -0.0537109375, + 0.00616455078125, + -0.01031494140625, + 0.01470947265625, + -0.0059814453125, + 0.001983642578125, + 0.00194549560546875, + -0.006134033203125, + -0.047607421875, + 0.00982666015625, + -0.0019683837890625, + 0.01361083984375, + -0.03271484375, + -0.0034027099609375, + -0.004364013671875, + -0.01165771484375, + 0.043701171875, + -0.01483154296875, + -0.003753662109375, + -0.020263671875, + -0.0250244140625, + -0.0067138671875, + -0.0108642578125, + -0.068359375, + -0.00323486328125, + 0.038330078125, + 0.03173828125, + -0.031982421875, + -0.036376953125, + 0.03466796875, + 0.019775390625, + -0.00823974609375, + -0.052734375, + 0.005157470703125, + -0.0169677734375, + 0.0283203125, + -0.000827789306640625, + -0.060546875, + 0.00982666015625, + 0.051513671875, + 0.0167236328125, + 0.0001316070556640625, + -0.041015625, + -0.033935546875, + -0.009521484375, + 0.01904296875, + 0.0032806396484375, + -0.038330078125, + -0.06787109375, + 0.055419921875, + 0.0244140625, + -0.0009002685546875, + -0.01153564453125, + 0.0081787109375, + 0.032470703125, + 0.0260009765625, + -0.052001953125, + 0.0037689208984375, + 0.08447265625, + 0.047607421875, + -0.0322265625, + 0.00787353515625, + -0.0296630859375, + -0.01611328125, + 0.04248046875, + 0.01043701171875, + -0.01385498046875, + 0.017822265625, + -0.038330078125, + -0.005950927734375, + -0.032958984375, + -0.016357421875, + 0.07177734375, + -0.01904296875, + -0.0028839111328125, + -0.0245361328125, + 0.0191650390625, + -0.01513671875, + 0.03466796875, + -0.033447265625, + 0.055419921875, + 0.091796875, + 0.00628662109375, + 0.005218505859375, + 0.0260009765625, + -0.004058837890625, + 0.021728515625, + -0.028076171875, + -0.0194091796875, + 0.016845703125, + -0.0018463134765625, + -0.06396484375, + -0.0194091796875, + -0.047119140625, + -0.000965118408203125, + 0.0087890625, + 0.057861328125, + -0.025634765625, + 0.01263427734375, + -0.036865234375, + -0.0257568359375, + -0.00811767578125, + 0.051513671875, + 0.004791259765625, + -0.007781982421875, + 0.00640869140625, + 0.004180908203125, + 0.0235595703125, + -0.044677734375, + -0.0289306640625, + -0.036865234375, + -0.0025634765625, + 0.020263671875, + -0.019775390625, + 0.0537109375, + 0.047607421875, + 0.01080322265625, + -0.041748046875, + 0.0169677734375, + -0.0107421875, + 0.006622314453125, + 0.002044677734375, + -0.0111083984375, + -0.07861328125, + -0.030029296875, + -0.00994873046875, + 0.061767578125, + -0.07373046875, + -0.0289306640625, + 0.0027923583984375, + 0.0027618408203125, + 0.0341796875, + -0.03515625, + 0.0014190673828125, + 0.007659912109375, + -0.005279541015625, + -0.043701171875, + 0.029296875, + 0.059326171875, + -0.0252685546875, + 0.0162353515625, + -0.0023345947265625, + -0.021728515625, + 0.0089111328125, + 0.0419921875, + -0.031494140625, + 0.04052734375, + 0.004150390625, + 0.001953125, + 0.050048828125, + 0.09521484375, + 0.020263671875, + 0.00836181640625, + -0.0308837890625, + 0.01043701171875, + 0.0032501220703125, + -0.01806640625, + 0.0322265625, + -0.052734375, + 0.0400390625, + -0.006622314453125, + -0.034423828125, + 0.004486083984375, + 0.0135498046875, + 0.007537841796875, + -0.029052734375, + -0.002410888671875, + 0.01263427734375, + 0.09619140625, + -0.00160980224609375, + 0.010009765625, + 0.0003299713134765625, + -0.002471923828125, + -0.0052490234375, + -0.022705078125, + 0.032470703125, + 0.01190185546875, + 0.052490234375, + 0.003814697265625, + 0.0244140625, + -0.0159912109375, + -0.006561279296875, + 0.0272216796875, + -0.031494140625, + 0.0223388671875, + -0.036376953125, + -0.031494140625, + -0.01153564453125, + -0.04931640625, + 0.05029296875, + -0.007171630859375, + -0.00122833251953125, + -0.03515625, + -0.0281982421875, + 0.0206298828125, + 0.007110595703125, + -0.05517578125, + -0.0478515625, + 0.0308837890625, + -0.042236328125, + 0.007568359375, + 0.07080078125, + 0.0272216796875, + -0.029296875, + 0.000537872314453125, + 0.0196533203125, + -0.01043701171875, + -0.0024871826171875, + -0.0012359619140625, + 0.0174560546875, + -0.0306396484375, + 0.049560546875, + -0.0042724609375, + -0.0108642578125, + 0.030029296875, + 0.027099609375, + -0.0186767578125, + 0.0245361328125, + -0.01055908203125, + -0.046630859375, + 0.0274658203125, + 0.0159912109375, + -0.007720947265625, + -0.021240234375, + 0.0123291015625, + 0.01470947265625, + -0.01153564453125, + 0.00604248046875, + 0.0286865234375, + 0.003997802734375, + -0.0126953125, + -0.01019287109375, + -0.0257568359375, + 0.003936767578125, + 0.0361328125, + 0.036376953125, + 0.013916015625, + 0.006103515625, + 0.04052734375, + -0.0002727508544921875, + -0.03662109375, + 0.0234375, + 0.00677490234375, + 0.029296875, + -0.037353515625, + 3.981590270996094e-05, + -0.036865234375, + 0.00604248046875, + 0.002227783203125, + 0.053955078125, + -0.007415771484375, + 0.004302978515625, + 0.052490234375, + 0.03515625, + 0.0164794921875, + -0.03076171875, + 0.016357421875, + 0.043212890625, + 0.00897216796875, + -0.044921875, + -0.07421875, + -0.008056640625, + 0.022216796875, + -0.0247802734375, + -0.006195068359375, + -0.049560546875, + 0.048828125, + -0.03466796875, + 0.031982421875, + 0.03564453125, + -0.01416015625, + -0.171875, + -0.007232666015625, + 0.01171875, + 0.010009765625, + 0.0172119140625, + 0.000751495361328125, + -0.021240234375, + -0.057373046875, + 0.0047607421875, + 0.0296630859375, + -0.01043701171875, + -0.060302734375, + -0.003326416015625, + -0.054443359375, + 0.022705078125, + 0.022705078125, + -0.002197265625, + 0.0260009765625, + 0.004638671875, + -0.0478515625, + 0.01507568359375, + 0.01556396484375, + 0.03564453125, + 0.003936767578125, + -0.01190185546875, + -0.01239013671875, + 0.01507568359375, + 0.055419921875, + -0.00457763671875, + 0.029541015625, + 6.580352783203125e-05, + -0.00390625, + 0.0031585693359375, + 0.0289306640625, + -0.001617431640625, + 0.05810546875, + -0.034423828125, + -0.0113525390625, + 0.0234375, + 0.0751953125, + 0.0159912109375, + 0.06591796875, + -0.02685546875, + -0.021728515625, + 0.01080322265625, + -0.036865234375, + -0.02294921875, + 0.044921875, + -0.06787109375, + -0.0361328125, + -0.0016021728515625, + -0.007568359375, + -0.0125732421875, + -0.0218505859375, + -0.00836181640625, + -0.0146484375, + 0.0022430419921875, + 0.00958251953125, + -0.05517578125, + 0.010498046875, + -0.0205078125, + -0.02783203125, + -0.0228271484375, + -0.00084686279296875, + -0.0299072265625, + -0.0283203125, + -0.022705078125, + -0.0206298828125, + 0.05419921875, + -0.05419921875, + 0.02392578125, + -0.002777099609375, + 0.01263427734375, + 0.038818359375, + 0.044189453125, + 0.06640625, + -0.01507568359375, + -0.06298828125, + -0.0224609375, + -0.09765625, + -0.083984375, + 0.04248046875, + 0.01611328125, + -0.0048828125, + -0.0341796875, + -0.007537841796875, + 0.033203125, + 0.012939453125, + 0.041259765625, + 0.22265625, + -0.0015411376953125, + -0.007568359375, + 0.0022125244140625, + 0.033935546875, + -0.035888671875, + -0.000827789306640625, + -0.035888671875, + -0.00799560546875, + -0.00701904296875, + -0.029296875, + 0.052734375, + 0.0159912109375, + 0.00762939453125, + -0.0166015625, + -0.0167236328125, + -0.0277099609375, + -0.005096435546875, + 0.0771484375, + 0.04296875, + 0.044921875, + -0.00144195556640625, + 0.031494140625, + -0.041015625, + -0.03369140625, + -0.001983642578125, + -0.022705078125, + -0.000431060791015625, + 0.033447265625, + -0.03955078125, + -0.04296875, + 0.043701171875, + 0.033935546875, + -0.0159912109375, + -0.0032196044921875, + 0.048095703125, + 0.007415771484375, + -0.0264892578125, + -0.00994873046875, + 0.01031494140625, + -0.01190185546875, + -0.011962890625, + -0.031494140625, + -0.03955078125, + 0.035888671875, + -0.04052734375, + 0.003021240234375, + -0.0140380859375, + 0.002227783203125, + 0.06103515625, + -0.017822265625, + 0.03759765625, + -0.0047607421875, + -0.01123046875, + -0.046630859375, + 0.00701904296875, + 0.00799560546875, + 0.0191650390625, + 0.0299072265625, + 0.041748046875, + 0.02392578125, + 0.007110595703125, + -0.00433349609375, + -0.021240234375, + 0.02294921875, + 0.01165771484375, + 0.01123046875, + -0.03759765625, + 0.01220703125, + 0.035888671875, + 0.034912109375, + -0.01220703125, + -0.00885009765625, + 0.01190185546875, + 0.017333984375, + -0.0250244140625, + -0.011474609375, + 0.044921875, + -0.0087890625, + -0.0123291015625, + -0.02783203125, + -0.012939453125, + -0.01495361328125, + -0.039794921875, + 0.007781982421875, + -0.005615234375, + 0.01361083984375, + 0.029052734375, + 0.000568389892578125, + -0.0106201171875, + -0.0220947265625, + 0.005706787109375, + -0.058837890625, + -0.035888671875, + -0.04296875, + -0.0004024505615234375, + -0.005401611328125, + -0.01092529296875, + -0.00078582763671875, + 0.048095703125, + 0.00750732421875, + -0.0147705078125, + -0.00041961669921875, + 0.0140380859375, + 0.007659912109375, + -0.035400390625, + 0.01171875, + 0.006134033203125, + 0.022705078125, + 0.00165557861328125, + -0.00958251953125, + 0.018310546875, + -0.044921875, + -0.00787353515625, + 0.017822265625, + 0.047607421875, + -0.039306640625, + 0.037109375, + -0.0181884765625, + 0.03369140625, + -0.0233154296875, + 0.0198974609375, + 0.0390625, + 0.01422119140625, + -0.00152587890625, + -0.035888671875, + -0.04443359375, + -0.016845703125, + 0.050537109375, + 0.0281982421875, + -0.0033721923828125, + -0.024658203125, + -0.0037689208984375, + 0.022216796875, + 0.05078125, + 0.035400390625, + 0.0250244140625, + -0.0013885498046875, + 0.0159912109375, + -0.00177764892578125, + -0.034423828125, + 0.0128173828125, + -0.034912109375, + -0.05908203125, + -0.013916015625, + -0.0198974609375, + -0.045654296875, + 0.004852294921875, + -0.052734375, + -0.0111083984375, + 0.00830078125, + 0.0235595703125, + -0.0028076171875, + -0.0654296875, + -0.00970458984375, + -0.0076904296875, + -0.0145263671875, + -0.02880859375, + -0.0247802734375, + -0.0322265625, + 0.022216796875, + 0.01153564453125, + -0.032958984375, + 0.057373046875, + 0.04052734375, + 0.000885009765625, + -0.0224609375, + 0.01531982421875, + 0.01226806640625, + -0.0203857421875, + -0.0019683837890625, + -0.028076171875, + -0.0169677734375, + 0.0269775390625, + -0.009033203125, + -0.01019287109375, + -0.03369140625, + 0.01220703125, + -0.0164794921875, + 0.040771484375, + 0.004730224609375, + -0.0126953125, + -0.0419921875, + 0.042236328125, + -0.0172119140625, + 0.01483154296875, + -0.01202392578125, + -0.01190185546875, + -0.0125732421875, + -0.0010223388671875, + -0.0693359375, + 0.0693359375, + -0.03564453125, + -0.00921630859375, + 0.0218505859375, + 0.00128173828125, + 0.038818359375, + 0.01611328125, + 0.03564453125, + -0.00958251953125, + -0.041015625, + -0.06396484375, + 0.0087890625, + 0.0169677734375, + -0.00439453125, + -0.050537109375, + -0.0286865234375, + 0.0167236328125, + -0.0042724609375, + 0.03271484375, + 0.036865234375, + 0.0157470703125, + -0.022216796875, + 0.0076904296875, + -0.046875, + 0.0079345703125, + 0.04052734375, + 0.0306396484375, + -0.0013885498046875, + -0.05126953125, + 0.031494140625, + -0.009521484375, + 0.031494140625, + -0.034423828125, + -0.0028839111328125, + 0.0283203125, + 0.0233154296875, + -0.0157470703125, + -0.0086669921875, + 0.041259765625, + -0.00055694580078125, + -0.031494140625, + -0.0024261474609375, + -0.03564453125, + 0.00299072265625, + 0.011474609375, + 0.02392578125, + 0.0264892578125, + 0.047119140625, + -0.029296875, + 0.003204345703125, + -0.068359375, + -0.0179443359375, + 0.0263671875, + 0.0169677734375, + 0.004791259765625, + 0.052490234375, + -0.00055694580078125, + 0.0260009765625, + 0.01055908203125, + -0.02880859375, + 0.0157470703125, + 0.0205078125, + -0.03125, + -0.001953125, + -0.000789642333984375, + 0.0184326171875, + 0.031494140625, + -0.038330078125, + -0.034423828125, + -0.037841796875, + 0.0233154296875, + 0.0157470703125, + -0.01104736328125, + 0.0262451171875, + -0.02001953125, + 0.003936767578125, + 0.0252685546875, + -0.00628662109375, + -0.04296875, + 0.0146484375, + -0.006195068359375, + -0.01239013671875, + -0.05859375, + 0.005157470703125, + 0.0028839111328125, + -0.08837890625, + 0.025390625, + 0.01470947265625, + 0.0164794921875, + -0.00494384765625, + 0.00927734375, + -0.02294921875, + 0.039794921875, + 0.0123291015625, + -0.0096435546875, + 0.0076904296875, + 0.0211181640625, + 0.030029296875, + -0.004364013671875, + 0.052490234375, + -0.0247802734375, + -0.0419921875, + -0.00848388671875, + -0.0216064453125, + 0.01483154296875, + 0.0024566650390625, + 0.0223388671875, + -0.0311279296875, + 0.0069580078125, + 0.008056640625, + -0.038330078125, + -0.0036773681640625, + -0.032470703125, + -0.014404296875, + -0.0245361328125, + 0.00018024444580078125, + -0.005615234375, + 0.007415771484375, + 0.01373291015625, + -0.00689697265625, + -0.0036163330078125, + 0.0206298828125, + 0.01031494140625, + -0.00020122528076171875, + -0.0086669921875, + -0.0003757476806640625, + 0.0166015625, + 0.03955078125, + 0.041259765625, + 0.0020751953125, + 0.00180816650390625, + -0.0203857421875, + 0.0172119140625, + -0.029541015625, + -0.00933837890625, + -0.0211181640625, + 0.0302734375, + -0.024658203125, + -0.0113525390625, + -0.0478515625, + -0.008056640625, + 0.01348876953125, + 0.0111083984375, + 0.021484375, + -0.01171875, + 0.021484375, + -0.0035552978515625, + 0.0517578125, + -0.030029296875, + 0.016357421875, + -0.00628662109375, + 0.076171875, + -0.01348876953125, + 0.003814697265625, + 0.0108642578125, + -0.044921875, + -0.0096435546875, + 0.017578125, + 0.02001953125, + -0.0341796875, + -0.0035858154296875, + -0.01495361328125, + -0.01904296875, + -0.03076171875, + -0.056640625, + -0.03564453125, + -0.001007080078125, + 0.0223388671875, + -0.043212890625, + 0.043701171875, + 0.0240478515625, + -0.01409912109375, + 0.04248046875, + -0.0038909912109375, + 0.03125, + -0.03759765625, + -0.0038299560546875, + 0.0133056640625, + -0.01507568359375, + -0.046630859375, + -0.0157470703125, + -0.0098876953125, + -0.0208740234375, + 0.0084228515625, + 0.036376953125, + 0.0016632080078125, + 0.0185546875, + 0.00408935546875, + 0.03125, + -0.01416015625, + -0.03515625, + 0.006500244140625, + -0.0234375, + -0.007171630859375, + -0.036865234375, + -0.0625, + -0.0050048828125, + -0.033203125, + 0.0238037109375, + -0.05322265625, + -0.00970458984375, + -0.053955078125, + 0.003082275390625, + -0.1416015625, + 0.031494140625, + 0.05029296875, + 0.004486083984375, + -0.00701904296875, + -0.00121307373046875, + -0.0311279296875, + -0.01312255859375, + -0.005157470703125, + -0.048095703125, + 0.027099609375, + -0.004791259765625, + 0.0123291015625, + -0.01043701171875, + -0.0166015625, + 0.0289306640625, + -0.025390625, + 0.005096435546875, + 0.01226806640625, + 0.05419921875, + 0.0238037109375, + 0.0196533203125, + 0.019287109375, + -0.031982421875, + -0.015380859375, + -0.029541015625, + 0.043701171875, + -0.050537109375, + -0.03369140625, + -0.0234375, + -0.025390625, + -0.0751953125, + 0.01348876953125, + 0.037109375, + 0.0576171875, + 0.01092529296875, + 0.028076171875, + -0.044189453125, + -0.0306396484375, + 0.00897216796875, + 0.0169677734375, + -0.00799560546875, + -0.025146484375, + 0.006439208984375, + 0.03125, + -0.00110626220703125, + -0.03271484375, + -0.010498046875, + 0.0013885498046875, + -0.015625, + -0.05859375, + 0.00439453125, + -0.035400390625, + -0.0159912109375, + 0.01611328125, + 0.01434326171875, + -0.04443359375, + -0.01495361328125, + 0.0380859375, + 0.039794921875, + 0.01141357421875, + 0.02587890625, + -0.019775390625, + -0.07861328125, + 0.0194091796875, + 0.0167236328125, + -0.044189453125, + 0.03564453125, + 0.049560546875, + 0.0031280517578125, + -0.05029296875, + 0.042236328125, + 0.008056640625, + 0.0224609375, + 0.007781982421875, + -0.038818359375, + 0.022216796875, + -0.00494384765625, + -0.0257568359375, + -0.02099609375, + -0.0262451171875, + -0.00360107421875, + -0.021484375, + -0.0184326171875, + 0.0235595703125, + 0.0009918212890625, + -0.0230712890625, + -0.0181884765625, + 0.0238037109375, + -0.033447265625, + -0.06689453125, + 0.001434326171875, + -0.00628662109375, + 0.044189453125, + -0.0380859375, + 0.01806640625, + -0.0191650390625, + -0.0250244140625, + -0.018798828125, + -0.0157470703125, + -0.0306396484375, + 0.000885009765625, + 0.025146484375, + -0.01123046875, + 0.0157470703125, + 0.017822265625, + 0.05810546875, + 0.0096435546875, + 0.034423828125, + -0.00982666015625, + 0.031494140625, + -0.002838134765625, + -0.017333984375, + -0.052001953125, + -0.010498046875, + 0.00677490234375, + 0.0016937255859375, + -0.03271484375, + -0.0230712890625, + 0.021484375, + -0.0004787445068359375, + -0.057373046875, + 0.01190185546875, + -0.03466796875, + -0.01104736328125, + -0.01177978515625, + 0.0301513671875, + -0.005096435546875, + 0.00335693359375, + 0.01416015625, + 0.0194091796875, + -0.0181884765625, + 0.000278472900390625, + 0.004974365234375, + -0.0166015625, + -0.033447265625, + -0.044189453125, + 0.0260009765625, + -0.064453125, + -0.041748046875, + 0.00811767578125, + 0.0205078125, + 0.054931640625, + -0.0478515625, + -0.007781982421875, + 0.033203125, + 0.034423828125, + 0.00146484375, + 0.0478515625, + -0.0023193359375, + -0.037109375, + -0.04443359375, + -0.0106201171875, + 0.0277099609375, + 0.006103515625, + -0.004058837890625, + 0.010498046875, + -0.004547119140625, + 0.00101470947265625, + 0.034912109375, + -0.0211181640625, + -0.047119140625, + -0.030029296875, + -0.04296875, + -0.0101318359375, + 0.02294921875, + -0.0203857421875, + 0.033203125, + -0.03466796875, + 0.01507568359375, + 0.019287109375, + 0.033447265625, + 0.009521484375, + -0.033203125, + 0.01239013671875, + -0.06396484375, + 0.024169921875, + -0.0206298828125, + 0.024658203125, + 0.037353515625, + 0.029052734375, + 0.04833984375, + 0.05859375, + -0.007110595703125, + 0.0458984375, + 0.037841796875, + 0.038818359375, + 0.019775390625, + -0.02294921875, + -0.0033111572265625, + 0.061279296875, + 0.0208740234375, + -0.041259765625, + -0.037109375, + 0.0576171875, + 0.0089111328125, + -0.00139617919921875, + 0.02099609375, + -0.017333984375, + 0.0206298828125, + -0.0322265625, + 0.0281982421875, + -0.00958251953125, + 0.0172119140625, + -0.072265625, + 0.0238037109375, + -0.03466796875, + 0.0361328125, + -0.061279296875, + 0.0272216796875, + 0.02685546875, + -0.031982421875, + 0.034423828125, + 0.0260009765625, + 0.01806640625, + 0.00927734375, + -0.0146484375, + -0.03955078125, + 0.00506591796875, + 0.00176239013671875, + -0.007537841796875, + 0.017333984375, + -0.018310546875, + -0.0250244140625, + 0.004180908203125, + -0.0341796875, + -0.0185546875, + -0.0257568359375, + -0.021240234375, + -0.0238037109375, + 0.027099609375, + 0.000644683837890625, + 0.033203125, + 0.03564453125, + 0.0286865234375, + -0.01416015625, + -0.034423828125, + 0.0296630859375, + 0.046875, + 0.00029754638671875, + 0.052734375, + -0.01025390625, + 0.0205078125, + 0.025146484375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 17.337781000009045, + "queue_ms": 2.2332079999927146, + "tokenization_ms": 0.01820999999324613, + "inference_ms": 14.968249999995464, + "postprocessing_ms": null + } + }, + { + "id": "chunk-5", + "dense": [ + -0.025390625, + -0.000957489013671875, + -0.0189208984375, + 0.0081787109375, + -0.0159912109375, + 0.0101318359375, + -0.021728515625, + 0.0771484375, + -0.01104736328125, + -0.00616455078125, + -0.043212890625, + -0.0211181640625, + 0.0181884765625, + -0.003814697265625, + 0.044921875, + -0.0205078125, + 0.04736328125, + -0.00921630859375, + -0.007293701171875, + -0.012451171875, + -0.033935546875, + -0.03955078125, + -0.036376953125, + 0.01275634765625, + -0.030029296875, + 0.00244140625, + -0.0106201171875, + 0.03515625, + -0.052734375, + -0.03271484375, + -0.034423828125, + -0.05859375, + 0.000934600830078125, + -0.00994873046875, + -0.02734375, + -0.031494140625, + 0.006744384765625, + 0.019287109375, + -0.02783203125, + 0.0361328125, + -0.0155029296875, + 0.01348876953125, + 0.0306396484375, + 0.0050048828125, + 0.0047607421875, + -0.013916015625, + -0.0042724609375, + -0.00537109375, + -0.0027313232421875, + -0.0286865234375, + -0.03857421875, + -0.0218505859375, + 0.048095703125, + -0.01116943359375, + -0.051513671875, + 0.023193359375, + 0.00075531005859375, + -0.044921875, + -0.041748046875, + -0.0250244140625, + 0.01239013671875, + -0.004364013671875, + 0.0009918212890625, + -0.051025390625, + -0.0240478515625, + 0.06982421875, + -0.0086669921875, + 0.033935546875, + -0.034912109375, + -0.055908203125, + 0.01348876953125, + -0.00286865234375, + -0.0196533203125, + -0.020263671875, + -0.0546875, + 0.0230712890625, + 0.0205078125, + 0.000492095947265625, + -0.000591278076171875, + -0.004730224609375, + 0.01556396484375, + 0.01287841796875, + -0.03564453125, + 0.009765625, + 0.0159912109375, + -0.00653076171875, + -0.035888671875, + 0.01507568359375, + -0.05859375, + 0.0242919921875, + 0.031005859375, + -0.0242919921875, + 0.008056640625, + -0.005950927734375, + -0.03564453125, + -0.0220947265625, + -0.005889892578125, + -0.04736328125, + 0.01202392578125, + -0.02294921875, + -0.0016632080078125, + 0.0167236328125, + 0.037353515625, + -0.005096435546875, + -0.005859375, + -0.036865234375, + 0.035888671875, + 0.0419921875, + 0.019775390625, + 0.007049560546875, + 0.033203125, + -0.0235595703125, + 0.0220947265625, + -0.007354736328125, + -0.005706787109375, + -5.221366882324219e-05, + -0.035400390625, + -0.034912109375, + -0.00982666015625, + -0.033935546875, + 0.0322265625, + 0.002166748046875, + 0.07421875, + -0.018310546875, + -0.0177001953125, + -0.0177001953125, + -0.01214599609375, + 0.02880859375, + 0.033447265625, + 0.03076171875, + -0.00787353515625, + 0.0286865234375, + -0.0400390625, + 0.0030975341796875, + -0.064453125, + -0.04443359375, + 0.00823974609375, + 0.03271484375, + 0.006561279296875, + -0.050537109375, + 0.000232696533203125, + 0.058837890625, + 0.0240478515625, + -0.04541015625, + 0.033935546875, + 0.06005859375, + -0.0177001953125, + 0.0301513671875, + -0.008544921875, + -0.0810546875, + 0.01043701171875, + -0.0189208984375, + 0.03564453125, + -0.0079345703125, + 0.0218505859375, + -0.0244140625, + 0.031494140625, + 0.01171875, + 0.00982666015625, + 0.04345703125, + -0.001800537109375, + 0.054931640625, + 0.02294921875, + -0.00372314453125, + 0.016357421875, + -0.0123291015625, + 0.032958984375, + 0.06494140625, + 0.0028839111328125, + -0.035400390625, + -0.015869140625, + -0.0196533203125, + 0.0703125, + 0.0024566650390625, + -0.01318359375, + 0.051025390625, + 0.09619140625, + 0.0014495849609375, + 0.031494140625, + -0.0269775390625, + 0.006439208984375, + 0.016845703125, + 0.0184326171875, + 0.01318359375, + 0.0120849609375, + 0.00616455078125, + 0.06298828125, + -0.0257568359375, + 0.021484375, + -0.022705078125, + -0.00469970703125, + -0.00775146484375, + -0.00946044921875, + 0.006317138671875, + 0.0281982421875, + 0.038330078125, + 0.007354736328125, + -0.016357421875, + 0.0084228515625, + 0.0040283203125, + -0.006011962890625, + 0.0024871826171875, + 0.1044921875, + 0.00885009765625, + 0.0186767578125, + 0.015380859375, + -0.06787109375, + 0.01141357421875, + 0.015380859375, + -0.06689453125, + 0.0013885498046875, + -0.0712890625, + -0.024658203125, + -0.03271484375, + -2.562999725341797e-05, + -0.0019989013671875, + 0.0018463134765625, + -0.0218505859375, + -0.0306396484375, + -0.0133056640625, + 0.01171875, + 0.03271484375, + -0.0380859375, + 0.0284423828125, + -0.00130462646484375, + -0.0096435546875, + -0.048583984375, + 0.048095703125, + -0.001678466796875, + -0.034912109375, + 0.046875, + -0.01177978515625, + -0.0142822265625, + -0.0244140625, + 0.01153564453125, + 0.0291748046875, + 0.0091552734375, + -0.0211181640625, + 0.01239013671875, + 0.0260009765625, + 0.046875, + -0.036865234375, + -0.0458984375, + 0.0147705078125, + -0.00151824951171875, + 0.015380859375, + 0.053466796875, + 0.0174560546875, + -0.036865234375, + -0.01806640625, + 0.0400390625, + 0.006805419921875, + -0.0203857421875, + 0.022705078125, + 0.0079345703125, + 0.0186767578125, + -0.010498046875, + 0.01116943359375, + 0.006805419921875, + -0.0615234375, + -0.00179290771484375, + 0.044921875, + 0.049560546875, + -0.01434326171875, + -0.028564453125, + 0.00994873046875, + -0.03662109375, + 0.015625, + -0.04052734375, + -0.042236328125, + 0.01275634765625, + 0.012451171875, + 0.0137939453125, + -0.0150146484375, + -0.00634765625, + 0.0252685546875, + 0.0035247802734375, + -0.043701171875, + 0.07177734375, + 0.037841796875, + 0.032958984375, + -0.02734375, + 0.032958984375, + 0.0262451171875, + -0.0159912109375, + -0.007110595703125, + -0.059814453125, + -0.0179443359375, + -0.018310546875, + 0.01287841796875, + 0.02294921875, + -0.005401611328125, + 0.0556640625, + -0.0203857421875, + -0.01190185546875, + 0.0419921875, + -0.01470947265625, + -0.162109375, + 0.0279541015625, + 0.01214599609375, + 0.00665283203125, + 0.015869140625, + 0.00238037109375, + -0.01318359375, + -0.035400390625, + -0.000339508056640625, + 0.037841796875, + -0.0079345703125, + -0.044189453125, + 0.00604248046875, + -0.03857421875, + 0.0556640625, + -0.020263671875, + 0.0255126953125, + 0.0546875, + -0.0191650390625, + -0.0152587890625, + 0.0108642578125, + 0.0106201171875, + 0.0108642578125, + 0.01251220703125, + -0.043212890625, + -0.0252685546875, + -0.0027618408203125, + 0.0167236328125, + -0.00102996826171875, + 0.00799560546875, + -0.0096435546875, + 0.040771484375, + 0.006256103515625, + 0.0576171875, + -0.054443359375, + 0.0067138671875, + 0.0029449462890625, + -0.01953125, + -0.000835418701171875, + 0.052734375, + 0.0267333984375, + 0.046142578125, + -0.037109375, + 0.052001953125, + 0.0186767578125, + -0.076171875, + 0.01397705078125, + 0.0079345703125, + -0.01806640625, + -0.0184326171875, + 0.0220947265625, + -0.0400390625, + 0.02783203125, + -0.0263671875, + -0.0216064453125, + -0.007293701171875, + 0.036376953125, + -0.0223388671875, + 0.0005950927734375, + 0.03662109375, + -0.0218505859375, + -0.00689697265625, + -0.000732421875, + 0.035400390625, + -0.035888671875, + -0.03271484375, + 0.025390625, + 0.0035247802734375, + 0.0458984375, + -0.039306640625, + 0.0030059814453125, + -0.0458984375, + 0.00058746337890625, + -0.007598876953125, + 0.002716064453125, + 0.0263671875, + -0.006591796875, + -0.01708984375, + -0.017578125, + -0.05224609375, + -0.00070953369140625, + 0.05908203125, + 0.0186767578125, + -0.04736328125, + -0.0211181640625, + -0.0235595703125, + 0.031494140625, + 0.01312255859375, + 0.0361328125, + 0.2314453125, + 0.02490234375, + -0.01318359375, + -0.0186767578125, + 0.022216796875, + -0.04296875, + 0.04638671875, + -0.032958984375, + 0.00091552734375, + -0.012451171875, + -0.056884765625, + 0.00787353515625, + -0.007232666015625, + 0.0189208984375, + 0.00555419921875, + -0.0169677734375, + -0.0185546875, + -0.01123046875, + 0.08642578125, + -0.021728515625, + 0.039794921875, + 0.01177978515625, + 0.031982421875, + -0.0164794921875, + -0.006988525390625, + 0.00058746337890625, + 0.00262451171875, + -0.01953125, + -0.0028839111328125, + 0.03759765625, + -0.0791015625, + -0.00127410888671875, + 0.03564453125, + -0.0400390625, + 0.0140380859375, + -0.007232666015625, + -0.0179443359375, + -0.02294921875, + 0.01214599609375, + 0.033447265625, + -0.0016326904296875, + -0.013671875, + -0.0230712890625, + -0.0198974609375, + 0.01092529296875, + -0.02294921875, + 0.008056640625, + -0.045654296875, + 0.0272216796875, + 0.014892578125, + 0.0115966796875, + 0.00799560546875, + -0.00494384765625, + 0.048828125, + -0.037109375, + 0.005401611328125, + 0.0205078125, + -0.007293701171875, + -0.01214599609375, + 0.02783203125, + 0.0281982421875, + 0.0206298828125, + -0.0301513671875, + -0.032958984375, + 0.041015625, + -0.032470703125, + 0.0037384033203125, + -0.03076171875, + 0.00116729736328125, + 0.01116943359375, + 0.007049560546875, + 0.032958984375, + -0.00191497802734375, + 0.0164794921875, + 0.004547119140625, + -0.056396484375, + -0.00421142578125, + 0.034423828125, + -0.017822265625, + -0.008544921875, + -0.04345703125, + 0.033935546875, + -0.0218505859375, + 0.0012054443359375, + 0.0150146484375, + -0.0299072265625, + 0.0048828125, + 0.0291748046875, + 0.0341796875, + 0.0026397705078125, + -0.0654296875, + 0.003509521484375, + -0.001708984375, + 0.01348876953125, + -0.0869140625, + 0.03857421875, + 0.039306640625, + -0.00885009765625, + -0.02978515625, + 0.028076171875, + -0.0113525390625, + -0.0267333984375, + -0.054443359375, + -0.0247802734375, + 0.0303955078125, + -0.0169677734375, + 0.026123046875, + 0.0150146484375, + 0.01104736328125, + -0.022216796875, + 0.007049560546875, + 0.010009765625, + 0.004058837890625, + -0.0361328125, + 0.01031494140625, + 0.0167236328125, + -0.028564453125, + 0.01055908203125, + -0.03271484375, + 0.06298828125, + -0.031494140625, + -0.046875, + 0.0286865234375, + 0.02734375, + -0.01806640625, + -0.01611328125, + -0.01055908203125, + 0.006805419921875, + -0.0224609375, + -0.0035247802734375, + -0.0123291015625, + -0.0228271484375, + -0.01214599609375, + -0.0322265625, + 0.036865234375, + 0.0341796875, + -0.0036773681640625, + -0.0284423828125, + -0.018310546875, + 0.0078125, + -0.003753662109375, + -0.0303955078125, + -0.0203857421875, + -0.0712890625, + -0.0035552978515625, + 0.0260009765625, + -0.013671875, + -0.032470703125, + -0.0537109375, + 0.000484466552734375, + 0.0179443359375, + 0.017333984375, + 0.0179443359375, + -0.08935546875, + -0.06787109375, + 0.00885009765625, + 0.0003299713134765625, + 0.0062255859375, + 0.0028076171875, + 0.0003509521484375, + 0.039306640625, + 0.005157470703125, + 0.00109100341796875, + 0.0152587890625, + 0.007659912109375, + 0.076171875, + -0.0157470703125, + -0.00738525390625, + 0.01507568359375, + 0.016357421875, + 0.01080322265625, + -0.028076171875, + -0.0028839111328125, + 0.0235595703125, + -0.002899169921875, + 0.00689697265625, + -0.0123291015625, + 0.006591796875, + -0.015380859375, + 0.0274658203125, + 0.002105712890625, + -0.01153564453125, + -0.0186767578125, + -0.0013885498046875, + 0.051513671875, + -0.01025390625, + -0.0291748046875, + -0.032470703125, + -0.00640869140625, + -0.044921875, + -0.006500244140625, + 0.08984375, + -0.02734375, + -0.0206298828125, + 0.028076171875, + -0.01953125, + 0.01495361328125, + -0.0162353515625, + 0.0047607421875, + -0.05517578125, + -0.05615234375, + -0.00445556640625, + 0.01104736328125, + 0.0228271484375, + -0.0390625, + -0.040771484375, + -0.033935546875, + -0.0137939453125, + -0.005615234375, + 0.0281982421875, + 0.020263671875, + -0.005859375, + -0.019287109375, + -0.018798828125, + 0.004302978515625, + 0.045654296875, + 0.057373046875, + 0.031982421875, + 0.047119140625, + -0.0390625, + 0.00860595703125, + -0.013427734375, + 0.034912109375, + -0.02001953125, + 0.020263671875, + -0.022216796875, + 0.0223388671875, + -0.041259765625, + 0.0024871826171875, + -0.022216796875, + -0.005126953125, + -0.0031890869140625, + 0.023681640625, + -0.039306640625, + 0.0028076171875, + -0.00396728515625, + 0.002471923828125, + 0.025390625, + 0.0291748046875, + 0.01953125, + 0.010009765625, + -0.03076171875, + 0.00787353515625, + 0.005889892578125, + -0.010009765625, + -0.005462646484375, + 0.02783203125, + -0.07470703125, + 0.021484375, + 0.01611328125, + -0.0023040771484375, + -0.00982666015625, + -0.00213623046875, + -0.013671875, + -0.00421142578125, + -0.0108642578125, + 0.0299072265625, + 0.0184326171875, + -0.044677734375, + -0.00836181640625, + 0.0203857421875, + 0.06982421875, + 0.013671875, + -0.0003604888916015625, + 0.013427734375, + 0.007598876953125, + 0.01708984375, + 0.00079345703125, + -0.034912109375, + -0.044677734375, + -0.022216796875, + -0.0303955078125, + -0.01123046875, + -0.06689453125, + -0.019775390625, + -0.01300048828125, + -0.01080322265625, + 0.017578125, + -0.01019287109375, + -0.048095703125, + -0.01202392578125, + 0.0218505859375, + -0.042236328125, + 0.03125, + 0.043212890625, + -0.0203857421875, + 0.053955078125, + 0.01220703125, + 0.0294189453125, + 0.039794921875, + 0.036865234375, + 0.0011138916015625, + -0.018798828125, + -0.005584716796875, + -0.01507568359375, + 0.01336669921875, + 0.006317138671875, + 0.068359375, + 0.01031494140625, + 0.0036163330078125, + -0.0159912109375, + -0.01531982421875, + -0.0196533203125, + -0.054931640625, + -0.0086669921875, + -0.0322265625, + -0.0045166015625, + 0.0186767578125, + 0.0091552734375, + 0.006988525390625, + -0.01177978515625, + -0.048583984375, + -0.00701904296875, + 0.030029296875, + 0.0126953125, + -0.009765625, + -0.0106201171875, + -0.010498046875, + 0.01025390625, + 0.0218505859375, + -0.01519775390625, + 0.003753662109375, + -0.00830078125, + 0.0238037109375, + -0.02685546875, + 0.011474609375, + -0.007781982421875, + 0.00592041015625, + -0.016845703125, + -0.048095703125, + -0.0390625, + 0.0115966796875, + -0.0218505859375, + -0.00823974609375, + 0.05126953125, + 0.0025482177734375, + -0.0166015625, + -0.000949859619140625, + 0.0240478515625, + -0.0286865234375, + -0.0031280517578125, + 0.034912109375, + 0.03955078125, + 0.004486083984375, + -0.01904296875, + -0.008544921875, + -0.0341796875, + -0.0634765625, + 0.049560546875, + -0.0208740234375, + -0.064453125, + 0.0032501220703125, + 0.003997802734375, + -0.019287109375, + -0.04736328125, + -0.016357421875, + 0.004119873046875, + 0.00457763671875, + 0.0230712890625, + 0.000640869140625, + 0.01123046875, + 0.0155029296875, + 0.00086212158203125, + 0.013916015625, + 0.03857421875, + 0.0244140625, + -0.0093994140625, + -0.05224609375, + -0.007659912109375, + -0.022216796875, + -0.00860595703125, + 0.0037994384765625, + 0.0162353515625, + -0.048583984375, + 0.03857421875, + 0.03955078125, + -0.03515625, + 0.0048828125, + -0.0009765625, + 0.04833984375, + 0.02294921875, + -0.057373046875, + -0.01373291015625, + -0.003509521484375, + -0.03662109375, + -0.03857421875, + -0.0152587890625, + -0.0016632080078125, + 0.0123291015625, + 0.054931640625, + -0.035400390625, + -0.0113525390625, + -0.052490234375, + -0.018310546875, + -0.1220703125, + 0.018310546875, + 0.0140380859375, + 0.005462646484375, + -0.03271484375, + 0.019775390625, + -0.05615234375, + -0.00604248046875, + -0.0181884765625, + -0.07177734375, + 0.032958984375, + 0.0380859375, + 0.0211181640625, + -0.019775390625, + 0.021484375, + -0.00921630859375, + -0.025634765625, + -0.0306396484375, + 0.006317138671875, + 0.043701171875, + -0.0186767578125, + 0.0189208984375, + 0.039306640625, + 0.03662109375, + -0.0216064453125, + -0.0301513671875, + 0.01055908203125, + -0.01171875, + -0.037109375, + -0.0208740234375, + -0.0712890625, + -0.04541015625, + 0.02880859375, + 0.047607421875, + 0.05908203125, + 0.00775146484375, + 0.023681640625, + -0.058349609375, + -0.02783203125, + -0.00897216796875, + -0.00823974609375, + 0.00579833984375, + -0.01300048828125, + 0.047607421875, + 0.00689697265625, + 0.01239013671875, + -0.035400390625, + -0.0018310546875, + -0.0196533203125, + 0.02294921875, + -0.064453125, + 0.00885009765625, + 0.03369140625, + 0.002227783203125, + 0.03076171875, + 0.0130615234375, + 0.005096435546875, + -0.019287109375, + 0.031494140625, + 0.0133056640625, + -0.05078125, + 0.00191497802734375, + -0.0189208984375, + -0.04345703125, + 0.04736328125, + -0.0001811981201171875, + -0.01092529296875, + 0.00506591796875, + 0.046875, + -0.036865234375, + -0.0322265625, + -0.0142822265625, + 0.052734375, + -0.0140380859375, + 0.00543212890625, + 0.0002956390380859375, + 0.043701171875, + -0.01312255859375, + 0.052001953125, + -0.0068359375, + -0.083984375, + 0.030029296875, + -0.06298828125, + -0.003509521484375, + 0.0137939453125, + 0.037841796875, + 0.00146484375, + -0.05615234375, + 0.0223388671875, + -0.035400390625, + -0.04833984375, + 0.0072021484375, + -0.03173828125, + 0.0033416748046875, + 0.01312255859375, + 0.038330078125, + 0.00182342529296875, + -0.00171661376953125, + -0.007293701171875, + -0.041259765625, + -0.0242919921875, + 0.00213623046875, + 0.039794921875, + 0.0034332275390625, + 0.01104736328125, + 0.0179443359375, + 0.053466796875, + 0.0047607421875, + -0.00201416015625, + -0.0218505859375, + -0.0274658203125, + -0.043212890625, + -0.053466796875, + -0.03076171875, + 0.0262451171875, + 0.004119873046875, + -0.052734375, + -0.0400390625, + 0.035400390625, + 0.0240478515625, + 0.00921630859375, + -0.021484375, + 0.07861328125, + -0.007781982421875, + -0.035400390625, + -0.037353515625, + 0.0322265625, + 0.03955078125, + 0.021484375, + 0.01806640625, + 0.0390625, + -0.08154296875, + -0.0098876953125, + 0.02099609375, + -0.01031494140625, + 0.062255859375, + -0.006805419921875, + 0.0341796875, + -0.043212890625, + -0.004364013671875, + -0.002166748046875, + 0.04345703125, + 0.01300048828125, + -0.03173828125, + -0.008056640625, + 0.06396484375, + 0.01373291015625, + -0.03857421875, + 0.046875, + 0.0152587890625, + -0.056396484375, + 0.0032196044921875, + -0.0206298828125, + 0.05908203125, + -0.013671875, + 0.0198974609375, + -0.0260009765625, + -0.00830078125, + -0.0120849609375, + 0.0286865234375, + -0.0026397705078125, + -0.01263427734375, + 0.0164794921875, + -0.0301513671875, + 0.044677734375, + 0.055908203125, + 0.004119873046875, + 0.0556640625, + -0.0157470703125, + 0.019775390625, + 0.0155029296875, + 0.03955078125, + 0.00885009765625, + 0.0023040771484375, + -0.020263671875, + -0.0216064453125, + 0.04248046875, + -0.01348876953125, + 0.041748046875, + -0.0223388671875, + 0.01220703125, + 0.06494140625, + 0.03125, + -0.004119873046875, + -0.003936767578125, + 0.0184326171875, + 0.019287109375, + 0.01080322265625, + -0.00555419921875, + -0.006683349609375, + -0.00860595703125, + -0.007476806640625, + 0.00162506103515625, + -0.006195068359375, + 0.041748046875, + -0.01708984375, + -0.034912109375, + 0.0250244140625, + -0.00750732421875, + 0.0380859375, + 0.0042724609375, + 0.0084228515625, + 0.01031494140625, + -0.0118408203125, + -0.030517578125, + 0.000942230224609375, + -0.051513671875, + -0.00946044921875, + -0.02099609375, + 0.00994873046875, + 0.004119873046875, + -0.025390625, + 0.0036163330078125, + 0.0291748046875, + -0.00170135498046875, + -0.02001953125, + -0.009765625, + -0.024658203125, + 0.044921875, + 0.052734375, + 0.026611328125, + 0.0240478515625, + -0.026611328125, + -0.0220947265625, + 0.03466796875, + 0.019287109375, + -0.00958251953125, + -0.0029754638671875, + 0.00872802734375, + -0.0322265625, + 0.0272216796875, + -0.0016326904296875, + -0.003021240234375, + 0.0130615234375, + -0.0546875, + 0.000820159912109375, + -0.01251220703125, + 0.039306640625, + 0.0257568359375, + -0.049560546875, + 0.0595703125, + 0.0303955078125, + 0.00592041015625, + -0.001953125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 15.201044999997748, + "queue_ms": 1.2174160000029133, + "tokenization_ms": 0.020331000001760913, + "inference_ms": 13.793675000002281, + "postprocessing_ms": null + } + }, + { + "id": "chunk-6", + "dense": [ + 0.01092529296875, + -0.0177001953125, + -0.033203125, + 0.0234375, + -0.043212890625, + -0.0205078125, + 0.0299072265625, + 0.041259765625, + -0.017822265625, + -0.0034027099609375, + -0.029296875, + -0.041015625, + 0.0306396484375, + 0.0003833770751953125, + -0.00677490234375, + -0.0296630859375, + 0.00144195556640625, + -0.0030059814453125, + -0.00921630859375, + -0.0213623046875, + -0.0089111328125, + 0.0201416015625, + -0.061767578125, + 0.041259765625, + 0.0228271484375, + 0.044677734375, + -0.046142578125, + 0.055419921875, + 0.004241943359375, + 0.0498046875, + -0.0277099609375, + -0.04638671875, + 0.0147705078125, + 0.0263671875, + -0.048583984375, + -0.0133056640625, + 0.02783203125, + -0.0018310546875, + -0.026123046875, + 0.024169921875, + -0.03515625, + 0.01507568359375, + 0.0625, + -0.007537841796875, + 2.1010637283325195e-06, + -0.00933837890625, + -0.031494140625, + -0.005401611328125, + -0.00836181640625, + -0.06689453125, + -0.0390625, + -0.009033203125, + 0.039794921875, + -0.0301513671875, + -0.019287109375, + 0.043701171875, + -0.04150390625, + -0.01055908203125, + -0.052001953125, + -0.001129150390625, + -0.026123046875, + 0.0062255859375, + -0.0010223388671875, + -0.0169677734375, + 0.0027008056640625, + 0.0247802734375, + -0.0172119140625, + 0.0230712890625, + -0.02197265625, + -0.05322265625, + 0.021240234375, + -0.04150390625, + -0.037353515625, + -0.0027008056640625, + -0.06640625, + 0.039794921875, + -0.0191650390625, + -0.02001953125, + -0.017333984375, + 0.00048065185546875, + -0.00872802734375, + -0.006805419921875, + -0.03076171875, + 0.0223388671875, + 0.0272216796875, + 0.018310546875, + -0.021728515625, + 0.0322265625, + -0.07861328125, + 0.054443359375, + 0.0167236328125, + 0.0037689208984375, + -0.0045166015625, + -0.01446533203125, + -0.0296630859375, + -0.039306640625, + -0.0087890625, + -0.0184326171875, + 0.00909423828125, + -0.0181884765625, + 0.001983642578125, + -0.00072479248046875, + 0.0211181640625, + -0.002532958984375, + 0.0269775390625, + -0.01416015625, + 0.072265625, + 0.0166015625, + 0.0264892578125, + -0.003082275390625, + 0.042236328125, + 0.0184326171875, + 0.0177001953125, + 0.02783203125, + -0.003387451171875, + 0.0147705078125, + -0.039794921875, + -0.0400390625, + 0.0247802734375, + 0.0003662109375, + 0.04345703125, + 0.033447265625, + 0.027587890625, + 0.0024566650390625, + 0.0213623046875, + -0.022216796875, + -0.016357421875, + -0.0235595703125, + 0.01953125, + -0.00592041015625, + -0.0234375, + 0.0498046875, + -0.005950927734375, + 0.0306396484375, + -0.01422119140625, + -0.034912109375, + 0.0050048828125, + 0.021728515625, + -0.0400390625, + -0.033203125, + -0.01239013671875, + 0.04638671875, + -0.01171875, + -0.0264892578125, + 0.04443359375, + 0.003173828125, + 0.0157470703125, + -0.006378173828125, + 0.0024566650390625, + -0.029052734375, + -0.015625, + 0.0062255859375, + 0.0277099609375, + 0.0257568359375, + -0.0252685546875, + 0.0157470703125, + -0.01348876953125, + 0.061767578125, + -0.059814453125, + 0.044677734375, + 0.0167236328125, + 0.01092529296875, + -0.003326416015625, + -0.016357421875, + 0.037353515625, + -0.0031585693359375, + 0.02197265625, + 0.0458984375, + 0.00012493133544921875, + -0.036376953125, + 0.0162353515625, + -0.049560546875, + 0.019287109375, + 0.007110595703125, + 0.0036163330078125, + 0.0615234375, + 0.07470703125, + -0.0137939453125, + 0.00848388671875, + -0.041259765625, + 0.027099609375, + -0.007568359375, + 0.020751953125, + 0.0013885498046875, + -0.0032501220703125, + 0.05224609375, + 0.021728515625, + -0.0311279296875, + 0.0201416015625, + -0.0308837890625, + -0.0238037109375, + -0.00830078125, + 0.01092529296875, + 0.024169921875, + 0.083984375, + 0.00518798828125, + 0.0013275146484375, + 0.0245361328125, + 0.0130615234375, + -0.0269775390625, + -0.056884765625, + 0.004425048828125, + 0.01055908203125, + 0.005889892578125, + -0.00994873046875, + 0.043701171875, + -0.049560546875, + 0.01153564453125, + 0.0103759765625, + -0.0693359375, + 0.0181884765625, + -0.041259765625, + -0.010986328125, + -0.02880859375, + -0.01141357421875, + 0.01092529296875, + 0.0033111572265625, + -0.047607421875, + 0.0045166015625, + -0.0235595703125, + -2.002716064453125e-05, + 0.0125732421875, + 0.006622314453125, + 0.0269775390625, + -0.033203125, + -0.05810546875, + -0.000408172607421875, + 0.05029296875, + -0.0380859375, + -0.0673828125, + 0.016845703125, + 0.0296630859375, + -0.0257568359375, + -0.0162353515625, + -0.0439453125, + 0.0045166015625, + -0.001983642578125, + 0.06591796875, + 0.013916015625, + 0.01239013671875, + 0.0081787109375, + -0.038330078125, + 0.0281982421875, + -0.023193359375, + 0.004150390625, + -0.029541015625, + 0.0081787109375, + 0.005767822265625, + -0.032958984375, + -0.0361328125, + 0.0400390625, + -0.03271484375, + -0.0031890869140625, + 0.0230712890625, + -0.0096435546875, + 0.0023956298828125, + 0.0108642578125, + 0.0019683837890625, + -0.034423828125, + -0.05517578125, + -0.0272216796875, + 0.033203125, + 0.051513671875, + -0.0174560546875, + 0.008056640625, + 0.026611328125, + -0.05859375, + 0.037109375, + -0.0072021484375, + -0.0206298828125, + -0.029296875, + 0.0184326171875, + 0.0301513671875, + -0.0186767578125, + 0.0030364990234375, + 0.01806640625, + -0.021728515625, + -0.003448486328125, + 0.0888671875, + -6.723403930664062e-05, + 0.064453125, + 0.0093994140625, + 0.01483154296875, + -0.06103515625, + 0.038330078125, + -0.04931640625, + -0.047607421875, + 0.042236328125, + -0.00921630859375, + -0.011474609375, + -0.01483154296875, + -0.026611328125, + 0.0439453125, + -0.03564453125, + -0.02294921875, + 0.002716064453125, + 0.015380859375, + -0.17578125, + 0.041259765625, + 0.04345703125, + -0.03759765625, + 0.0206298828125, + 0.04052734375, + -0.01507568359375, + -0.058837890625, + 0.01153564453125, + 0.040283203125, + 0.023681640625, + -0.05908203125, + 0.004302978515625, + -0.043701171875, + 0.033447265625, + -0.0038604736328125, + -0.01171875, + 0.029296875, + -0.0111083984375, + -0.004974365234375, + 0.0087890625, + -0.0133056640625, + -0.004119873046875, + -0.006317138671875, + -0.050537109375, + -0.020263671875, + 0.0096435546875, + 0.01611328125, + -0.004241943359375, + 0.012451171875, + -0.01470947265625, + 0.037353515625, + 0.00634765625, + 0.0079345703125, + -0.00750732421875, + 0.03662109375, + 0.02197265625, + -0.004608154296875, + 0.0264892578125, + 0.020751953125, + 0.01904296875, + 0.0260009765625, + -0.00360107421875, + -0.0150146484375, + 0.01513671875, + -0.0211181640625, + -0.00191497802734375, + 0.009033203125, + -0.052001953125, + -0.02099609375, + -0.0048828125, + -0.007568359375, + -0.01031494140625, + -0.008056640625, + -0.07177734375, + 0.028076171875, + 0.0361328125, + -0.01348876953125, + 0.041015625, + 0.034912109375, + 0.03369140625, + -0.03125, + 0.0010833740234375, + -0.0181884765625, + -0.037109375, + -0.011474609375, + 0.04638671875, + -0.0218505859375, + -0.005767822265625, + -0.072265625, + -0.0341796875, + -0.005126953125, + 0.007049560546875, + 0.026611328125, + -0.003021240234375, + 0.025390625, + -0.061767578125, + -0.031982421875, + 0.000537872314453125, + -0.061767578125, + 0.00141143798828125, + 0.0615234375, + 0.0294189453125, + -0.041015625, + 0.0007171630859375, + -0.049072265625, + 0.023681640625, + -0.0184326171875, + 0.0830078125, + 0.2314453125, + 0.033447265625, + -0.0206298828125, + -0.05078125, + 0.0390625, + -0.01129150390625, + 0.051513671875, + -0.0252685546875, + 0.0286865234375, + -0.01556396484375, + -0.0159912109375, + 0.0006256103515625, + -0.007659912109375, + 0.00274658203125, + -0.0111083984375, + 0.033447265625, + 0.0003986358642578125, + 0.003662109375, + 0.040283203125, + 0.032470703125, + 0.01544189453125, + -0.01348876953125, + 0.06689453125, + 0.00830078125, + -0.05322265625, + 0.042724609375, + 0.00787353515625, + -0.0556640625, + 0.01007080078125, + 0.00179290771484375, + -0.007232666015625, + 0.025146484375, + 0.00141143798828125, + -0.039794921875, + 0.01611328125, + 0.03076171875, + 0.06884765625, + -0.042724609375, + 0.01025390625, + 0.0272216796875, + 0.032958984375, + -0.0096435546875, + -0.023681640625, + -0.051513671875, + 0.00445556640625, + -0.05859375, + 0.017578125, + 0.018798828125, + 0.037841796875, + 0.040283203125, + -0.02294921875, + -0.002777099609375, + -0.00897216796875, + 0.00726318359375, + -0.02587890625, + -0.042236328125, + 0.0218505859375, + 0.0257568359375, + 0.023681640625, + -0.00213623046875, + 0.004302978515625, + -0.01171875, + -0.0184326171875, + -0.0306396484375, + -0.007110595703125, + -0.04833984375, + 0.02783203125, + -0.020263671875, + -0.0185546875, + 0.01470947265625, + 0.02783203125, + -0.0087890625, + -0.0224609375, + 0.0223388671875, + 0.000823974609375, + 0.00063323974609375, + 0.05810546875, + 0.00689697265625, + -0.01348876953125, + 0.006927490234375, + -0.035400390625, + -0.024169921875, + -0.011474609375, + -0.017822265625, + 0.00921630859375, + -0.035400390625, + 0.03125, + 0.050537109375, + 0.01300048828125, + 0.018310546875, + -0.0296630859375, + -0.036865234375, + -0.001220703125, + -0.00113677978515625, + -0.060302734375, + 0.020263671875, + 0.03564453125, + -0.007659912109375, + -0.04638671875, + 0.0673828125, + 0.0230712890625, + -0.00592041015625, + -0.05615234375, + 0.004241943359375, + 0.0145263671875, + -0.03564453125, + -0.01300048828125, + 0.03857421875, + -0.0030670166015625, + 0.037353515625, + 0.005889892578125, + 0.0299072265625, + 0.0252685546875, + 0.002899169921875, + 0.01409912109375, + -0.016357421875, + -0.0194091796875, + 0.007354736328125, + -0.0238037109375, + 0.052001953125, + 0.01416015625, + 0.0123291015625, + 0.031982421875, + 0.0034027099609375, + -0.01080322265625, + -0.0247802734375, + 8.440017700195312e-05, + -0.05078125, + -0.0184326171875, + 0.00052642822265625, + 0.0185546875, + -0.012451171875, + -0.0361328125, + -0.03564453125, + 0.01080322265625, + -0.005157470703125, + -0.0016632080078125, + -0.012939453125, + -0.0024871826171875, + -0.00250244140625, + 0.000965118408203125, + -0.0260009765625, + -0.02880859375, + -0.0625, + -0.0084228515625, + 0.03125, + 0.0167236328125, + -0.023193359375, + -0.08642578125, + -0.0006561279296875, + 0.0211181640625, + 0.0118408203125, + 0.0230712890625, + -0.06884765625, + -0.024658203125, + -0.056396484375, + -0.025390625, + -0.02490234375, + -0.0198974609375, + 0.00799560546875, + 0.0205078125, + 0.047607421875, + -0.04150390625, + 0.01361083984375, + -0.0174560546875, + 0.05419921875, + -0.01202392578125, + 0.00665283203125, + -0.00186920166015625, + -0.0284423828125, + -0.026611328125, + -0.0458984375, + 0.0157470703125, + -0.031982421875, + 0.0017242431640625, + 0.025146484375, + -0.042724609375, + 0.0306396484375, + -0.005340576171875, + -0.03125, + 0.00994873046875, + 0.0283203125, + -0.01361083984375, + -0.0037689208984375, + -0.01611328125, + -0.023193359375, + -0.0238037109375, + -0.0164794921875, + 0.02587890625, + -0.01611328125, + -0.015380859375, + 0.109375, + 0.00469970703125, + -0.0225830078125, + -0.005401611328125, + -0.0419921875, + 0.037353515625, + -0.017822265625, + 0.02880859375, + -0.0751953125, + -0.0257568359375, + 0.0169677734375, + 0.01531982421875, + 0.01708984375, + -0.04345703125, + -0.0322265625, + -0.03857421875, + -0.0152587890625, + -0.0145263671875, + 0.037353515625, + 0.043212890625, + 0.034912109375, + -0.0308837890625, + 0.0007171630859375, + 0.00982666015625, + 0.0135498046875, + 0.0225830078125, + 0.02294921875, + 0.04833984375, + -0.034423828125, + -0.0306396484375, + -0.0184326171875, + 0.0517578125, + -0.0361328125, + -0.0230712890625, + 0.0224609375, + 0.0040283203125, + -0.0022735595703125, + 0.01171875, + -0.0260009765625, + -0.01611328125, + -0.00555419921875, + 0.00119781494140625, + 0.030517578125, + -0.006500244140625, + -0.0167236328125, + -0.01953125, + 0.0181884765625, + 0.0091552734375, + -0.0238037109375, + 0.07470703125, + 5.841255187988281e-05, + 0.083984375, + 0.023681640625, + -0.006072998046875, + 0.0093994140625, + -0.04443359375, + -0.00531005859375, + 0.01116943359375, + -0.005889892578125, + -0.005706787109375, + -0.03271484375, + 0.02099609375, + -0.022216796875, + 0.00701904296875, + 0.000293731689453125, + 0.0103759765625, + 0.03271484375, + -0.01275634765625, + -0.017333984375, + -0.03564453125, + 0.05908203125, + -0.0174560546875, + -0.0283203125, + 0.0235595703125, + -0.0018310546875, + -0.00958251953125, + -0.031494140625, + -0.039306640625, + -0.06591796875, + -0.003448486328125, + -0.01055908203125, + -0.030517578125, + -0.0196533203125, + -0.00099945068359375, + 0.0120849609375, + -0.0322265625, + 0.0029449462890625, + -0.01116943359375, + -0.033935546875, + -0.0264892578125, + 0.0167236328125, + -0.0299072265625, + 0.025390625, + -0.0084228515625, + 0.0029296875, + -0.01495361328125, + 0.0390625, + 2.9921531677246094e-05, + 0.00262451171875, + 0.038330078125, + -0.0021209716796875, + -0.0322265625, + 0.0157470703125, + -0.01953125, + 0.001190185546875, + -0.000377655029296875, + 0.004241943359375, + 0.003326416015625, + 0.002410888671875, + 0.01068115234375, + 0.033203125, + 0.0196533203125, + -0.04833984375, + 0.002044677734375, + 0.001800537109375, + -0.0255126953125, + -0.007476806640625, + 0.0322265625, + -0.046142578125, + -0.0089111328125, + -0.01904296875, + 0.02880859375, + 0.0654296875, + 0.0238037109375, + -0.029052734375, + 0.0072021484375, + -0.0252685546875, + 0.0111083984375, + 0.0159912109375, + -0.000644683837890625, + -0.043212890625, + -0.00341796875, + 0.0089111328125, + 0.00787353515625, + 0.025146484375, + -0.025146484375, + -0.000942230224609375, + -0.00592041015625, + -0.0654296875, + -0.0166015625, + 0.05322265625, + -0.03662109375, + -0.0106201171875, + 0.0024566650390625, + -0.044677734375, + 0.0194091796875, + -0.015869140625, + 0.0205078125, + -0.03564453125, + 0.001007080078125, + -0.01080322265625, + 0.042236328125, + -0.01495361328125, + 0.022216796875, + -0.06787109375, + -0.018798828125, + -0.0439453125, + 0.031494140625, + -0.015625, + 0.009033203125, + -0.029052734375, + 0.00848388671875, + -0.04833984375, + 0.026611328125, + -0.0498046875, + 0.04345703125, + -0.0025177001953125, + 0.0419921875, + 0.01068115234375, + 0.0186767578125, + 0.036376953125, + -0.00531005859375, + -0.0064697265625, + 0.0245361328125, + 0.02001953125, + 0.0255126953125, + -0.07666015625, + -0.0126953125, + -0.0286865234375, + -0.037353515625, + 0.0654296875, + 0.040283203125, + -0.0125732421875, + 0.0167236328125, + 0.0281982421875, + -0.0186767578125, + 0.031982421875, + -0.0026702880859375, + 0.033447265625, + 0.01416015625, + -0.032470703125, + -0.01544189453125, + -0.004608154296875, + -0.053466796875, + -0.01416015625, + -0.03662109375, + 0.0252685546875, + 0.0096435546875, + 0.031982421875, + -0.06982421875, + 0.03271484375, + -0.0576171875, + -0.0283203125, + -0.1162109375, + 0.021728515625, + -0.02294921875, + -0.00038909912109375, + -0.01953125, + 0.01275634765625, + -0.048095703125, + -0.033203125, + -0.048583984375, + -0.047119140625, + 0.01092529296875, + 0.0185546875, + 0.022216796875, + -0.0167236328125, + -0.0216064453125, + -0.0032501220703125, + -0.02587890625, + -0.01708984375, + -0.0137939453125, + 0.0228271484375, + 0.0235595703125, + -0.00531005859375, + 0.0255126953125, + -0.00384521484375, + -0.01416015625, + 0.026611328125, + 0.02587890625, + 0.01446533203125, + -0.009765625, + -0.055419921875, + 0.00170135498046875, + -0.05859375, + -0.0108642578125, + 0.06982421875, + 0.04248046875, + 0.036865234375, + -0.00787353515625, + -0.00665283203125, + -0.01123046875, + 0.0036773681640625, + 0.0269775390625, + 0.009521484375, + -0.025146484375, + 0.0322265625, + -0.02001953125, + 0.01611328125, + -0.005706787109375, + 0.0234375, + -0.005279541015625, + 0.0186767578125, + -0.012939453125, + -0.00872802734375, + -0.017333984375, + -0.0029449462890625, + 0.0361328125, + 0.00848388671875, + -0.01025390625, + -0.01318359375, + 0.0546875, + 0.010986328125, + -0.04443359375, + 0.0240478515625, + -0.00750732421875, + -0.059814453125, + 0.048095703125, + 0.0390625, + -0.016845703125, + 0.0015716552734375, + 0.06005859375, + 0.000331878662109375, + -0.004974365234375, + 0.0269775390625, + 0.0194091796875, + -0.0172119140625, + 0.02099609375, + -0.0023040771484375, + 0.027099609375, + 0.001190185546875, + 0.0196533203125, + -0.0400390625, + -0.041259765625, + 0.026611328125, + -0.0228271484375, + 0.048583984375, + 0.0004673004150390625, + -0.01348876953125, + -0.01080322265625, + -0.039794921875, + -0.083984375, + -0.0264892578125, + -0.01556396484375, + -0.00799560546875, + 0.008544921875, + 0.0390625, + -0.007537841796875, + 0.020263671875, + -0.01434326171875, + -0.000843048095703125, + -0.0146484375, + -0.01055908203125, + 0.04248046875, + 0.024169921875, + 0.04248046875, + 0.024658203125, + -0.00970458984375, + 0.0223388671875, + 0.0211181640625, + -0.0218505859375, + -0.025146484375, + -0.051025390625, + 0.000614166259765625, + -0.01611328125, + -0.029052734375, + -0.0277099609375, + 0.0234375, + -0.002899169921875, + -0.016845703125, + -0.0093994140625, + 0.037353515625, + -0.0390625, + 0.0211181640625, + -0.00018024444580078125, + 0.032958984375, + 0.000705718994140625, + -0.033935546875, + -0.007415771484375, + -0.00390625, + -0.021240234375, + -0.0052490234375, + 0.01025390625, + -0.00787353515625, + -0.060302734375, + 0.007354736328125, + 0.024658203125, + 0.00665283203125, + 0.01348876953125, + -0.046875, + 0.0272216796875, + -0.05419921875, + -0.0245361328125, + 0.0186767578125, + 0.01361083984375, + 0.01544189453125, + -0.04931640625, + -0.003692626953125, + -0.00726318359375, + 0.0157470703125, + -0.0087890625, + 0.0118408203125, + -0.037353515625, + -0.037353515625, + 0.02197265625, + 0.0260009765625, + 0.04443359375, + -0.03662109375, + -0.0089111328125, + 0.046142578125, + 0.006317138671875, + 0.00408935546875, + -0.01953125, + 0.00084686279296875, + -0.0172119140625, + 0.0230712890625, + -0.04736328125, + 0.04638671875, + 0.044921875, + -0.0235595703125, + 0.02880859375, + -0.004913330078125, + -0.004302978515625, + 0.0196533203125, + 0.0224609375, + 0.00433349609375, + 0.051025390625, + 0.03076171875, + -0.012451171875, + 0.02001953125, + 0.0380859375, + 0.06640625, + -0.0205078125, + -0.004241943359375, + 0.06884765625, + 0.0771484375, + -0.025390625, + 0.03173828125, + 0.00848388671875, + 0.005279541015625, + 0.06298828125, + -0.01202392578125, + -0.031494140625, + -0.020751953125, + 0.00274658203125, + 0.0174560546875, + -0.00909423828125, + 0.056884765625, + 0.027587890625, + -0.021240234375, + 0.033203125, + 0.046142578125, + -0.00732421875, + 0.000667572021484375, + 0.00445556640625, + 0.02587890625, + -0.02587890625, + -0.03515625, + 0.016357421875, + 0.0201416015625, + -0.03662109375, + -0.00787353515625, + 0.003173828125, + -0.00113677978515625, + -0.0150146484375, + 0.0238037109375, + 0.043212890625, + 0.0296630859375, + 0.004302978515625, + -0.03515625, + 0.01007080078125, + 0.0162353515625, + 0.044921875, + 0.047119140625, + 0.041015625, + -0.025146484375, + -0.043212890625, + -0.03271484375, + -0.01507568359375, + -0.043212890625, + 0.004547119140625, + -0.0108642578125, + -0.022216796875, + -0.0230712890625, + 0.00909423828125, + -0.003387451171875, + 0.00836181640625, + -0.00689697265625, + 0.0242919921875, + -0.049560546875, + 0.00921630859375, + 0.0184326171875, + -0.008056640625, + 0.059326171875, + 0.01806640625, + 0.0576171875, + 1.9550323486328125e-05 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 17.58623499999601, + "queue_ms": 2.079604999991602, + "tokenization_ms": 0.03321100000164279, + "inference_ms": 15.039851000011595, + "postprocessing_ms": null + } + }, + { + "id": "chunk-7", + "dense": [ + -0.0211181640625, + 0.04345703125, + -0.047607421875, + 0.026611328125, + -0.0322265625, + -0.041748046875, + 0.0244140625, + 0.03759765625, + -0.004791259765625, + -0.00616455078125, + 0.003143310546875, + -0.0157470703125, + 0.0016021728515625, + 0.0224609375, + 0.04931640625, + -0.0224609375, + 0.041748046875, + -0.013671875, + -0.01519775390625, + 0.01397705078125, + -0.0264892578125, + 0.02197265625, + 0.0021820068359375, + 0.050537109375, + 0.00408935546875, + 0.018798828125, + -0.0419921875, + -0.00823974609375, + -0.0299072265625, + -0.037109375, + -0.0026092529296875, + -0.0361328125, + -0.050048828125, + 0.0023651123046875, + -0.04248046875, + -0.01611328125, + -0.00872802734375, + 0.055419921875, + -0.019287109375, + 0.0179443359375, + 0.032470703125, + -0.01129150390625, + 0.03271484375, + -0.0322265625, + 0.0257568359375, + -0.06298828125, + -0.040283203125, + -0.005584716796875, + -0.01361083984375, + -0.033935546875, + 0.0023345947265625, + -0.0009918212890625, + 0.0162353515625, + -0.0021209716796875, + -0.00531005859375, + -0.00157928466796875, + -0.01611328125, + 0.04052734375, + -0.032958984375, + 0.006256103515625, + 0.00787353515625, + 0.0096435546875, + 0.004119873046875, + -0.017578125, + -0.01055908203125, + 0.11669921875, + -0.0023345947265625, + -0.0118408203125, + -0.023193359375, + -0.048828125, + -0.0002193450927734375, + -0.01116943359375, + 0.01458740234375, + -0.01123046875, + -0.055908203125, + 0.0135498046875, + 0.016357421875, + -0.02783203125, + -0.012451171875, + -0.0145263671875, + 0.076171875, + -0.017333984375, + -0.062255859375, + 0.0157470703125, + 0.0279541015625, + 0.064453125, + -0.0322265625, + 0.033203125, + -0.0294189453125, + 0.01263427734375, + 0.047119140625, + 0.0186767578125, + 0.0031585693359375, + 0.0167236328125, + -0.04638671875, + 0.052734375, + -0.0224609375, + -0.0106201171875, + 0.01202392578125, + 0.00811767578125, + 0.0167236328125, + -0.005157470703125, + 0.01434326171875, + -0.0595703125, + 0.03271484375, + -0.0712890625, + 0.0712890625, + 0.04248046875, + 0.016845703125, + 0.01190185546875, + 0.03515625, + 0.03125, + 0.01507568359375, + 0.0264892578125, + -0.0037384033203125, + -0.01312255859375, + -0.0303955078125, + -0.056640625, + -0.00628662109375, + -0.042236328125, + 0.004608154296875, + 0.007781982421875, + 0.0216064453125, + -0.0223388671875, + 0.02734375, + -0.057373046875, + 0.0081787109375, + -0.01190185546875, + -0.01007080078125, + 0.0184326171875, + -0.01055908203125, + 0.009033203125, + 0.00112152099609375, + 0.003875732421875, + -0.013916015625, + -0.0458984375, + -0.017822265625, + 0.00341796875, + -0.006927490234375, + -0.03955078125, + -0.01019287109375, + 0.05322265625, + -0.0184326171875, + -0.04931640625, + -0.00811767578125, + 0.00628662109375, + 0.0198974609375, + -0.006256103515625, + 0.0341796875, + -0.0303955078125, + 0.0021820068359375, + -0.012939453125, + 0.0262451171875, + -0.0189208984375, + 0.0185546875, + 0.006622314453125, + -0.01470947265625, + 0.01470947265625, + -0.03076171875, + 0.000560760498046875, + 0.0306396484375, + 0.018798828125, + -0.003387451171875, + 0.018798828125, + 0.0517578125, + 0.00482177734375, + 0.029052734375, + 0.011962890625, + 0.00115966796875, + -0.025634765625, + 0.0191650390625, + -0.04638671875, + 0.055908203125, + -0.01904296875, + 0.0162353515625, + 0.047607421875, + 0.05517578125, + 0.035888671875, + -0.0028076171875, + -0.041259765625, + -0.0157470703125, + 0.018310546875, + 0.01904296875, + -0.01422119140625, + -0.0284423828125, + 0.042236328125, + 0.0306396484375, + -0.015869140625, + 0.01007080078125, + 0.034423828125, + -0.02490234375, + -0.01708984375, + -0.0179443359375, + 0.0208740234375, + 0.046142578125, + -0.029052734375, + 0.0238037109375, + -0.039794921875, + -0.017333984375, + 0.034423828125, + -0.0284423828125, + 0.04638671875, + 0.0185546875, + 0.017578125, + -0.03173828125, + -0.0157470703125, + -0.0142822265625, + 0.00531005859375, + 0.006988525390625, + -0.04345703125, + 0.033935546875, + -0.01324462890625, + -0.01287841796875, + -0.0225830078125, + -0.04345703125, + 0.0023651123046875, + 0.00141143798828125, + -0.0123291015625, + -0.039794921875, + -0.03857421875, + 0.006927490234375, + 0.001068115234375, + -0.043212890625, + 0.03955078125, + 0.039794921875, + -0.031494140625, + 0.025146484375, + 0.0322265625, + -0.00872802734375, + -0.0164794921875, + 0.0028228759765625, + -0.0203857421875, + 0.001007080078125, + -0.012451171875, + 0.0615234375, + -0.0042724609375, + 0.014404296875, + -0.00982666015625, + -0.03369140625, + 0.001953125, + 0.01904296875, + 0.00909423828125, + 0.0017547607421875, + 0.04248046875, + -0.00128173828125, + 0.015869140625, + -0.00115203857421875, + -0.0303955078125, + -0.01226806640625, + -0.01708984375, + 0.0074462890625, + -0.0033721923828125, + -0.042236328125, + 0.0390625, + 0.002044677734375, + 0.015380859375, + -0.00531005859375, + -0.0262451171875, + -0.048828125, + -0.0172119140625, + 0.00194549560546875, + 0.05029296875, + 0.0155029296875, + 0.017822265625, + -0.0361328125, + -0.0034637451171875, + -0.00787353515625, + -0.02978515625, + -0.0181884765625, + -0.0045166015625, + -0.0091552734375, + -0.00433349609375, + -0.025390625, + 0.007476806640625, + 0.015869140625, + 0.0284423828125, + 0.01019287109375, + -0.0262451171875, + 0.034423828125, + 0.025634765625, + 0.0250244140625, + -0.0118408203125, + 0.0498046875, + 0.01251220703125, + 0.038330078125, + 0.0108642578125, + -0.060302734375, + -0.01141357421875, + 0.0145263671875, + 0.0189208984375, + 0.00616455078125, + -0.0203857421875, + 0.048828125, + 0.01190185546875, + -0.030029296875, + 0.04345703125, + 0.002685546875, + -0.1474609375, + 0.04296875, + -0.018798828125, + 0.01220703125, + 0.0233154296875, + -0.0174560546875, + 0.021728515625, + -0.0108642578125, + -0.031494140625, + -0.0033111572265625, + -0.058837890625, + -0.055419921875, + -0.0517578125, + -0.04443359375, + -0.01531982421875, + -0.005096435546875, + -0.0230712890625, + -0.01287841796875, + 0.07861328125, + -0.03759765625, + 0.0263671875, + 0.04638671875, + 0.06884765625, + -0.060791015625, + -0.0203857421875, + -0.003326416015625, + -0.0123291015625, + -0.019287109375, + -0.0341796875, + 0.0029754638671875, + 0.00125885009765625, + 0.0203857421875, + -0.01263427734375, + 0.039306640625, + 0.01141357421875, + 0.031494140625, + 0.0150146484375, + -0.006256103515625, + -0.00836181640625, + 0.004302978515625, + 0.000232696533203125, + 0.04931640625, + -0.055419921875, + -0.0028228759765625, + 0.00830078125, + -0.01300048828125, + 0.00958251953125, + 0.01806640625, + -0.0390625, + -0.0269775390625, + 0.03466796875, + -0.0322265625, + -0.0224609375, + -0.01434326171875, + 0.030029296875, + 0.01611328125, + 0.007110595703125, + -0.0179443359375, + -0.087890625, + 0.031982421875, + -0.056640625, + -0.057373046875, + 0.004364013671875, + 0.021484375, + 0.000789642333984375, + 0.01806640625, + 0.0205078125, + 0.00531005859375, + -0.0028839111328125, + 0.006561279296875, + 0.03076171875, + 0.00677490234375, + 0.0228271484375, + 0.009033203125, + 0.01397705078125, + 0.0048828125, + -0.01263427734375, + -0.0595703125, + 0.0296630859375, + -0.125, + 0.01470947265625, + 0.027587890625, + -0.0233154296875, + 0.006439208984375, + -0.0203857421875, + 0.02734375, + 0.0245361328125, + -0.01397705078125, + 0.043212890625, + 0.205078125, + 0.034423828125, + 0.009765625, + -0.01025390625, + 0.005615234375, + 0.001220703125, + 0.0380859375, + -0.0172119140625, + -0.021484375, + -0.035888671875, + -0.01141357421875, + 0.0306396484375, + 0.041748046875, + 0.0277099609375, + -0.037109375, + 0.00262451171875, + -0.0218505859375, + -0.01092529296875, + 0.095703125, + -0.0272216796875, + 0.0291748046875, + -0.00174713134765625, + 0.06494140625, + -0.0198974609375, + -0.0439453125, + -0.0283203125, + -0.0164794921875, + 0.05078125, + -0.0034637451171875, + 0.0028076171875, + -0.02783203125, + 0.0036468505859375, + 0.056640625, + -0.01336669921875, + -0.007598876953125, + 0.029052734375, + -0.0301513671875, + -0.0390625, + 0.040771484375, + 0.00634765625, + -0.026611328125, + 0.00909423828125, + -0.0235595703125, + -0.001556396484375, + 0.043701171875, + -0.0101318359375, + 0.00101470947265625, + -0.0233154296875, + 0.0174560546875, + -0.000148773193359375, + -0.023681640625, + 0.033447265625, + -0.03076171875, + 0.013671875, + -0.05126953125, + -0.00860595703125, + 0.011474609375, + -0.040771484375, + -0.00830078125, + -0.01019287109375, + 0.031982421875, + 0.043212890625, + -0.052734375, + 0.01611328125, + 0.0264892578125, + -0.009033203125, + -0.052978515625, + -0.06005859375, + -0.01226806640625, + 0.040771484375, + 0.032958984375, + 0.0238037109375, + -0.029296875, + 0.02880859375, + 0.01531982421875, + -0.0107421875, + -0.0478515625, + 0.04736328125, + -0.006683349609375, + -0.0228271484375, + -0.037109375, + -0.0341796875, + -0.034423828125, + 0.01458740234375, + -0.01324462890625, + -0.01220703125, + 0.00148773193359375, + 0.058837890625, + -0.040771484375, + -0.0118408203125, + 0.02294921875, + 0.0069580078125, + -0.013916015625, + -0.0159912109375, + -0.048095703125, + 0.0040283203125, + 0.02099609375, + 0.0057373046875, + 0.00421142578125, + -0.005767822265625, + 0.01470947265625, + -0.033447265625, + 0.0191650390625, + -0.00101470947265625, + 0.0267333984375, + 0.0196533203125, + 0.00141143798828125, + 0.0439453125, + 0.0223388671875, + -0.041748046875, + 0.040771484375, + 0.041259765625, + -0.00927734375, + -0.037353515625, + 0.0380859375, + 0.005706787109375, + -0.0291748046875, + 0.0126953125, + -0.0267333984375, + 0.047119140625, + -0.033203125, + -0.06201171875, + -0.01165771484375, + -0.015869140625, + -0.0263671875, + 0.00189971923828125, + -0.00173187255859375, + 0.000804901123046875, + 0.025146484375, + 0.033203125, + 0.016845703125, + -0.0252685546875, + 0.0003833770751953125, + 0.056640625, + 0.036865234375, + -0.000629425048828125, + 0.04931640625, + -0.002685546875, + 0.0595703125, + 0.031494140625, + 0.031005859375, + 0.0257568359375, + -0.0189208984375, + -0.043701171875, + -0.0294189453125, + 0.005615234375, + -0.03857421875, + -0.00665283203125, + -0.07421875, + 0.0189208984375, + 0.0196533203125, + 0.0198974609375, + -0.0196533203125, + -0.039306640625, + -0.0771484375, + -0.00083160400390625, + 0.00787353515625, + -0.0203857421875, + -0.0198974609375, + -0.045654296875, + 0.005035400390625, + -0.00848388671875, + 0.01214599609375, + 0.0216064453125, + 0.0059814453125, + 0.04736328125, + -0.0174560546875, + 0.02197265625, + 0.004608154296875, + -0.0089111328125, + -6.389617919921875e-05, + -0.042236328125, + -0.0098876953125, + 0.008544921875, + -0.023681640625, + -0.0233154296875, + -0.03466796875, + -0.00750732421875, + 0.01458740234375, + 0.0264892578125, + 0.02197265625, + 0.0279541015625, + 0.000362396240234375, + 0.048583984375, + -0.002410888671875, + 0.034423828125, + -0.039306640625, + -0.007354736328125, + 0.01953125, + -0.017822265625, + -0.019775390625, + 0.087890625, + -0.045166015625, + -0.018798828125, + 0.03955078125, + 0.0025177001953125, + 0.02197265625, + 0.050537109375, + 0.043701171875, + -0.03857421875, + 0.002227783203125, + -0.05712890625, + 0.0164794921875, + -0.006744384765625, + -0.01007080078125, + -0.01953125, + -0.021728515625, + 0.043212890625, + -0.01287841796875, + -0.0198974609375, + -0.015869140625, + 0.0296630859375, + -0.020263671875, + -0.021240234375, + -0.0196533203125, + -0.00107574462890625, + 0.0205078125, + 0.004974365234375, + 0.0126953125, + -0.038330078125, + 0.008056640625, + 0.015869140625, + 0.07080078125, + -0.01361083984375, + 0.0223388671875, + 0.00872802734375, + -0.023681640625, + -0.076171875, + -0.0284423828125, + -0.0031280517578125, + 0.0089111328125, + -0.052001953125, + -0.0142822265625, + -0.043701171875, + 0.040283203125, + -0.006744384765625, + -0.007080078125, + 0.0341796875, + 0.05078125, + -0.02978515625, + 0.00118255615234375, + -0.0625, + -0.0262451171875, + 0.0361328125, + -0.0152587890625, + 0.03564453125, + -0.001556396484375, + -0.01226806640625, + 0.0517578125, + 0.009033203125, + 0.015625, + 0.0084228515625, + 0.013671875, + -0.050048828125, + -0.01348876953125, + -0.01422119140625, + 0.01348876953125, + -0.006439208984375, + -0.053955078125, + -0.018798828125, + 0.013916015625, + 0.058837890625, + -0.03076171875, + 0.0169677734375, + 0.0174560546875, + 0.0081787109375, + 0.00128173828125, + -0.00579833984375, + -6.341934204101562e-05, + -0.04736328125, + 0.01458740234375, + -0.037109375, + -0.0238037109375, + -0.0458984375, + 0.007781982421875, + 0.0152587890625, + -0.0233154296875, + 0.052978515625, + 0.0419921875, + 0.01226806640625, + -0.036376953125, + -0.003662109375, + -0.00982666015625, + 0.01300048828125, + 0.011474609375, + 0.0037689208984375, + 0.00836181640625, + 0.0299072265625, + 0.021240234375, + -0.0107421875, + 0.04052734375, + -0.030517578125, + -0.064453125, + -0.004638671875, + -0.01226806640625, + 0.02978515625, + -0.052490234375, + 0.0181884765625, + 0.0140380859375, + 0.00421142578125, + -0.00848388671875, + -0.0269775390625, + -0.0224609375, + -0.036865234375, + 0.001373291015625, + 0.0184326171875, + -0.000514984130859375, + -0.044677734375, + 0.058837890625, + 0.00872802734375, + 0.002044677734375, + 0.0057373046875, + -0.0018768310546875, + 0.00162506103515625, + 0.013916015625, + -0.001190185546875, + 0.009033203125, + 0.037109375, + 0.02294921875, + 0.0028076171875, + -0.0030364990234375, + 0.0032196044921875, + -0.029296875, + 0.0185546875, + -0.039794921875, + 0.0299072265625, + -0.0078125, + 0.01177978515625, + 0.034912109375, + -0.006591796875, + -0.004547119140625, + -0.05126953125, + 0.01470947265625, + 0.03076171875, + 0.0240478515625, + 0.0140380859375, + -0.01190185546875, + -0.0118408203125, + 0.0245361328125, + -0.10546875, + -0.00732421875, + 0.004608154296875, + 0.0216064453125, + 0.001434326171875, + -0.01953125, + -0.00787353515625, + -0.03076171875, + -0.0299072265625, + 0.0615234375, + 0.0098876953125, + 0.0162353515625, + 0.018798828125, + -0.030029296875, + -0.0238037109375, + -0.034912109375, + -0.0322265625, + -0.0166015625, + -0.043701171875, + -0.00396728515625, + -0.040283203125, + 0.035400390625, + 0.025146484375, + -0.0294189453125, + 0.0546875, + 0.01092529296875, + 0.0174560546875, + -0.0303955078125, + 0.034423828125, + 0.0203857421875, + -0.0037689208984375, + -0.048828125, + -0.005218505859375, + -0.01251220703125, + 0.0238037109375, + -0.0032501220703125, + 0.0380859375, + -0.052490234375, + 0.0030517578125, + 0.00029754638671875, + 0.060302734375, + -0.032470703125, + 0.01129150390625, + -0.0322265625, + -0.04736328125, + 0.047607421875, + 0.00372314453125, + -0.03857421875, + 0.0235595703125, + 0.0419921875, + 0.0576171875, + -0.041015625, + 0.033447265625, + -0.07470703125, + 0.011474609375, + -0.1513671875, + 0.043701171875, + 0.0079345703125, + -0.0299072265625, + -0.015869140625, + 0.00701904296875, + -0.036865234375, + -0.0040283203125, + 0.0185546875, + -0.0201416015625, + 0.0240478515625, + 0.028076171875, + 0.036376953125, + -0.0135498046875, + -0.0208740234375, + 0.0106201171875, + 0.01043701171875, + 0.006317138671875, + 0.046142578125, + 0.0155029296875, + 0.005157470703125, + -0.003448486328125, + -0.027099609375, + -0.059814453125, + -0.044921875, + -0.030517578125, + 0.015625, + 0.01055908203125, + -0.020263671875, + -0.0140380859375, + -0.0146484375, + -0.028076171875, + 0.017578125, + 0.07373046875, + 0.0260009765625, + 0.02880859375, + 0.034423828125, + -0.030517578125, + -0.0272216796875, + 0.00360107421875, + 0.021728515625, + 0.0159912109375, + -0.049072265625, + 0.023193359375, + 0.00775146484375, + 0.0172119140625, + -0.068359375, + -0.00119781494140625, + -0.036376953125, + -0.01385498046875, + -0.05322265625, + 0.021728515625, + 0.031494140625, + -0.00921630859375, + 0.0093994140625, + 0.0191650390625, + -0.052001953125, + 0.00982666015625, + 0.00634765625, + 0.03173828125, + -0.012451171875, + 0.006591796875, + -0.0291748046875, + -0.0458984375, + 0.0164794921875, + -0.019287109375, + -0.04248046875, + -0.0262451171875, + -0.005645751953125, + -0.004730224609375, + -0.008056640625, + 0.0101318359375, + 0.025146484375, + -0.03173828125, + 0.041015625, + -0.0034027099609375, + 0.01123046875, + 0.0021820068359375, + -0.0242919921875, + -0.031494140625, + -0.0693359375, + -0.02490234375, + -0.0126953125, + -0.01708984375, + 0.031494140625, + 0.0240478515625, + -0.041015625, + -0.032470703125, + 0.0093994140625, + -0.00689697265625, + -0.08251953125, + -0.0030670166015625, + -0.029296875, + -0.034423828125, + -0.01483154296875, + -0.0137939453125, + -0.01904296875, + -0.0322265625, + 0.003631591796875, + -0.056640625, + 0.006622314453125, + 0.0157470703125, + -0.024658203125, + 0.018310546875, + -0.044677734375, + 0.01953125, + 0.056884765625, + 0.017822265625, + 0.072265625, + 0.008056640625, + 0.024658203125, + 0.0078125, + -0.0036468505859375, + -0.033203125, + 0.000659942626953125, + -0.009033203125, + 0.030029296875, + -0.0016632080078125, + -0.0284423828125, + -0.0205078125, + 0.005584716796875, + -0.02880859375, + -0.020263671875, + -0.028076171875, + -0.0106201171875, + 0.041259765625, + 0.018310546875, + 0.0162353515625, + 0.04345703125, + -0.0179443359375, + 0.03076171875, + -0.045166015625, + 0.00677490234375, + 0.047119140625, + -0.02197265625, + -0.03173828125, + -0.032958984375, + 0.026611328125, + 0.002288818359375, + -0.048828125, + 0.0157470703125, + -0.003326416015625, + -0.0038909912109375, + -0.01806640625, + -0.0189208984375, + 0.00616455078125, + 0.0235595703125, + -0.0419921875, + -0.033447265625, + -0.0030059814453125, + 0.01348876953125, + 0.02490234375, + -0.040771484375, + 0.0277099609375, + -0.00555419921875, + 0.03857421875, + 0.0059814453125, + -0.0128173828125, + 0.00390625, + 0.0242919921875, + 0.0263671875, + -0.0223388671875, + 0.01806640625, + -0.005615234375, + -0.00102996826171875, + 0.0235595703125, + -0.0042724609375, + 0.0341796875, + -0.0272216796875, + 0.00665283203125, + 0.0029144287109375, + 0.05078125, + -0.00958251953125, + -0.0027313232421875, + -0.0089111328125, + -0.039794921875, + 0.028564453125, + -0.04052734375, + 0.07373046875, + -0.0006866455078125, + 0.0419921875, + 0.06298828125, + 0.025634765625, + 0.0196533203125, + 0.031982421875, + 0.01483154296875, + 0.0184326171875, + 0.015625, + -0.0157470703125, + 0.036376953125, + 0.01019287109375, + 0.014404296875, + -0.048828125, + -0.07421875, + 0.054443359375, + -0.03564453125, + -0.0172119140625, + 0.0341796875, + 0.043212890625, + 0.04345703125, + -0.006500244140625, + 0.0025482177734375, + -0.01226806640625, + -0.00079345703125, + -0.05419921875, + -0.00726318359375, + -0.013671875, + 0.0191650390625, + -0.050048828125, + 0.05078125, + -0.060302734375, + -0.03076171875, + 0.01708984375, + 0.0205078125, + -0.0205078125, + 0.0084228515625, + 0.00482177734375, + -0.025146484375, + -0.005889892578125, + 0.043701171875, + -0.034423828125, + 0.015625, + -0.046630859375, + -0.0162353515625, + 0.0238037109375, + -0.00347900390625, + -0.0140380859375, + -5.3882598876953125e-05, + 0.02197265625, + -0.0224609375, + -0.023681640625, + 0.0157470703125, + 0.0478515625, + 0.022216796875, + -0.0016632080078125, + 0.0086669921875, + -0.0084228515625, + 0.03857421875, + -0.03564453125, + -0.040771484375, + 0.050537109375, + 0.0341796875, + 0.013916015625, + 0.07080078125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.822959999998943, + "queue_ms": 1.8113290000059123, + "tokenization_ms": 0.019399999999336615, + "inference_ms": 14.856786999999372, + "postprocessing_ms": null + } + }, + { + "id": "chunk-8", + "dense": [ + 0.00144195556640625, + -0.025390625, + -0.0751953125, + 0.01239013671875, + -0.0146484375, + -0.056640625, + -0.01263427734375, + 0.0230712890625, + -0.0184326171875, + 0.0037384033203125, + -0.03271484375, + -0.00023555755615234375, + 0.031982421875, + 0.0030059814453125, + 0.0260009765625, + 0.026611328125, + 0.00115966796875, + -0.0537109375, + 0.01611328125, + -0.03515625, + 0.005828857421875, + 0.05029296875, + -0.0269775390625, + 0.0252685546875, + 0.0380859375, + 0.0140380859375, + -0.08935546875, + -0.00390625, + 0.07080078125, + 0.03955078125, + 0.0208740234375, + -0.061279296875, + 0.0047607421875, + -0.0185546875, + -0.039794921875, + -0.0032958984375, + -0.00628662109375, + -0.0107421875, + -0.0283203125, + -0.00186920166015625, + -0.0091552734375, + -0.032470703125, + 0.033203125, + -0.0244140625, + 0.030029296875, + -0.046142578125, + -0.040771484375, + -0.022216796875, + -0.01708984375, + -0.05029296875, + 0.0260009765625, + 0.016845703125, + 0.041015625, + -0.00689697265625, + -0.00665283203125, + 0.0286865234375, + 0.0164794921875, + 0.021484375, + -0.08447265625, + -0.0108642578125, + -0.01513671875, + 0.03173828125, + -0.034423828125, + -0.03271484375, + 0.006439208984375, + 0.0294189453125, + 0.0069580078125, + -0.0106201171875, + -0.056640625, + -0.06591796875, + 0.01202392578125, + 0.0011444091796875, + 0.0047607421875, + -0.0257568359375, + -0.036376953125, + 0.0223388671875, + -0.03076171875, + -0.002227783203125, + -0.0390625, + 0.0244140625, + 0.00799560546875, + -0.0238037109375, + -0.011962890625, + 0.0181884765625, + 0.0390625, + 0.00238037109375, + -0.0233154296875, + -0.00145721435546875, + 0.006591796875, + -0.0047607421875, + 0.020263671875, + 0.013427734375, + -0.01031494140625, + -0.0089111328125, + -0.04443359375, + 0.031982421875, + -0.0223388671875, + 0.00958251953125, + 0.04296875, + -0.0286865234375, + 0.0028533935546875, + -0.029541015625, + 0.00897216796875, + -0.0181884765625, + 0.041748046875, + -0.031982421875, + 0.07763671875, + 0.040771484375, + 0.041015625, + -0.01611328125, + 0.041015625, + 0.007537841796875, + 0.0274658203125, + 0.01123046875, + -0.046142578125, + 0.01318359375, + -0.02685546875, + -0.05810546875, + -0.010009765625, + -0.02001953125, + 0.037109375, + 0.033203125, + 0.033935546875, + -0.05810546875, + -0.01611328125, + -0.03857421875, + -0.0234375, + -0.050048828125, + 0.0218505859375, + -0.004241943359375, + -0.0206298828125, + 0.018798828125, + 0.024169921875, + 0.0081787109375, + -0.009765625, + -0.041748046875, + -0.0098876953125, + 0.047119140625, + -0.01300048828125, + -0.025634765625, + 0.000812530517578125, + 0.036865234375, + -0.056396484375, + -0.024658203125, + 0.068359375, + -0.013916015625, + 0.0208740234375, + -0.01513671875, + -0.002044677734375, + -0.061767578125, + 0.0002841949462890625, + 0.0235595703125, + 0.021728515625, + -0.035888671875, + 0.0014190673828125, + -0.0029754638671875, + 0.04833984375, + 0.0390625, + -0.0198974609375, + -0.022705078125, + 0.02099609375, + -0.052490234375, + -0.01531982421875, + 0.01239013671875, + 0.05908203125, + -0.01483154296875, + 0.000225067138671875, + 0.053955078125, + -0.041748046875, + 0.01446533203125, + 0.03662109375, + -0.0228271484375, + -0.0023956298828125, + 0.01123046875, + 0.017578125, + 0.049560546875, + 0.10595703125, + 0.01531982421875, + 0.0125732421875, + -0.02294921875, + 0.025634765625, + 0.033935546875, + -0.0235595703125, + 0.0306396484375, + -0.05810546875, + 0.057373046875, + 0.00738525390625, + -0.0093994140625, + -0.00830078125, + -0.01202392578125, + -0.0263671875, + -0.025390625, + 0.041015625, + 0.0247802734375, + 0.05029296875, + -0.011962890625, + 0.04052734375, + 0.019775390625, + 0.0133056640625, + -0.01043701171875, + 0.008544921875, + -0.004638671875, + 0.035888671875, + 0.00543212890625, + -0.038330078125, + 0.004547119140625, + -0.048095703125, + 0.0057373046875, + 0.029541015625, + -0.02783203125, + 0.005889892578125, + -0.03076171875, + 0.00048065185546875, + -0.01904296875, + -0.02294921875, + 0.022705078125, + -0.014404296875, + -0.0146484375, + -0.043212890625, + -0.0135498046875, + 0.00130462646484375, + 0.054931640625, + -0.03955078125, + -0.0247802734375, + -0.044677734375, + -0.055419921875, + -0.00726318359375, + 0.03125, + 0.02587890625, + 0.01116943359375, + 0.044189453125, + 0.046875, + -0.00543212890625, + 0.005706787109375, + -0.01611328125, + 0.0218505859375, + -0.027099609375, + 0.0289306640625, + -0.018798828125, + 0.0281982421875, + 0.0296630859375, + 0.014404296875, + -0.013427734375, + -0.0035400390625, + -0.0166015625, + 0.0322265625, + 0.029052734375, + -0.00482177734375, + -0.046142578125, + -0.0556640625, + 0.033935546875, + -0.0203857421875, + -0.060546875, + 0.01611328125, + 0.036376953125, + 0.00933837890625, + 0.01019287109375, + -0.02783203125, + -0.00921630859375, + -0.00982666015625, + -0.0002803802490234375, + 0.06640625, + 0.0152587890625, + 0.00799560546875, + 0.046875, + -0.0169677734375, + -0.054443359375, + 0.0206298828125, + 0.038818359375, + 0.04052734375, + -0.00640869140625, + -0.05859375, + -0.0380859375, + 0.00019550323486328125, + -0.00677490234375, + 0.04443359375, + -0.0032806396484375, + -0.0166015625, + 0.041259765625, + 0.01611328125, + 0.032470703125, + -0.0034637451171875, + 0.00885009765625, + 0.0286865234375, + 0.0228271484375, + -0.07373046875, + -0.060302734375, + -0.05126953125, + 0.031494140625, + -0.0021209716796875, + -0.0157470703125, + -0.00299072265625, + 0.0419921875, + -0.011474609375, + 0.00445556640625, + 0.031982421875, + -0.035888671875, + -0.1728515625, + -0.01055908203125, + -0.00140380859375, + 0.0306396484375, + 0.01904296875, + 0.037109375, + -0.03271484375, + -0.03955078125, + 0.0025482177734375, + 0.00022125244140625, + 0.0179443359375, + -0.060546875, + -0.01348876953125, + -0.035400390625, + -0.0269775390625, + 0.005828857421875, + -0.017333984375, + -0.0218505859375, + 0.020263671875, + -0.02587890625, + -0.01483154296875, + 0.004058837890625, + 0.033935546875, + 0.017578125, + -0.04443359375, + 0.039794921875, + 0.0308837890625, + 0.00201416015625, + 0.0218505859375, + -0.0036773681640625, + -0.0191650390625, + -0.00823974609375, + -0.00830078125, + 0.045654296875, + 0.007659912109375, + -0.010498046875, + -0.03125, + -0.00958251953125, + -0.000972747802734375, + 0.04833984375, + 0.03759765625, + 0.057861328125, + 0.00958251953125, + -0.009033203125, + 0.033935546875, + -0.00616455078125, + -0.022216796875, + 0.043212890625, + -0.05126953125, + -0.06494140625, + -0.0027923583984375, + 0.003631591796875, + -0.003173828125, + -0.01611328125, + -0.03759765625, + -0.0146484375, + 0.0244140625, + 0.00555419921875, + -0.05419921875, + 0.00958251953125, + -0.03173828125, + -0.10400390625, + 0.0028839111328125, + -0.0260009765625, + -0.0172119140625, + -0.0015106201171875, + 0.03369140625, + 0.0289306640625, + -0.028076171875, + -0.039306640625, + 0.031982421875, + -0.006134033203125, + -0.0010223388671875, + 0.0169677734375, + 0.0181884765625, + 0.054443359375, + -0.046142578125, + -0.04345703125, + 0.0283203125, + -0.10498046875, + -0.054931640625, + -0.002716064453125, + 0.00970458984375, + -0.0245361328125, + -0.00616455078125, + -0.0205078125, + 0.00732421875, + -0.01495361328125, + 0.0322265625, + 0.25, + 0.0027008056640625, + -0.036376953125, + 0.007659912109375, + 0.00927734375, + -0.0240478515625, + -0.0247802734375, + -0.0341796875, + -0.037841796875, + -0.0218505859375, + -0.037109375, + 0.030029296875, + 0.0272216796875, + 0.0030517578125, + -0.01513671875, + -0.0128173828125, + -0.025634765625, + 0.0120849609375, + 0.08349609375, + -0.00970458984375, + 0.03662109375, + 0.01507568359375, + 0.049072265625, + -0.039306640625, + -0.059814453125, + -0.0181884765625, + -0.0089111328125, + 0.0301513671875, + -0.0126953125, + -0.021240234375, + -0.00994873046875, + 0.0235595703125, + 0.049560546875, + -0.033447265625, + 0.0089111328125, + 0.0089111328125, + 0.020263671875, + -0.0174560546875, + 0.01123046875, + 0.02392578125, + 0.01806640625, + -0.008544921875, + -0.0036773681640625, + -0.060546875, + 0.00982666015625, + -0.01483154296875, + 0.031982421875, + -0.00872802734375, + 0.01953125, + 0.024658203125, + -0.0198974609375, + 0.0198974609375, + -0.0086669921875, + -0.00506591796875, + -0.0252685546875, + 0.003936767578125, + 0.00176239013671875, + -0.004150390625, + -0.004486083984375, + 0.024169921875, + 0.00994873046875, + 0.0010223388671875, + 0.0152587890625, + 0.0037841796875, + 0.0211181640625, + -0.0150146484375, + -0.017822265625, + -0.0390625, + -0.0034637451171875, + 0.0284423828125, + 0.01190185546875, + 0.0218505859375, + -0.005523681640625, + 0.0419921875, + 0.036376953125, + -0.060302734375, + 0.0269775390625, + 0.03564453125, + -0.00958251953125, + -0.004302978515625, + -0.036865234375, + -0.03955078125, + -0.0269775390625, + -0.0272216796875, + 0.0015106201171875, + 0.0140380859375, + 0.03662109375, + 0.0235595703125, + -0.03125, + -0.030029296875, + 0.0015869140625, + 0.0107421875, + -0.048828125, + -0.0177001953125, + 0.00970458984375, + -0.005767822265625, + -0.02294921875, + -0.01239013671875, + 0.0283203125, + 0.0098876953125, + 0.0177001953125, + -0.0252685546875, + -0.0206298828125, + 0.07080078125, + -0.00897216796875, + -0.027587890625, + -0.00604248046875, + 0.00799560546875, + 0.00787353515625, + 0.031494140625, + -0.046630859375, + -0.00726318359375, + -0.01556396484375, + -0.022216796875, + 0.046875, + 0.033203125, + -0.01171875, + 0.035888671875, + 0.01361083984375, + 0.03369140625, + -0.0272216796875, + 0.019775390625, + 0.00762939453125, + 5.14984130859375e-05, + 0.003692626953125, + -0.006805419921875, + -0.022705078125, + -0.042236328125, + 0.03076171875, + 0.0166015625, + 0.01495361328125, + -0.033447265625, + -0.06640625, + -0.0002193450927734375, + 0.050537109375, + 0.01422119140625, + 0.038818359375, + 0.01324462890625, + -0.0072021484375, + 0.0223388671875, + -0.002166748046875, + -0.0244140625, + -0.046142578125, + -0.03515625, + -0.01470947265625, + -0.00469970703125, + -0.01318359375, + 0.006103515625, + -0.064453125, + -0.0125732421875, + 0.01287841796875, + 0.01434326171875, + 0.050048828125, + -0.041748046875, + -0.0247802734375, + -0.03564453125, + -0.0113525390625, + -0.0234375, + -0.03662109375, + -0.028076171875, + -0.0260009765625, + 0.046875, + -0.0380859375, + 0.0162353515625, + 0.025146484375, + 0.04052734375, + -0.02099609375, + 0.033935546875, + 0.022216796875, + -0.039794921875, + -0.0286865234375, + -0.048828125, + 0.001220703125, + -0.0272216796875, + 0.00176239013671875, + -0.0029296875, + -0.09130859375, + 0.0216064453125, + 0.0140380859375, + 0.01190185546875, + -0.000560760498046875, + 0.0133056640625, + -0.037841796875, + 0.033935546875, + 0.005401611328125, + 0.0101318359375, + 0.015869140625, + -0.01544189453125, + 0.00848388671875, + -0.04248046875, + -0.05810546875, + 0.0888671875, + -0.0634765625, + 0.00201416015625, + 0.0027008056640625, + 0.0076904296875, + 0.06396484375, + 0.038818359375, + 0.041015625, + 0.01806640625, + -0.027099609375, + -0.0240478515625, + 0.05029296875, + 0.0238037109375, + -0.00531005859375, + -0.0238037109375, + 0.024169921875, + 0.0419921875, + -0.0203857421875, + 0.033935546875, + -0.003387451171875, + 0.007415771484375, + -0.025146484375, + 0.00225830078125, + -0.0184326171875, + -0.019775390625, + -0.017822265625, + 0.0390625, + 0.02392578125, + -0.0196533203125, + 0.0101318359375, + 0.004058837890625, + 0.035888671875, + 0.005523681640625, + 0.019775390625, + 0.001007080078125, + 0.0135498046875, + -0.0302734375, + -0.0152587890625, + -0.000820159912109375, + -0.005767822265625, + -0.0177001953125, + 0.003204345703125, + -0.0185546875, + -0.006256103515625, + -0.02880859375, + -0.0230712890625, + -0.00604248046875, + -0.0220947265625, + -0.03759765625, + 0.0059814453125, + -0.006317138671875, + 0.0072021484375, + 0.01141357421875, + 0.015625, + 0.0233154296875, + -0.033447265625, + -0.01348876953125, + 0.0260009765625, + -0.0025634765625, + -0.00048828125, + 0.003448486328125, + -0.00482177734375, + -0.03662109375, + -0.0004138946533203125, + 0.0172119140625, + 0.00286865234375, + 0.0299072265625, + -0.0169677734375, + -0.005218505859375, + -0.0233154296875, + 0.053955078125, + 0.006195068359375, + -0.006134033203125, + 0.03515625, + -0.003997802734375, + -0.013427734375, + 0.018798828125, + -0.025390625, + -0.040771484375, + -0.008056640625, + -0.013916015625, + 0.008056640625, + -0.0888671875, + -0.00872802734375, + 0.01123046875, + -0.056640625, + 0.064453125, + 0.0150146484375, + -0.005157470703125, + -0.05322265625, + 0.00836181640625, + 0.043701171875, + 0.0458984375, + -0.029296875, + -0.0017547607421875, + -0.029052734375, + 0.008544921875, + 0.0260009765625, + -0.000225067138671875, + 0.02783203125, + -0.022216796875, + -0.030029296875, + 0.0230712890625, + -0.0281982421875, + 0.01116943359375, + -0.0023193359375, + 0.025146484375, + -0.02783203125, + 0.031982421875, + -0.002716064453125, + -0.017578125, + -0.0185546875, + -0.03515625, + 0.01409912109375, + -0.01031494140625, + -0.0478515625, + -0.006744384765625, + -0.0019073486328125, + 0.000946044921875, + 0.011962890625, + -0.013916015625, + 0.01141357421875, + 0.019287109375, + -0.00054931640625, + -0.004608154296875, + -0.0252685546875, + 0.0006256103515625, + 0.000606536865234375, + 0.0400390625, + 0.0048828125, + -0.021728515625, + -0.0301513671875, + 0.027099609375, + -0.03369140625, + -0.0233154296875, + -0.053955078125, + -0.0177001953125, + 0.0150146484375, + 0.0023040771484375, + -0.021240234375, + -0.007232666015625, + -0.0322265625, + -0.043212890625, + 0.018798828125, + -0.007171630859375, + 0.01153564453125, + -0.039306640625, + 0.038330078125, + -0.04296875, + -0.052490234375, + -0.01434326171875, + 0.07177734375, + -0.01092529296875, + -0.01287841796875, + -0.006256103515625, + -0.01373291015625, + -0.005706787109375, + 0.01611328125, + 0.0113525390625, + 0.02587890625, + -0.004669189453125, + -0.010498046875, + -0.032958984375, + -0.0289306640625, + -0.038330078125, + -0.0196533203125, + 0.0230712890625, + 0.025390625, + -0.00262451171875, + 0.017822265625, + 0.0262451171875, + 0.018310546875, + 0.037353515625, + 0.01019287109375, + 0.0152587890625, + -0.01348876953125, + -0.0191650390625, + 0.0250244140625, + 0.003021240234375, + -0.0189208984375, + 0.04296875, + 0.0162353515625, + 0.018310546875, + 0.018310546875, + 0.0341796875, + 0.03369140625, + 0.049072265625, + 0.0179443359375, + 0.01513671875, + -0.00677490234375, + -0.036865234375, + 0.00799560546875, + -0.03759765625, + -0.01263427734375, + -0.00164031982421875, + -0.029541015625, + -0.0022735595703125, + 0.033203125, + 0.0478515625, + -0.0084228515625, + 0.006134033203125, + -0.058837890625, + 0.02783203125, + -0.130859375, + 0.049560546875, + 0.01220703125, + -0.041015625, + -0.0033721923828125, + 0.00567626953125, + -0.041259765625, + 0.0032501220703125, + -0.01251220703125, + -0.00848388671875, + 0.0194091796875, + 0.0191650390625, + 0.08349609375, + 0.0002193450927734375, + -0.01373291015625, + 0.021484375, + -0.07275390625, + -0.022216796875, + -0.00726318359375, + 0.083984375, + 0.03125, + -0.003082275390625, + 0.02783203125, + -0.0157470703125, + 0.015625, + -0.038330078125, + -0.00115203857421875, + -0.0120849609375, + -0.0091552734375, + 0.038330078125, + 0.01544189453125, + -0.0703125, + -0.007110595703125, + 0.06396484375, + 0.031982421875, + 0.01324462890625, + 0.0281982421875, + -0.02099609375, + -0.01806640625, + 0.01513671875, + 0.0172119140625, + 0.01177978515625, + -0.060302734375, + 0.0152587890625, + -0.0220947265625, + 0.039794921875, + -0.013916015625, + -0.0194091796875, + -0.030029296875, + -0.0107421875, + -0.06591796875, + 0.01190185546875, + -0.01202392578125, + -0.0211181640625, + 0.025390625, + -0.0311279296875, + -0.0286865234375, + -0.005859375, + 0.0084228515625, + 0.034423828125, + 0.00555419921875, + 0.030517578125, + -0.0238037109375, + -0.036865234375, + 0.01025390625, + 0.0238037109375, + -0.03662109375, + 0.01904296875, + 0.06640625, + -0.0123291015625, + -0.050048828125, + -0.0111083984375, + 0.01904296875, + 0.0108642578125, + -0.0032501220703125, + -0.046875, + 0.02685546875, + 0.00323486328125, + -0.003936767578125, + -0.01446533203125, + -0.058837890625, + -0.039794921875, + -0.0013885498046875, + 0.0137939453125, + 0.00323486328125, + 0.000762939453125, + 0.01708984375, + -0.030029296875, + -0.000396728515625, + 0.00750732421875, + -0.06884765625, + -0.0006103515625, + 0.0179443359375, + 0.0284423828125, + -0.053955078125, + -0.0286865234375, + -0.0308837890625, + -0.00799560546875, + -0.0274658203125, + -0.00836181640625, + 0.00689697265625, + 0.036865234375, + 0.0177001953125, + 0.0244140625, + -0.02001953125, + -0.0169677734375, + -0.00665283203125, + 0.011962890625, + -0.0023040771484375, + -0.01953125, + 0.03857421875, + 0.024169921875, + -0.01409912109375, + -0.046875, + -0.009765625, + 0.017333984375, + 0.005584716796875, + -0.017578125, + -0.01446533203125, + 0.0191650390625, + 0.00506591796875, + -0.046630859375, + 0.00958251953125, + -0.0140380859375, + -0.03662109375, + 0.01507568359375, + 0.027587890625, + 0.024169921875, + -0.0206298828125, + 0.00160980224609375, + 0.00439453125, + -0.0234375, + 0.001068115234375, + 0.05419921875, + -0.002227783203125, + 0.0107421875, + -0.0240478515625, + 0.02001953125, + -0.01483154296875, + -0.0140380859375, + 0.0098876953125, + 0.01251220703125, + 0.0289306640625, + -0.04052734375, + -0.02294921875, + 0.0299072265625, + 0.037109375, + -0.00836181640625, + 0.032470703125, + 0.02294921875, + -0.00150299072265625, + -0.01416015625, + -0.03173828125, + 0.057373046875, + 0.000881195068359375, + -0.01263427734375, + 0.02001953125, + 0.0126953125, + -0.007049560546875, + 0.035888671875, + -0.01348876953125, + -0.0189208984375, + -0.0478515625, + -0.038330078125, + 0.000789642333984375, + 0.04443359375, + 0.01483154296875, + 0.01434326171875, + -0.001739501953125, + -0.01544189453125, + 0.0311279296875, + 0.031982421875, + 0.0135498046875, + -0.0299072265625, + 0.0167236328125, + 0.036376953125, + -0.005767822265625, + -0.005126953125, + 0.0400390625, + 0.0400390625, + 0.0164794921875, + 0.045654296875, + 0.046142578125, + 0.00732421875, + 0.07177734375, + 0.034912109375, + -0.00927734375, + 0.0281982421875, + -0.00958251953125, + -0.0021209716796875, + 0.0284423828125, + 0.009521484375, + -0.041748046875, + -0.0400390625, + 0.06787109375, + -0.01806640625, + 0.01513671875, + 0.03857421875, + 0.01025390625, + 0.0615234375, + -0.031982421875, + 0.013427734375, + -0.005706787109375, + -0.010009765625, + -0.0050048828125, + -0.000579833984375, + 0.004638671875, + 0.02392578125, + -0.0400390625, + 0.015869140625, + -0.0040283203125, + -0.061767578125, + -0.0023345947265625, + 0.03271484375, + 0.005401611328125, + 0.02294921875, + -0.03173828125, + -0.0224609375, + 0.01373291015625, + -0.003631591796875, + 0.0172119140625, + 0.052978515625, + -0.02783203125, + -0.005828857421875, + -0.004791259765625, + 0.0081787109375, + 0.000530242919921875, + 0.0140380859375, + -0.022216796875, + -0.0003604888916015625, + -0.004913330078125, + 0.0019683837890625, + 0.03466796875, + 0.047607421875, + 0.0240478515625, + 0.01043701171875, + -0.05859375, + -0.00750732421875, + 0.006591796875, + 0.01470947265625, + 0.046142578125, + 0.01348876953125, + 0.054931640625, + 0.01019287109375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.007012000002874, + "queue_ms": 1.3025869999978568, + "tokenization_ms": 0.019829999999387837, + "inference_ms": 14.548071000007212, + "postprocessing_ms": null + } + }, + { + "id": "chunk-9", + "dense": [ + 0.050537109375, + 0.029296875, + -0.006561279296875, + 0.032470703125, + -0.04541015625, + -0.00750732421875, + 0.0281982421875, + 0.025390625, + 0.004974365234375, + 0.005462646484375, + -0.0458984375, + 0.004302978515625, + -0.0242919921875, + -0.0244140625, + 0.044189453125, + -0.0020294189453125, + 0.03515625, + -0.01953125, + -0.019287109375, + -0.023681640625, + -0.017822265625, + 0.027099609375, + -0.0252685546875, + 0.051025390625, + -0.02783203125, + 0.013916015625, + -0.052001953125, + -0.0198974609375, + 0.0020904541015625, + 0.01556396484375, + -0.0419921875, + -0.046630859375, + -0.000682830810546875, + -0.006683349609375, + -0.072265625, + -0.01177978515625, + -0.00738525390625, + -0.01129150390625, + -0.047607421875, + 0.0296630859375, + -0.0625, + 0.019287109375, + 0.0137939453125, + -0.01123046875, + 0.04248046875, + -0.0157470703125, + -0.0005035400390625, + -0.003753662109375, + 0.043701171875, + -0.0133056640625, + -0.02734375, + 0.011474609375, + 0.0308837890625, + -0.03515625, + -0.046630859375, + -0.0252685546875, + -0.06298828125, + 0.0001544952392578125, + -0.036865234375, + -0.05859375, + 0.0130615234375, + 0.018798828125, + 0.00634765625, + 0.020263671875, + -0.01531982421875, + 0.11572265625, + 0.07470703125, + -0.00445556640625, + -0.0302734375, + -0.025634765625, + -0.0130615234375, + -0.02783203125, + 0.03955078125, + -0.0145263671875, + -0.043701171875, + 0.0439453125, + 0.006378173828125, + -0.029052734375, + 0.004425048828125, + 0.04443359375, + 0.051025390625, + 0.00714111328125, + -0.030517578125, + 0.04736328125, + 0.06396484375, + 0.033935546875, + 0.007354736328125, + -0.006744384765625, + -0.0191650390625, + 0.0172119140625, + 0.03564453125, + 0.00156402587890625, + 0.01019287109375, + -0.0194091796875, + -0.033203125, + 0.0244140625, + -0.0057373046875, + -0.02880859375, + 0.0191650390625, + -0.003082275390625, + -0.006103515625, + -0.002685546875, + -0.0003986358642578125, + -0.0174560546875, + 0.054443359375, + -0.01007080078125, + 0.01495361328125, + 0.033203125, + 0.01556396484375, + 0.0186767578125, + 0.059326171875, + 0.018798828125, + 0.0220947265625, + -0.00872802734375, + -0.01312255859375, + -0.0233154296875, + -0.03271484375, + -0.012451171875, + 0.027587890625, + -0.04736328125, + 0.019775390625, + 0.060546875, + 0.034423828125, + -0.01385498046875, + -0.031494140625, + -0.04443359375, + 0.01177978515625, + -0.037841796875, + 0.004913330078125, + -0.0186767578125, + -0.0042724609375, + -0.01495361328125, + -0.018310546875, + 0.016357421875, + -0.05322265625, + -0.0174560546875, + -0.0302734375, + -0.03271484375, + 0.0030364990234375, + -0.08154296875, + 0.031494140625, + 0.0186767578125, + -0.00634765625, + -0.033203125, + 0.01165771484375, + 0.0244140625, + 0.01324462890625, + -0.020751953125, + -0.0118408203125, + -0.059326171875, + -0.041748046875, + -0.003448486328125, + 0.0198974609375, + -0.001983642578125, + -0.03564453125, + -0.00640869140625, + 0.00970458984375, + 0.02783203125, + 0.01068115234375, + -0.0267333984375, + 0.01611328125, + 0.0284423828125, + -0.04248046875, + -0.0177001953125, + 0.02099609375, + -0.019775390625, + 0.0556640625, + 0.0172119140625, + -0.0152587890625, + 0.0172119140625, + 0.044189453125, + -0.031982421875, + 0.0247802734375, + -0.004608154296875, + -0.00885009765625, + 0.036865234375, + 0.04296875, + 0.035400390625, + 0.01123046875, + -0.008056640625, + 0.040771484375, + 0.016357421875, + 0.00616455078125, + 0.0208740234375, + -0.0040283203125, + 0.09326171875, + 0.017822265625, + -0.031494140625, + 0.0020751953125, + -0.0081787109375, + -0.037353515625, + -0.00762939453125, + 0.0306396484375, + 0.08056640625, + 0.01416015625, + -0.023193359375, + 0.047607421875, + 0.017822265625, + -0.00909423828125, + -0.0064697265625, + 0.00823974609375, + 0.0087890625, + 0.04296875, + -0.0103759765625, + -0.0189208984375, + 0.0115966796875, + 0.02099609375, + -0.002685546875, + 0.0166015625, + -0.02392578125, + 0.0311279296875, + -0.01513671875, + -0.0033111572265625, + -0.0028839111328125, + -0.050537109375, + 0.037109375, + 0.004974365234375, + -0.0281982421875, + -0.004364013671875, + 0.0106201171875, + 0.0279541015625, + 0.053466796875, + -0.03515625, + -0.00958251953125, + 0.0311279296875, + -0.0120849609375, + -0.034912109375, + 0.033935546875, + 0.01300048828125, + -0.0089111328125, + 0.0267333984375, + -0.035400390625, + 0.01416015625, + -0.00537109375, + 0.0556640625, + 0.03466796875, + -0.006744384765625, + 0.03369140625, + 0.01483154296875, + -0.00194549560546875, + 0.01043701171875, + 0.015380859375, + 0.00970458984375, + -6.818771362304688e-05, + -0.033203125, + -0.0322265625, + 0.025390625, + 0.0216064453125, + -0.0299072265625, + 0.0322265625, + 0.00665283203125, + -0.030029296875, + -0.045166015625, + -0.00872802734375, + 0.02392578125, + 0.043212890625, + -0.0272216796875, + 0.01104736328125, + -0.00360107421875, + 0.0184326171875, + 0.0218505859375, + 0.07470703125, + 0.0189208984375, + 0.00970458984375, + 0.037841796875, + 0.016845703125, + 0.010986328125, + 0.005645751953125, + 0.0019989013671875, + -0.027587890625, + 0.016357421875, + -0.0260009765625, + -0.01300048828125, + 0.0016937255859375, + -0.002838134765625, + 0.012451171875, + -0.00799560546875, + -0.01312255859375, + 0.0235595703125, + -0.01806640625, + 0.0419921875, + -0.0225830078125, + 0.01165771484375, + -0.008056640625, + -0.00136566162109375, + -0.05712890625, + -0.04296875, + -0.00384521484375, + -0.00140380859375, + 0.0247802734375, + 0.0272216796875, + -0.0186767578125, + 0.056396484375, + -0.0162353515625, + 0.036865234375, + 0.017822265625, + -0.005157470703125, + -0.1767578125, + -0.002899169921875, + 0.0101318359375, + 0.0147705078125, + 0.0189208984375, + 0.0181884765625, + 0.0244140625, + -0.08056640625, + -0.0181884765625, + 0.040771484375, + -0.024169921875, + -0.02880859375, + 0.02587890625, + -0.060302734375, + 0.009521484375, + -0.005218505859375, + 0.01214599609375, + -0.0302734375, + 0.004364013671875, + -0.055908203125, + 0.0322265625, + 0.0213623046875, + 0.00909423828125, + 0.00299072265625, + -0.0159912109375, + -0.0206298828125, + 0.0576171875, + 0.00616455078125, + -0.0026702880859375, + -0.01214599609375, + -0.03955078125, + 0.0068359375, + -0.0120849609375, + 0.078125, + -0.02197265625, + 0.05126953125, + 0.026123046875, + -0.035888671875, + 0.0576171875, + 0.013671875, + 0.010986328125, + 0.060302734375, + -0.038818359375, + 0.029052734375, + -0.000423431396484375, + -0.09326171875, + 0.007537841796875, + 0.0216064453125, + -0.048828125, + -0.0810546875, + -0.0133056640625, + -0.040283203125, + -0.00970458984375, + -0.0033111572265625, + -0.00066375732421875, + 0.024169921875, + 0.040283203125, + -0.00982666015625, + 0.00165557861328125, + -0.007781982421875, + -0.00640869140625, + -0.0137939453125, + -0.03955078125, + 0.01611328125, + -0.047607421875, + 0.0179443359375, + 0.00762939453125, + -0.02587890625, + 0.048583984375, + -0.037109375, + 0.0185546875, + 0.00933837890625, + 0.0201416015625, + 0.023193359375, + 0.01513671875, + -0.00653076171875, + -0.05517578125, + -0.0634765625, + -0.00994873046875, + -0.07373046875, + -0.04296875, + 0.01446533203125, + 0.005035400390625, + -0.0128173828125, + -0.005096435546875, + -0.03515625, + -0.0086669921875, + -0.00921630859375, + 0.0150146484375, + 0.2353515625, + 0.00634765625, + -0.0224609375, + 0.01007080078125, + 0.0252685546875, + -0.04931640625, + -0.00872802734375, + 0.0242919921875, + -0.0036163330078125, + -0.03173828125, + -0.0281982421875, + 0.017822265625, + -0.006988525390625, + 0.03369140625, + 0.0038604736328125, + 0.01556396484375, + -0.0260009765625, + -0.0147705078125, + 0.1025390625, + -0.033203125, + 0.048583984375, + 0.00323486328125, + 0.0203857421875, + -0.02197265625, + -0.046142578125, + -0.0272216796875, + -0.0302734375, + 0.004150390625, + -0.0019073486328125, + -0.0037841796875, + -0.056884765625, + -0.0233154296875, + 0.017578125, + 0.0106201171875, + -0.048583984375, + 0.0673828125, + -0.005950927734375, + -0.0247802734375, + -0.0279541015625, + 0.021484375, + -0.037353515625, + -0.01220703125, + 0.020263671875, + -0.044921875, + -0.0255126953125, + -0.0128173828125, + -0.0277099609375, + 0.02392578125, + -0.004669189453125, + 0.01385498046875, + 0.0107421875, + 0.038330078125, + 0.0181884765625, + -0.00799560546875, + -0.017333984375, + 0.03759765625, + -0.0390625, + 0.049560546875, + -0.00787353515625, + 0.053466796875, + -0.00946044921875, + 0.0272216796875, + -0.055908203125, + -0.0208740234375, + -0.0010986328125, + 0.03515625, + 0.027587890625, + 0.0089111328125, + 0.0035552978515625, + 0.05078125, + -0.0059814453125, + 0.00323486328125, + -0.0216064453125, + 0.0177001953125, + 0.0308837890625, + -0.0191650390625, + -0.00732421875, + 0.08251953125, + 0.033935546875, + -0.040771484375, + -0.01806640625, + -0.011474609375, + -0.060546875, + -0.0196533203125, + -0.0028076171875, + -0.0213623046875, + 0.039794921875, + 0.0888671875, + -0.00927734375, + 0.016357421875, + -0.026123046875, + 0.0247802734375, + -0.01397705078125, + -0.03369140625, + -0.044921875, + 0.016845703125, + 0.04248046875, + 0.0098876953125, + 0.007659912109375, + 0.03466796875, + 0.01300048828125, + -0.031494140625, + -0.039794921875, + 0.01416015625, + 0.035888671875, + -0.009521484375, + -0.03515625, + 0.0277099609375, + -0.012939453125, + -0.001220703125, + 0.00634765625, + -0.01336669921875, + -0.0069580078125, + -0.040771484375, + 0.019287109375, + 0.0084228515625, + -0.043701171875, + 0.037841796875, + 0.01531982421875, + 0.038330078125, + -0.0322265625, + -0.0142822265625, + 0.0135498046875, + 0.0242919921875, + 0.00494384765625, + -0.01953125, + -0.0546875, + 0.0169677734375, + 0.01129150390625, + 0.037109375, + -0.007720947265625, + -0.0142822265625, + -0.0167236328125, + -0.032958984375, + 0.01300048828125, + 0.00604248046875, + 0.0198974609375, + -0.005462646484375, + -0.022705078125, + 0.0213623046875, + -0.00677490234375, + -0.0009765625, + -0.0034942626953125, + -0.02197265625, + -0.036865234375, + -0.01092529296875, + -0.0634765625, + 0.0264892578125, + -0.0849609375, + -0.0028228759765625, + 0.0264892578125, + 0.038330078125, + 0.0091552734375, + -0.07373046875, + -0.01123046875, + 0.002838134765625, + -0.0098876953125, + -0.000400543212890625, + -0.029296875, + -0.006622314453125, + 0.0167236328125, + 0.029052734375, + -0.002777099609375, + 0.032470703125, + 0.030517578125, + 0.0255126953125, + 0.006561279296875, + 0.004669189453125, + 0.0220947265625, + 0.0186767578125, + 0.002655029296875, + -0.017822265625, + -0.0311279296875, + 0.0184326171875, + 0.08642578125, + 0.0252685546875, + 0.00017642974853515625, + 0.034912109375, + 0.0166015625, + 0.0238037109375, + -0.0272216796875, + 0.027587890625, + -0.056884765625, + 0.017578125, + -0.00994873046875, + 0.00165557861328125, + -0.04638671875, + -0.00750732421875, + -0.00799560546875, + -0.0277099609375, + -0.0220947265625, + 0.09326171875, + 0.0062255859375, + 0.0031280517578125, + 0.03857421875, + 0.0208740234375, + -0.00396728515625, + 0.01611328125, + 0.044921875, + -0.047119140625, + -0.01470947265625, + -0.0267333984375, + 0.021484375, + 0.024169921875, + -0.03759765625, + -0.046630859375, + -0.01611328125, + -0.00191497802734375, + -0.01611328125, + 0.0185546875, + 0.0230712890625, + 0.031494140625, + -0.005645751953125, + 0.0238037109375, + -0.00799560546875, + -0.0018157958984375, + 0.04150390625, + -0.00421142578125, + 0.0284423828125, + -0.0380859375, + 0.01092529296875, + -0.0198974609375, + 0.0458984375, + -0.06298828125, + 0.0037384033203125, + 0.0250244140625, + -0.0322265625, + -0.0208740234375, + 0.0079345703125, + 0.0225830078125, + 0.005035400390625, + -0.011962890625, + 0.00579833984375, + 0.0023040771484375, + -0.00872802734375, + 0.05419921875, + 0.022216796875, + 0.0196533203125, + 0.004669189453125, + -0.042724609375, + 0.00762939453125, + -0.04541015625, + -0.0306396484375, + 0.03955078125, + 0.034423828125, + 0.0306396484375, + 0.028564453125, + -0.034423828125, + 0.02294921875, + 0.0186767578125, + -0.0181884765625, + -0.01300048828125, + -0.004364013671875, + -0.0279541015625, + 0.0213623046875, + 0.0250244140625, + 0.037109375, + 0.0213623046875, + -0.0269775390625, + -0.07275390625, + -0.006927490234375, + 0.029541015625, + -0.025390625, + -0.00299072265625, + 0.011962890625, + -0.043212890625, + 0.016845703125, + 0.00469970703125, + 0.0052490234375, + -0.0390625, + -0.0216064453125, + -0.029296875, + 0.02099609375, + -0.0693359375, + 0.0014190673828125, + 0.0224609375, + -0.01177978515625, + 0.049560546875, + 0.04833984375, + 0.01953125, + -0.0498046875, + 0.044189453125, + -0.0027618408203125, + 0.0269775390625, + 0.01397705078125, + 0.0026702880859375, + 0.0380859375, + -0.00872802734375, + -0.0019683837890625, + 0.000904083251953125, + 0.002410888671875, + -0.0113525390625, + -0.02197265625, + 0.029052734375, + -0.0007171630859375, + 0.01153564453125, + -0.0023956298828125, + 0.01495361328125, + -0.005615234375, + -0.060546875, + -0.02587890625, + -0.0439453125, + 0.003997802734375, + -0.0252685546875, + -0.013916015625, + 0.0174560546875, + -0.045166015625, + 0.023193359375, + 0.061279296875, + 0.004730224609375, + 0.00872802734375, + -0.0299072265625, + 0.008056640625, + 0.019287109375, + 0.019775390625, + -0.00634765625, + 0.0069580078125, + 0.0146484375, + 0.01312255859375, + -0.0069580078125, + -0.01080322265625, + 0.01190185546875, + -0.0224609375, + 0.052978515625, + 0.01129150390625, + 0.04931640625, + -0.047607421875, + 0.01507568359375, + -0.054443359375, + -0.03759765625, + -0.04296875, + 0.00494384765625, + -0.0419921875, + -0.024658203125, + 0.045166015625, + 0.002044677734375, + 0.006988525390625, + -0.029296875, + -0.024169921875, + -0.04833984375, + 0.01611328125, + -0.0198974609375, + 0.040771484375, + -0.00994873046875, + -0.0224609375, + -0.0269775390625, + 0.026123046875, + 0.003021240234375, + 0.0169677734375, + -0.00836181640625, + -0.0279541015625, + -0.0439453125, + -0.03173828125, + -0.00689697265625, + -0.056396484375, + -0.020751953125, + -0.0026092529296875, + 0.055908203125, + 0.049560546875, + 0.0196533203125, + 0.037353515625, + 0.026611328125, + -0.00848388671875, + 0.0289306640625, + -0.01470947265625, + 0.061279296875, + -0.00927734375, + -0.011474609375, + 0.005615234375, + -0.0038909912109375, + -0.0301513671875, + -0.0283203125, + 0.0150146484375, + -0.00457763671875, + -0.00823974609375, + 0.0311279296875, + 0.019775390625, + 0.02197265625, + 0.004669189453125, + -0.01239013671875, + 0.01129150390625, + -0.06396484375, + 0.021484375, + -0.051025390625, + 0.002471923828125, + -0.004486083984375, + -0.058837890625, + 0.005401611328125, + 0.01385498046875, + 0.0047607421875, + -0.017578125, + 0.01104736328125, + -0.05517578125, + -0.01361083984375, + -0.140625, + 0.0269775390625, + 0.01416015625, + -0.01446533203125, + -0.0308837890625, + 0.00848388671875, + -0.027587890625, + 0.019775390625, + -0.057861328125, + -0.05322265625, + 0.01177978515625, + 0.00506591796875, + 0.0252685546875, + -0.01220703125, + -0.05078125, + 0.0247802734375, + -0.00075531005859375, + -0.0118408203125, + -0.00138092041015625, + -0.00136566162109375, + 0.019775390625, + -0.01611328125, + 0.043212890625, + -0.033447265625, + 0.01336669921875, + 0.00860595703125, + 0.010498046875, + -0.0299072265625, + -0.039306640625, + 0.01214599609375, + -0.0269775390625, + -0.0859375, + -0.0037841796875, + 0.004180908203125, + 0.01092529296875, + -0.0024871826171875, + 0.0103759765625, + -0.037353515625, + -0.019775390625, + 0.00787353515625, + 0.0191650390625, + 0.005218505859375, + -0.001373291015625, + 0.0166015625, + -0.01953125, + 0.0361328125, + -0.03369140625, + -0.01611328125, + -0.004913330078125, + -0.00897216796875, + -0.03857421875, + -0.0191650390625, + 0.009765625, + -0.00604248046875, + -0.0030975341796875, + 0.005157470703125, + -0.03369140625, + -0.026123046875, + 0.00083160400390625, + 0.078125, + 0.0120849609375, + 0.046142578125, + -0.031982421875, + -0.04638671875, + -0.022705078125, + -0.00872802734375, + 0.0024566650390625, + 0.01953125, + 0.046630859375, + 0.00109100341796875, + -0.06640625, + 0.01904296875, + -0.0174560546875, + -0.017822265625, + -0.0174560546875, + -0.043701171875, + 0.0294189453125, + -0.0135498046875, + -0.01312255859375, + -0.053955078125, + -0.0771484375, + 0.0152587890625, + -0.0439453125, + -0.035400390625, + 0.0281982421875, + -0.0016937255859375, + -0.0262451171875, + -0.00885009765625, + -0.01214599609375, + 0.01544189453125, + -0.029541015625, + 0.0130615234375, + -0.0087890625, + -0.00164031982421875, + -0.052490234375, + -0.0036773681640625, + -0.017578125, + 0.00311279296875, + -0.04150390625, + -0.032470703125, + -0.0419921875, + -0.02734375, + 0.03955078125, + 0.0191650390625, + -0.004150390625, + 0.033935546875, + 0.04150390625, + -0.01397705078125, + -0.00213623046875, + 0.00799560546875, + 0.0106201171875, + -0.0233154296875, + -0.03515625, + -0.0244140625, + -0.01324462890625, + -0.0045166015625, + -0.0264892578125, + -0.00848388671875, + -0.0203857421875, + 0.03173828125, + -0.038330078125, + 0.00872802734375, + 0.03271484375, + -0.0191650390625, + 0.01470947265625, + 0.0201416015625, + 0.033203125, + 0.023681640625, + -0.03271484375, + 0.0062255859375, + 0.022705078125, + -0.0283203125, + -0.00144195556640625, + 0.0390625, + 0.01385498046875, + 0.0213623046875, + -0.0255126953125, + -0.004791259765625, + 0.007080078125, + -0.0034637451171875, + -0.00750732421875, + -0.007080078125, + -0.0152587890625, + -0.025634765625, + -0.0419921875, + 0.0252685546875, + -0.048828125, + -0.043212890625, + 0.06005859375, + -0.009521484375, + 0.00165557861328125, + 0.025390625, + -0.03564453125, + 0.03271484375, + -0.013671875, + -0.03662109375, + 0.0012054443359375, + 0.0166015625, + -0.0174560546875, + 0.06884765625, + -0.00994873046875, + -0.0203857421875, + -0.003997802734375, + -0.03955078125, + 0.0179443359375, + 0.04443359375, + 0.001556396484375, + 0.022705078125, + 0.01544189453125, + -0.0003414154052734375, + 0.04638671875, + 0.00579833984375, + -0.0159912109375, + -0.0142822265625, + 0.0076904296875, + -0.0137939453125, + 0.00421142578125, + -0.040283203125, + 0.033203125, + -0.034912109375, + 0.0252685546875, + 0.03076171875, + 0.04052734375, + -0.0172119140625, + 0.007049560546875, + 0.00909423828125, + 0.0135498046875, + 0.03955078125, + 0.0101318359375, + 0.0159912109375, + 0.00830078125, + 0.040283203125, + -0.00537109375, + 0.00121307373046875, + 0.052001953125, + -0.0247802734375, + 0.0145263671875, + 0.01104736328125, + 0.034423828125, + 0.02099609375, + -0.012939453125, + -0.0038299560546875, + -0.0277099609375, + 0.0015869140625, + -0.003448486328125, + 0.0322265625, + -0.01611328125, + 0.0191650390625, + -0.05322265625, + 0.0015106201171875, + 0.00531005859375, + -0.0260009765625, + 0.0311279296875, + -0.00787353515625, + 0.0113525390625, + -0.02490234375, + 0.018310546875, + -0.03515625, + 0.0289306640625, + -0.002044677734375, + -0.0296630859375, + -0.0024871826171875, + 7.934868335723877e-07, + -0.0478515625, + -0.052978515625, + -0.0029449462890625, + -0.05908203125, + -0.0279541015625, + 0.0030517578125, + -5.1975250244140625e-05, + 0.004425048828125, + 0.000965118408203125, + 0.0145263671875, + 0.055419921875, + 0.024658203125, + 0.03955078125, + -0.04052734375, + 0.0269775390625, + 0.00177764892578125, + -0.05322265625, + 0.061767578125, + -0.01556396484375, + 0.01129150390625, + 0.0272216796875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.752568000001133, + "queue_ms": 1.2562969999976303, + "tokenization_ms": 0.018960999994988015, + "inference_ms": 15.356018000005633, + "postprocessing_ms": null + } + }, + { + "id": "chunk-10", + "dense": [ + -0.035888671875, + -0.00933837890625, + -0.037841796875, + -0.004852294921875, + -0.03515625, + -0.055908203125, + 0.0262451171875, + 0.037353515625, + -0.040771484375, + 0.03271484375, + 0.012939453125, + -0.0074462890625, + -0.0098876953125, + -0.001312255859375, + 0.0458984375, + 0.0025787353515625, + 0.02197265625, + 0.009765625, + -0.01165771484375, + -0.01373291015625, + -0.0654296875, + 0.025390625, + -0.001922607421875, + 0.0673828125, + 0.006072998046875, + 0.05322265625, + -0.016845703125, + -0.04345703125, + 0.0146484375, + 0.0546875, + -0.0078125, + -0.023193359375, + -0.030029296875, + -0.053466796875, + 0.00823974609375, + -0.015625, + -0.01019287109375, + 0.024169921875, + -0.033203125, + -0.016357421875, + 0.01116943359375, + -0.0654296875, + 0.032958984375, + -0.00604248046875, + 0.004730224609375, + -0.07275390625, + -0.0142822265625, + -0.0419921875, + -0.01019287109375, + 0.01116943359375, + -0.0026702880859375, + 0.004547119140625, + 0.019775390625, + -0.0498046875, + 0.06689453125, + -0.017578125, + 0.017333984375, + -0.003326416015625, + -0.03271484375, + 0.03857421875, + -0.055908203125, + 0.0030059814453125, + 0.029541015625, + 0.000732421875, + 0.0033416748046875, + 0.06396484375, + -0.031005859375, + -0.010009765625, + 0.00162506103515625, + -0.025634765625, + -0.03173828125, + -0.021484375, + 0.006866455078125, + -0.030029296875, + -0.03125, + 0.009033203125, + 0.0213623046875, + -0.0703125, + 0.025146484375, + 0.01708984375, + 0.0751953125, + -0.01434326171875, + 0.012451171875, + -0.00347900390625, + 0.06689453125, + 0.047119140625, + -0.0172119140625, + 0.00921630859375, + 0.00665283203125, + 0.0247802734375, + -0.025146484375, + -0.0225830078125, + -0.0108642578125, + 0.04296875, + -0.01007080078125, + 0.0311279296875, + -0.00848388671875, + 0.043212890625, + 0.01019287109375, + 0.0101318359375, + 0.04296875, + 0.0086669921875, + -0.019775390625, + -0.033447265625, + 0.01226806640625, + 0.0069580078125, + 0.044189453125, + 0.0732421875, + 0.048583984375, + 0.002777099609375, + 0.051025390625, + 0.06103515625, + 0.01495361328125, + -0.0174560546875, + -0.029052734375, + -0.00360107421875, + 9.417533874511719e-06, + -0.0260009765625, + -0.0002498626708984375, + -0.0184326171875, + 0.019775390625, + 0.0098876953125, + 0.0341796875, + -0.049560546875, + -0.0050048828125, + -0.0050048828125, + 0.0016937255859375, + 0.0162353515625, + 0.0157470703125, + 0.01434326171875, + 0.01263427734375, + 0.064453125, + -0.0172119140625, + 0.0034332275390625, + 0.0029144287109375, + -0.0125732421875, + 0.0020599365234375, + 0.0174560546875, + -0.02490234375, + -0.044189453125, + -0.0235595703125, + 0.019775390625, + -0.006317138671875, + -0.0133056640625, + 0.0093994140625, + -0.0390625, + 0.0458984375, + -0.023681640625, + 0.052978515625, + 0.015380859375, + 0.01275634765625, + 0.01312255859375, + 0.0625, + -0.028076171875, + -3.218650817871094e-05, + -0.0167236328125, + -0.022705078125, + 0.0458984375, + -0.046875, + 0.00823974609375, + 0.003631591796875, + -0.014404296875, + -0.04736328125, + -0.0123291015625, + 0.037353515625, + 0.02685546875, + 0.016845703125, + 0.01275634765625, + -0.003753662109375, + -0.04150390625, + 0.0361328125, + -0.033203125, + 0.01904296875, + 0.01226806640625, + 0.0081787109375, + 0.029541015625, + 0.06982421875, + 0.01171875, + -0.01104736328125, + -0.05419921875, + -0.04931640625, + 0.04052734375, + -0.0096435546875, + 0.0010986328125, + -0.01708984375, + 0.04931640625, + 0.0546875, + -0.041748046875, + 0.0003147125244140625, + 0.0186767578125, + 0.0123291015625, + -0.02685546875, + -0.0093994140625, + 0.0089111328125, + 0.029052734375, + -0.042724609375, + 0.0242919921875, + -0.06982421875, + -0.002349853515625, + -0.029541015625, + -0.0118408203125, + 0.031494140625, + 0.01470947265625, + -0.029052734375, + -0.038818359375, + -0.003631591796875, + -0.04052734375, + 0.00738525390625, + 0.0260009765625, + -0.0059814453125, + -0.00640869140625, + -0.01806640625, + 0.00518798828125, + 0.029052734375, + -0.0225830078125, + -0.011962890625, + -0.0284423828125, + 0.00885009765625, + -0.0252685546875, + -0.043212890625, + 0.03271484375, + -0.0029296875, + -0.003265380859375, + 0.001220703125, + 0.01519775390625, + -0.006805419921875, + 0.00372314453125, + 0.0625, + 0.0155029296875, + 0.001220703125, + 0.008056640625, + -0.0177001953125, + -0.042724609375, + 0.003448486328125, + 0.0274658203125, + 0.00872802734375, + 0.0322265625, + 0.0240478515625, + 0.01129150390625, + -0.0220947265625, + 0.01519775390625, + 0.0274658203125, + 0.0213623046875, + 0.03466796875, + 0.01104736328125, + 0.03271484375, + 4.8160552978515625e-05, + 0.011474609375, + 0.02294921875, + -0.045654296875, + 0.015869140625, + 0.006866455078125, + -0.04638671875, + -0.030517578125, + 0.03759765625, + 0.00135040283203125, + -0.0247802734375, + -9.965896606445312e-05, + -0.0166015625, + -0.01080322265625, + 0.02880859375, + 0.0380859375, + 0.00921630859375, + 0.03369140625, + -0.026611328125, + -0.03271484375, + -0.00274658203125, + -0.0634765625, + -0.0052490234375, + 0.03857421875, + -0.0111083984375, + -0.06884765625, + -0.00087738037109375, + 0.037353515625, + -0.035888671875, + 0.0255126953125, + -0.0301513671875, + -0.009765625, + 0.07421875, + -0.0064697265625, + 0.041259765625, + 0.0206298828125, + 0.0595703125, + -0.0279541015625, + -0.01263427734375, + -0.0081787109375, + 0.032958984375, + 0.000522613525390625, + 0.01422119140625, + -0.017333984375, + 0.032958984375, + 0.00885009765625, + 0.078125, + -0.018798828125, + -0.040283203125, + -0.0074462890625, + 0.0040283203125, + -0.1552734375, + -0.00714111328125, + 0.0025482177734375, + 0.02490234375, + 0.046630859375, + -0.0162353515625, + -0.0255126953125, + 0.01171875, + -0.0235595703125, + -0.01007080078125, + -0.05517578125, + -0.0439453125, + -0.04443359375, + 0.004730224609375, + -0.0213623046875, + 0.008544921875, + -0.00823974609375, + -0.0120849609375, + 0.06005859375, + -0.0216064453125, + -0.001953125, + 0.013427734375, + 0.02978515625, + -0.06982421875, + 0.002685546875, + 0.03369140625, + 0.025146484375, + -0.028564453125, + -0.068359375, + 0.0234375, + -0.0458984375, + 0.017822265625, + -0.00860595703125, + 0.0262451171875, + -0.00738525390625, + 0.07763671875, + -0.0030975341796875, + -0.030517578125, + -0.041748046875, + -0.01336669921875, + 0.035400390625, + 0.034423828125, + 0.00885009765625, + -0.01519775390625, + -0.0242919921875, + -0.03173828125, + -0.0194091796875, + -0.0341796875, + -0.02197265625, + 0.0279541015625, + 0.014892578125, + -0.0191650390625, + -0.0673828125, + 0.00433349609375, + -0.0361328125, + 0.01470947265625, + -0.0023345947265625, + -0.042724609375, + -0.013427734375, + -0.0023193359375, + -0.043212890625, + -0.056884765625, + 0.0184326171875, + -0.036865234375, + -0.0498046875, + 0.007598876953125, + -0.0125732421875, + -0.027587890625, + 0.0038909912109375, + 0.00885009765625, + -0.01806640625, + 0.020751953125, + 0.0240478515625, + -0.00714111328125, + -0.0274658203125, + 0.002899169921875, + -0.0067138671875, + -0.0159912109375, + -0.021240234375, + -0.126953125, + 0.005859375, + -0.007171630859375, + -0.00787353515625, + -0.007354736328125, + -0.017578125, + 0.0023651123046875, + -0.0098876953125, + 0.006622314453125, + 0.040771484375, + 0.1884765625, + 0.0177001953125, + 0.0341796875, + -0.01300048828125, + 0.00946044921875, + 0.00396728515625, + 0.0517578125, + -0.00286865234375, + 0.00150299072265625, + -0.0498046875, + -0.01953125, + 0.006072998046875, + 0.01141357421875, + 0.0003452301025390625, + -0.0140380859375, + 0.0086669921875, + -0.0225830078125, + -0.005859375, + 0.07421875, + -0.002105712890625, + 0.033447265625, + -0.023681640625, + 0.0810546875, + 0.01470947265625, + -0.0103759765625, + 0.0150146484375, + -0.03076171875, + 0.045654296875, + 0.007354736328125, + -0.00145721435546875, + -0.004608154296875, + 0.015625, + 0.02392578125, + -0.0419921875, + -0.03564453125, + 0.011962890625, + -0.0179443359375, + -0.02001953125, + -0.01556396484375, + 0.01953125, + -0.02734375, + 0.001190185546875, + 0.000213623046875, + -0.0118408203125, + 0.008544921875, + 0.009033203125, + -0.01202392578125, + -0.0040283203125, + -0.00897216796875, + 0.033203125, + -0.03466796875, + 0.03662109375, + -0.007781982421875, + 0.01019287109375, + -0.016357421875, + 0.00286865234375, + -0.0400390625, + -0.035400390625, + -0.05615234375, + 0.055908203125, + -0.00823974609375, + 0.014892578125, + -0.045166015625, + 0.055908203125, + -0.01239013671875, + 0.03466796875, + -0.031982421875, + -0.033203125, + 0.03271484375, + 0.00604248046875, + -0.0103759765625, + 0.03955078125, + -0.028076171875, + 0.00762939453125, + 0.02001953125, + -0.018798828125, + -0.025634765625, + 0.05078125, + -0.01611328125, + 0.00125885009765625, + -0.0225830078125, + -0.0712890625, + 0.000911712646484375, + -0.020263671875, + -0.0067138671875, + -0.0007171630859375, + 0.00811767578125, + 0.0556640625, + -0.0272216796875, + -0.050537109375, + 0.022216796875, + 0.021728515625, + -0.042724609375, + 0.010009765625, + -0.043212890625, + -0.01068115234375, + 0.0184326171875, + -0.02001953125, + -0.0206298828125, + -0.029541015625, + 0.023193359375, + -0.0021209716796875, + 0.02294921875, + -0.006622314453125, + 0.023193359375, + 0.004119873046875, + -0.030517578125, + -0.0009613037109375, + 0.01324462890625, + 0.017578125, + -0.022216796875, + 0.01068115234375, + -0.0142822265625, + -0.007781982421875, + 0.06982421875, + 0.0164794921875, + -0.0220947265625, + 0.0036468505859375, + 0.025146484375, + 0.017822265625, + -0.0478515625, + -0.049560546875, + -0.01361083984375, + 0.0341796875, + -0.04931640625, + -0.041748046875, + -0.00048065185546875, + 0.019287109375, + -0.01226806640625, + 0.054443359375, + 0.0615234375, + -0.0242919921875, + -0.0322265625, + 0.01507568359375, + 0.029296875, + -0.0111083984375, + 0.06591796875, + 0.003753662109375, + 0.00958251953125, + 0.027587890625, + -0.0135498046875, + -0.018310546875, + -0.02392578125, + -0.016357421875, + -0.04052734375, + -0.0201416015625, + -0.054931640625, + 0.040771484375, + -0.0079345703125, + -0.0322265625, + 0.03759765625, + 0.019775390625, + -0.0040283203125, + -0.0048828125, + -0.031494140625, + 0.016357421875, + -0.05029296875, + 0.028076171875, + 0.0157470703125, + -0.01129150390625, + -0.04541015625, + 0.00396728515625, + -0.008056640625, + 0.046630859375, + -0.021484375, + 0.08837890625, + 0.02490234375, + -0.005828857421875, + -0.037109375, + -0.050537109375, + 0.00921630859375, + 0.005859375, + 0.02197265625, + 0.0286865234375, + 0.00775146484375, + -0.05078125, + -0.00592041015625, + 0.035400390625, + 0.056884765625, + 0.038818359375, + 0.0458984375, + 0.0279541015625, + 0.0146484375, + 0.0069580078125, + -0.039306640625, + 0.00537109375, + -0.0235595703125, + -0.00628662109375, + 0.03857421875, + -0.024169921875, + -0.04345703125, + 0.0859375, + -0.0113525390625, + -0.0087890625, + -0.0035247802734375, + -0.01129150390625, + 0.03466796875, + 0.00102996826171875, + 0.011962890625, + -0.04443359375, + -0.0264892578125, + -0.058837890625, + -0.0181884765625, + -0.03662109375, + 0.032958984375, + 0.037841796875, + -0.044189453125, + 0.054931640625, + -0.03125, + 0.01708984375, + 0.03857421875, + 0.028076171875, + -0.02099609375, + 0.01019287109375, + -0.02685546875, + 0.0191650390625, + 0.0260009765625, + 0.03955078125, + 0.00860595703125, + -0.0732421875, + 0.0169677734375, + 0.0184326171875, + 0.08935546875, + -0.06396484375, + 0.0184326171875, + -0.00457763671875, + -0.043212890625, + -0.0245361328125, + -0.0206298828125, + -0.0274658203125, + 0.006805419921875, + -0.027587890625, + -0.0002956390380859375, + -0.0115966796875, + 0.062255859375, + -0.0322265625, + 0.030029296875, + 0.035888671875, + 0.036865234375, + 0.002655029296875, + -0.009765625, + -0.0220947265625, + -0.044189453125, + 0.07861328125, + -0.0052490234375, + 0.030517578125, + -0.0030670166015625, + -0.03173828125, + 0.04052734375, + 0.0086669921875, + -0.03662109375, + 0.0169677734375, + -0.013427734375, + -0.032958984375, + -0.000492095947265625, + 0.0306396484375, + 0.03857421875, + -0.01806640625, + -0.004486083984375, + -0.0478515625, + -0.0152587890625, + 0.05078125, + -0.0274658203125, + -0.0003490447998046875, + -0.01275634765625, + -0.01214599609375, + 0.008544921875, + 0.0029144287109375, + -0.0152587890625, + -0.055908203125, + 0.017333984375, + 0.01806640625, + 0.00142669677734375, + 0.00081634521484375, + 0.01275634765625, + 0.00775146484375, + -0.0615234375, + 0.030029296875, + -0.006072998046875, + 0.0299072265625, + 0.0030670166015625, + 0.018310546875, + 0.0079345703125, + 0.00506591796875, + -0.031982421875, + 0.022705078125, + 0.001190185546875, + -0.00762939453125, + 0.031494140625, + -0.009521484375, + 0.040283203125, + -0.024658203125, + -0.038330078125, + 0.00396728515625, + -0.0155029296875, + 0.00677490234375, + -0.06103515625, + -0.023681640625, + -0.0026702880859375, + 0.03173828125, + 0.015869140625, + -0.033447265625, + 0.002532958984375, + -0.0177001953125, + -0.00075531005859375, + 0.006561279296875, + 0.007049560546875, + -0.0361328125, + -0.01708984375, + 0.033935546875, + 0.0213623046875, + 7.724761962890625e-05, + 0.02294921875, + -0.034912109375, + 0.0018157958984375, + -0.0135498046875, + 0.033935546875, + 0.0537109375, + 0.03759765625, + 0.019775390625, + -0.0225830078125, + -0.0050048828125, + -0.02734375, + -0.006195068359375, + -0.0537109375, + 0.009765625, + -0.0517578125, + 0.01202392578125, + 0.0400390625, + -0.053466796875, + -0.057373046875, + -0.032958984375, + 0.01165771484375, + -0.03125, + 0.040283203125, + 0.007781982421875, + -0.021484375, + -0.017822265625, + 0.0155029296875, + 0.0166015625, + 0.039306640625, + 0.006622314453125, + 0.041748046875, + -0.002655029296875, + 0.01556396484375, + -0.003753662109375, + -0.00628662109375, + -0.0111083984375, + 0.04150390625, + 0.020751953125, + 0.02294921875, + 0.0225830078125, + -0.016357421875, + 0.0186767578125, + -0.00469970703125, + -0.007537841796875, + 0.026611328125, + -0.006317138671875, + 0.02001953125, + -0.05419921875, + -0.007476806640625, + 0.0084228515625, + 0.012451171875, + 0.01361083984375, + -0.014404296875, + -0.0037994384765625, + -0.01226806640625, + -0.0155029296875, + 0.0556640625, + 0.01531982421875, + -0.04345703125, + 0.0242919921875, + -0.0498046875, + 0.02099609375, + -0.019287109375, + 0.00213623046875, + -0.006378173828125, + -0.01708984375, + -0.021484375, + 0.026123046875, + 0.00125885009765625, + 0.00457763671875, + -0.01116943359375, + 0.023193359375, + 0.0201416015625, + -0.01806640625, + -0.0008087158203125, + 0.004547119140625, + 0.058837890625, + 0.0157470703125, + -0.058837890625, + -0.02001953125, + -0.008056640625, + -0.0247802734375, + -0.1357421875, + 0.04150390625, + -0.019775390625, + -0.0040283203125, + -0.027587890625, + 0.0106201171875, + -0.0240478515625, + -0.0167236328125, + 0.011474609375, + -0.021240234375, + 0.026123046875, + 0.021728515625, + -0.000881195068359375, + -0.0030975341796875, + -0.029541015625, + -0.000354766845703125, + 0.0069580078125, + -0.03466796875, + 0.062255859375, + 0.0220947265625, + 0.012939453125, + -0.0311279296875, + -0.024169921875, + -0.00970458984375, + -0.038818359375, + 0.00250244140625, + -0.05712890625, + 0.001373291015625, + -0.00604248046875, + 0.00069427490234375, + 0.049072265625, + -0.0517578125, + 0.017822265625, + -0.024658203125, + 0.009765625, + -0.006317138671875, + 0.013427734375, + -0.0035552978515625, + 0.011474609375, + -0.01068115234375, + 0.003570556640625, + 0.015869140625, + -0.03955078125, + -0.0111083984375, + 0.04443359375, + 0.0311279296875, + 0.003204345703125, + 0.00058746337890625, + -0.04345703125, + 0.01611328125, + -0.043212890625, + 0.0291748046875, + -0.0093994140625, + -0.0015411376953125, + 0.00634765625, + 0.058837890625, + -0.03125, + 0.0301513671875, + -0.005401611328125, + 0.03466796875, + 0.004119873046875, + 0.004608154296875, + -0.027099609375, + -0.10595703125, + -0.0186767578125, + 0.0048828125, + -0.0595703125, + -0.0150146484375, + -0.0252685546875, + -0.009033203125, + -0.0174560546875, + -0.060791015625, + 0.0206298828125, + 0.0004863739013671875, + 0.021728515625, + 0.0208740234375, + 0.0184326171875, + 0.004669189453125, + -0.0281982421875, + -0.023193359375, + 0.004852294921875, + -0.0062255859375, + -0.004638671875, + 0.0008392333984375, + 0.0191650390625, + -0.0108642578125, + -0.03564453125, + -0.001312255859375, + -0.0255126953125, + -0.0299072265625, + -0.07177734375, + -0.0157470703125, + -0.0322265625, + 0.0042724609375, + -0.04296875, + -0.004241943359375, + -0.026611328125, + -0.0018463134765625, + 0.01214599609375, + -0.02294921875, + -0.0245361328125, + -0.01904296875, + 0.00677490234375, + 0.015869140625, + -0.0291748046875, + -0.0101318359375, + 0.0291748046875, + -0.006195068359375, + 0.036865234375, + 0.011474609375, + 0.00653076171875, + 0.019775390625, + 0.0123291015625, + -0.0240478515625, + -0.028076171875, + -0.0191650390625, + 0.04345703125, + -0.032958984375, + -0.00015735626220703125, + -0.00262451171875, + -0.0216064453125, + -0.03369140625, + -0.0037994384765625, + -0.03857421875, + -0.009765625, + 0.0252685546875, + 0.0235595703125, + 0.0228271484375, + 0.014404296875, + -0.00909423828125, + 0.049072265625, + -0.0184326171875, + -0.0084228515625, + 0.0240478515625, + -0.0040283203125, + -0.032958984375, + -0.05615234375, + 0.0264892578125, + -0.0556640625, + -0.05908203125, + 0.008056640625, + -0.0247802734375, + 0.0186767578125, + -0.025634765625, + 0.0045166015625, + -0.006561279296875, + 0.002655029296875, + 0.003753662109375, + -0.015380859375, + -0.03125, + 0.0654296875, + 0.00885009765625, + 0.0439453125, + -0.027099609375, + -0.0108642578125, + 0.059814453125, + -0.023681640625, + 0.029296875, + 0.046875, + 0.05859375, + 0.00469970703125, + -0.0252685546875, + -0.021484375, + -0.030517578125, + 0.006866455078125, + 0.0255126953125, + 0.0004253387451171875, + -0.007049560546875, + -0.005859375, + -0.01312255859375, + 0.03271484375, + 0.08544921875, + -0.040771484375, + 0.0113525390625, + 0.029541015625, + -0.0615234375, + 0.037109375, + -0.01336669921875, + -0.0247802734375, + -0.0242919921875, + 0.040771484375, + -0.0035247802734375, + 0.00170135498046875, + 0.0220947265625, + 0.02294921875, + 0.037109375, + -0.0225830078125, + 0.049072265625, + 0.008056640625, + 0.00787353515625, + 0.031494140625, + -0.01507568359375, + -0.05224609375, + -0.07666015625, + 0.046630859375, + 0.045166015625, + 0.006378173828125, + 0.040283203125, + 0.032470703125, + 0.0118408203125, + -0.0252685546875, + 0.04931640625, + -0.00921630859375, + 0.005218505859375, + -0.057373046875, + -0.014404296875, + -0.01806640625, + 0.0206298828125, + -0.018798828125, + 0.0791015625, + -0.029052734375, + -0.0242919921875, + 0.018310546875, + 0.00762939453125, + -0.0306396484375, + -0.007049560546875, + 0.030517578125, + 0.0361328125, + -0.0234375, + 0.033447265625, + -0.0216064453125, + 0.0206298828125, + -0.007171630859375, + -0.0693359375, + -0.001495361328125, + -0.00970458984375, + -0.039306640625, + -0.00634765625, + 0.0050048828125, + 0.0311279296875, + 0.00946044921875, + 0.016845703125, + 0.00142669677734375, + 0.03369140625, + 0.0311279296875, + -0.01043701171875, + -0.023193359375, + 0.0213623046875, + -0.0260009765625, + -0.041748046875, + 0.040771484375, + 0.02685546875, + 0.0458984375, + 0.01708984375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 15.712034999992852, + "queue_ms": 2.1118049999984123, + "tokenization_ms": 0.01670000000331129, + "inference_ms": 13.468168000002834, + "postprocessing_ms": null + } + }, + { + "id": "chunk-11", + "dense": [ + -0.01397705078125, + 0.006927490234375, + -0.04931640625, + 0.0262451171875, + -0.038330078125, + -0.0693359375, + -0.038818359375, + 0.001220703125, + -0.01092529296875, + -0.0101318359375, + -0.014892578125, + -0.025634765625, + 0.0220947265625, + 0.0026702880859375, + 0.039306640625, + 0.0291748046875, + 0.022216796875, + -0.0167236328125, + -0.004791259765625, + -0.0262451171875, + -0.003265380859375, + 0.01007080078125, + 0.0032196044921875, + 0.0673828125, + -0.00762939453125, + 0.0169677734375, + -0.0654296875, + -0.01348876953125, + 0.029541015625, + 0.03369140625, + 0.01556396484375, + -0.058837890625, + 0.005218505859375, + -0.004150390625, + -0.01171875, + -0.035400390625, + 0.0184326171875, + 0.043212890625, + -0.0341796875, + -0.0233154296875, + 0.017333984375, + -0.03271484375, + 0.045654296875, + 0.00335693359375, + 0.0140380859375, + -0.0301513671875, + 0.00069427490234375, + -0.038330078125, + -0.0186767578125, + -0.06103515625, + 0.01043701171875, + 0.017333984375, + 0.036376953125, + -0.01275634765625, + 0.023681640625, + 0.00013065338134765625, + 0.02978515625, + -0.01318359375, + -0.0546875, + -0.0252685546875, + 0.002044677734375, + 0.009033203125, + -0.047607421875, + -0.054931640625, + -0.027099609375, + 0.05712890625, + 0.01416015625, + 0.033447265625, + -0.046142578125, + -0.080078125, + -0.015625, + -0.041259765625, + 0.0201416015625, + -0.029296875, + -0.0269775390625, + 0.010986328125, + -0.017578125, + -0.0255126953125, + -0.006439208984375, + -0.000347137451171875, + 0.044921875, + -0.043212890625, + -0.033447265625, + 0.020263671875, + 0.002838134765625, + 0.0245361328125, + -0.0169677734375, + 0.017333984375, + -0.0157470703125, + -0.00408935546875, + -0.004364013671875, + 0.0017242431640625, + -0.00421142578125, + -0.007171630859375, + -0.031494140625, + 0.03955078125, + 0.0208740234375, + -0.00116729736328125, + 0.029296875, + -0.021240234375, + -0.00653076171875, + -0.0164794921875, + 0.0250244140625, + -0.010986328125, + 0.041259765625, + -0.004638671875, + 0.06884765625, + 0.04443359375, + 0.0025177001953125, + 0.0179443359375, + 0.0155029296875, + 0.00848388671875, + 0.0615234375, + -0.0262451171875, + -0.041748046875, + 0.00811767578125, + -0.052734375, + -0.0179443359375, + 0.006256103515625, + -0.054931640625, + 0.041259765625, + 0.033935546875, + 0.0478515625, + -0.0263671875, + -0.0264892578125, + -0.025146484375, + -0.001708984375, + -0.0283203125, + 0.01409912109375, + 0.017578125, + 0.001617431640625, + 0.038330078125, + -0.00958251953125, + -0.01043701171875, + -0.01153564453125, + -0.0576171875, + -0.0084228515625, + 0.04736328125, + 0.0011138916015625, + -0.037109375, + -0.048095703125, + 0.040283203125, + -0.032958984375, + -0.0115966796875, + 0.0673828125, + 0.0244140625, + 0.00811767578125, + -0.011962890625, + -0.00921630859375, + -0.058837890625, + -0.023193359375, + -0.000244140625, + 0.0274658203125, + -0.0093994140625, + 0.0072021484375, + -0.033935546875, + 0.03466796875, + 0.060791015625, + 0.0177001953125, + 0.00262451171875, + 0.018798828125, + -0.014404296875, + 0.0086669921875, + 0.0107421875, + 0.0267333984375, + 0.01007080078125, + -0.007598876953125, + 0.037109375, + -0.004241943359375, + -0.003448486328125, + 0.014892578125, + -0.0230712890625, + 0.0213623046875, + -0.024658203125, + 0.00958251953125, + 0.0390625, + 0.08154296875, + 0.0255126953125, + 0.0279541015625, + -0.031494140625, + 0.003265380859375, + 0.0179443359375, + 0.0128173828125, + 0.0059814453125, + -0.02978515625, + 0.04443359375, + 0.03173828125, + -0.036376953125, + 0.03759765625, + -0.0303955078125, + 0.00701904296875, + -0.0234375, + -0.023681640625, + -0.0263671875, + 0.038818359375, + -0.0179443359375, + 0.041748046875, + -0.030029296875, + 0.01141357421875, + -0.0228271484375, + 0.0291748046875, + -0.010498046875, + 0.06591796875, + -0.00732421875, + -0.055908203125, + 0.0166015625, + -0.040283203125, + -0.01324462890625, + 0.037109375, + -0.04248046875, + -0.0194091796875, + -0.018798828125, + 0.004913330078125, + -0.00010585784912109375, + -0.0162353515625, + -0.003662109375, + -0.00445556640625, + -0.0189208984375, + -0.0274658203125, + -0.0291748046875, + -0.001678466796875, + 0.0498046875, + -0.0703125, + 0.0035858154296875, + -0.01385498046875, + 0.005828857421875, + -0.00970458984375, + 0.0322265625, + 0.037841796875, + -0.006591796875, + 0.039306640625, + 0.049072265625, + -0.001251220703125, + 0.00151824951171875, + -0.0137939453125, + 0.0101318359375, + -0.003936767578125, + 0.037353515625, + -0.030517578125, + 0.03271484375, + 0.029541015625, + 0.045654296875, + -0.0289306640625, + 0.0517578125, + -0.03125, + 0.0111083984375, + 0.0029754638671875, + 0.0155029296875, + -0.0294189453125, + -0.004150390625, + 0.03271484375, + -0.0118408203125, + -0.04736328125, + 0.00714111328125, + 0.051513671875, + 0.045654296875, + 0.0002613067626953125, + -0.008056640625, + 0.02099609375, + 0.01275634765625, + 0.0201416015625, + 0.033935546875, + 0.053955078125, + 0.007354736328125, + 0.01141357421875, + -0.0301513671875, + -0.041748046875, + 0.0216064453125, + 0.0194091796875, + 0.000316619873046875, + -0.023681640625, + -0.0194091796875, + -0.032470703125, + 0.01397705078125, + -0.0216064453125, + 0.039306640625, + -0.00775146484375, + -0.0255126953125, + 0.0155029296875, + 0.0142822265625, + 0.060302734375, + -0.015869140625, + 0.032470703125, + 0.017333984375, + -0.000957489013671875, + -0.041748046875, + -0.0191650390625, + -0.04150390625, + -0.00052642822265625, + 0.00396728515625, + -0.0106201171875, + -0.01556396484375, + 0.0634765625, + -0.01434326171875, + -0.0179443359375, + -0.0220947265625, + -0.032958984375, + -0.1669921875, + 0.00537109375, + -0.0157470703125, + 0.0238037109375, + 0.0142822265625, + 0.0322265625, + -0.0181884765625, + -0.005340576171875, + 0.01312255859375, + -0.005523681640625, + 0.006866455078125, + -0.052978515625, + 0.0224609375, + -0.038330078125, + -0.038330078125, + -0.00244140625, + 0.0196533203125, + -0.0208740234375, + 0.049072265625, + -0.01708984375, + -0.0169677734375, + 0.035400390625, + 0.007598876953125, + -0.032958984375, + -0.0289306640625, + 0.0177001953125, + 0.01287841796875, + 0.0028076171875, + 0.038818359375, + -0.0238037109375, + -0.02734375, + 0.0003185272216796875, + -0.018310546875, + 0.0693359375, + -0.0034332275390625, + 0.032958984375, + -0.018310546875, + -0.0279541015625, + -0.00885009765625, + 0.056396484375, + 0.05615234375, + 0.0634765625, + -0.0218505859375, + -0.02490234375, + 0.041259765625, + -0.0169677734375, + -0.01043701171875, + 0.01708984375, + -0.04443359375, + -0.05908203125, + 0.0167236328125, + -0.043701171875, + -0.0140380859375, + -0.0014495849609375, + -0.0098876953125, + 0.0225830078125, + -0.020751953125, + -0.0002593994140625, + -0.02880859375, + 0.01556396484375, + -0.03466796875, + -0.08642578125, + -0.01434326171875, + -0.0186767578125, + -0.03857421875, + 0.0194091796875, + 0.01251220703125, + 0.0177001953125, + 0.036376953125, + 0.0022125244140625, + 0.01324462890625, + 0.0181884765625, + 0.0201416015625, + 0.006011962890625, + -0.0233154296875, + 0.0255126953125, + -0.023681640625, + -0.0245361328125, + 0.002838134765625, + -0.1005859375, + -0.0289306640625, + 0.000431060791015625, + -0.003265380859375, + -0.0009918212890625, + -0.0286865234375, + -0.013427734375, + 0.026123046875, + 0.01129150390625, + 0.043701171875, + 0.240234375, + 0.059814453125, + -0.04638671875, + 0.01519775390625, + -0.00592041015625, + -0.04052734375, + -0.0242919921875, + -0.0322265625, + -0.041748046875, + -0.031494140625, + -0.035400390625, + 0.058837890625, + 0.00677490234375, + 0.0018768310546875, + -0.035400390625, + -0.0277099609375, + -0.048583984375, + 0.00946044921875, + 0.09716796875, + 0.0264892578125, + 0.060791015625, + 0.030029296875, + 0.008544921875, + -0.0274658203125, + -0.043212890625, + -0.020751953125, + -0.0169677734375, + 0.03515625, + 0.0036773681640625, + -0.01409912109375, + -0.0294189453125, + 0.01470947265625, + 0.059814453125, + -0.0150146484375, + 0.007659912109375, + 0.035888671875, + 0.000942230224609375, + 0.0162353515625, + 0.027099609375, + 0.028076171875, + 0.0263671875, + -0.002197265625, + -0.00946044921875, + -0.015625, + 0.01409912109375, + -0.00133514404296875, + 0.0301513671875, + 0.00927734375, + 0.005340576171875, + 0.03466796875, + -0.05224609375, + 0.0019683837890625, + -0.0032958984375, + 0.005645751953125, + -0.00738525390625, + 0.006072998046875, + -0.00335693359375, + -0.0033111572265625, + -0.03173828125, + 0.042724609375, + 0.00787353515625, + 0.0244140625, + -0.04638671875, + 0.00946044921875, + 0.0537109375, + 0.0087890625, + -0.037841796875, + -0.03173828125, + 0.00628662109375, + 0.043212890625, + 0.029296875, + 0.016357421875, + -0.005523681640625, + 0.032958984375, + 0.01324462890625, + -0.050537109375, + 0.0028228759765625, + 0.0537109375, + -0.020751953125, + -0.02685546875, + -0.02197265625, + -0.018798828125, + -0.03173828125, + -0.0107421875, + 0.002471923828125, + 0.006622314453125, + 0.05908203125, + 0.052490234375, + -0.022216796875, + -0.052734375, + -0.0111083984375, + 0.0181884765625, + -0.022705078125, + -0.0262451171875, + -0.0186767578125, + -0.0033416748046875, + 0.001068115234375, + -0.0203857421875, + 0.004425048828125, + 0.0064697265625, + -0.021240234375, + -0.0277099609375, + 0.00689697265625, + 0.04052734375, + -0.0130615234375, + -0.007232666015625, + -0.007659912109375, + 0.0003604888916015625, + -0.00494384765625, + -0.006561279296875, + -0.045166015625, + 0.01220703125, + -0.02734375, + -0.047607421875, + 0.0693359375, + 0.050537109375, + -0.0250244140625, + 0.028076171875, + 0.0263671875, + -0.0167236328125, + -0.0033111572265625, + -0.031494140625, + 0.0380859375, + 0.0050048828125, + -0.0067138671875, + -0.00799560546875, + -0.03857421875, + -0.033447265625, + -0.0064697265625, + 0.0277099609375, + 0.03466796875, + -0.01953125, + -0.05224609375, + -0.022705078125, + 0.00885009765625, + 0.010986328125, + 0.012939453125, + -0.01397705078125, + -0.008544921875, + 0.022216796875, + -0.0157470703125, + -0.0179443359375, + -0.00518798828125, + -0.015869140625, + -0.0181884765625, + 0.0233154296875, + -0.00194549560546875, + -0.01190185546875, + -0.059814453125, + 0.017333984375, + 0.0011749267578125, + -0.00909423828125, + 0.0390625, + -0.041259765625, + -0.046142578125, + -0.02587890625, + -0.00616455078125, + -0.000743865966796875, + -0.0291748046875, + -0.0147705078125, + 0.00701904296875, + 0.03759765625, + 0.01141357421875, + 0.00946044921875, + 0.01129150390625, + 0.044921875, + -0.0067138671875, + 0.0341796875, + 0.002349853515625, + -0.05712890625, + 0.006744384765625, + -0.01611328125, + 0.017333984375, + -0.033935546875, + -0.00958251953125, + -0.00396728515625, + -0.054931640625, + 0.01214599609375, + 0.00927734375, + -0.0087890625, + 0.048583984375, + 0.0146484375, + -0.049072265625, + 0.03466796875, + 0.01171875, + -0.01031494140625, + 0.0086669921875, + -0.0306396484375, + 0.0218505859375, + -0.04248046875, + -0.0250244140625, + 0.09814453125, + -0.0096435546875, + -0.0179443359375, + 0.018798828125, + 0.016357421875, + 0.0159912109375, + 0.103515625, + -0.0159912109375, + -0.0191650390625, + -0.033935546875, + -0.04150390625, + 0.0201416015625, + -0.00885009765625, + 0.0169677734375, + -0.025634765625, + 0.00750732421875, + 0.014404296875, + 0.0023956298828125, + 0.035888671875, + -0.0012359619140625, + -0.005950927734375, + -0.022705078125, + -0.0242919921875, + 0.01531982421875, + 0.006683349609375, + -0.002471923828125, + 0.038330078125, + 0.02587890625, + 0.0002498626708984375, + 0.029296875, + -0.00714111328125, + 0.054931640625, + -0.058349609375, + -0.0013885498046875, + 0.00836181640625, + -0.0081787109375, + -0.0181884765625, + 0.0281982421875, + 0.005462646484375, + -0.0037994384765625, + -0.01611328125, + 0.03955078125, + -0.0277099609375, + 0.0306396484375, + 0.019287109375, + -0.0196533203125, + 0.0283203125, + -0.0234375, + -0.035888671875, + -0.035400390625, + -0.043701171875, + -0.01214599609375, + 0.0084228515625, + 0.0093994140625, + 0.025146484375, + -0.00799560546875, + -0.041259765625, + 0.03125, + -0.01043701171875, + -0.000797271728515625, + 0.017578125, + 0.01129150390625, + -0.037353515625, + -0.01495361328125, + -0.00136566162109375, + 0.00970458984375, + 0.01129150390625, + -0.0294189453125, + -0.038330078125, + 0.0167236328125, + 0.053955078125, + 0.017333984375, + 0.007659912109375, + 0.00323486328125, + -0.01708984375, + -0.01458740234375, + 0.0189208984375, + -0.01611328125, + -0.03955078125, + 0.0159912109375, + -0.040771484375, + 0.00787353515625, + -0.06298828125, + 0.0009918212890625, + -0.003997802734375, + -0.0498046875, + 0.053955078125, + 0.0220947265625, + -0.0184326171875, + -0.0303955078125, + 0.0419921875, + -0.01318359375, + 0.04638671875, + -0.045654296875, + 0.022216796875, + -0.00714111328125, + 0.01165771484375, + -0.00885009765625, + -0.025634765625, + 0.06591796875, + -0.018798828125, + -0.052734375, + -4.506111145019531e-05, + -0.02587890625, + 0.0087890625, + 0.01519775390625, + 0.00110626220703125, + -0.0341796875, + 0.037841796875, + 0.00152587890625, + -0.01129150390625, + -0.005859375, + -0.028564453125, + -0.0035400390625, + -0.043212890625, + -0.06298828125, + 0.017578125, + 0.02001953125, + 0.0101318359375, + 0.0172119140625, + -0.0152587890625, + 0.032958984375, + -0.0225830078125, + 0.0206298828125, + 0.0093994140625, + 0.007354736328125, + 0.045166015625, + 0.0225830078125, + 0.015380859375, + 0.023193359375, + -0.0125732421875, + -0.049072265625, + 0.0189208984375, + -0.03955078125, + -0.015380859375, + -0.035888671875, + -0.00628662109375, + 0.01470947265625, + -0.01953125, + -0.0322265625, + -0.0174560546875, + -0.0218505859375, + -0.004425048828125, + 0.038330078125, + -0.00360107421875, + -0.0216064453125, + -0.03076171875, + -0.00677490234375, + -0.0306396484375, + -0.0213623046875, + -0.000507354736328125, + 0.0419921875, + -0.0012359619140625, + -0.02099609375, + -0.0380859375, + -0.019287109375, + -0.0201416015625, + 0.0213623046875, + 0.0274658203125, + -0.0191650390625, + 0.016357421875, + -0.041748046875, + -0.043701171875, + -0.03759765625, + -0.017333984375, + -0.0283203125, + 0.0087890625, + 0.030517578125, + 0.0294189453125, + -0.0081787109375, + 0.045654296875, + 0.033447265625, + -0.0179443359375, + 0.0042724609375, + 0.03466796875, + -0.0208740234375, + -0.01507568359375, + 0.04541015625, + -0.01287841796875, + -0.017578125, + -0.004486083984375, + 0.006683349609375, + 0.03662109375, + -0.01348876953125, + 0.033203125, + -0.0050048828125, + 0.031005859375, + 0.0028839111328125, + 0.07421875, + -0.0172119140625, + -0.016357421875, + -0.0103759765625, + -0.03955078125, + -0.037841796875, + -0.03515625, + -0.0439453125, + 0.01495361328125, + 0.037841796875, + 0.046875, + 0.01190185546875, + 0.00958251953125, + -0.0751953125, + -0.01080322265625, + -0.134765625, + 0.0419921875, + -0.01068115234375, + -0.03271484375, + -0.00933837890625, + 0.01190185546875, + -0.05224609375, + 0.00390625, + -0.048828125, + -0.01708984375, + 0.00034332275390625, + 0.0311279296875, + 0.1044921875, + -0.0113525390625, + -0.00457763671875, + -0.020751953125, + -0.05615234375, + -0.017333984375, + 0.032470703125, + 0.05615234375, + 0.04736328125, + -0.0068359375, + 0.01806640625, + 0.00982666015625, + -0.021484375, + -0.0228271484375, + -0.04248046875, + -0.026123046875, + -0.025146484375, + 0.02197265625, + -0.0157470703125, + -0.044921875, + 0.0400390625, + 0.0380859375, + 0.003814697265625, + -0.00848388671875, + 0.031494140625, + -0.03466796875, + -0.00897216796875, + -0.005828857421875, + -0.01708984375, + 0.00897216796875, + -0.02734375, + 0.0218505859375, + 0.0032806396484375, + 0.020751953125, + -0.05224609375, + -0.0277099609375, + -0.03173828125, + 0.031494140625, + -0.06640625, + 0.035888671875, + 0.002685546875, + -0.0167236328125, + 0.038818359375, + -0.033935546875, + -0.01043701171875, + -0.0093994140625, + 0.0086669921875, + 0.057373046875, + -0.0140380859375, + -0.0269775390625, + -0.0281982421875, + -0.040771484375, + 0.0208740234375, + -0.01165771484375, + -0.068359375, + 0.0086669921875, + 0.021484375, + -0.0068359375, + -0.03564453125, + -0.02734375, + 0.0291748046875, + 0.00616455078125, + 0.0169677734375, + -0.010498046875, + 0.031005859375, + -0.03955078125, + -0.033203125, + -0.033935546875, + -0.04296875, + -0.03271484375, + 0.00127410888671875, + -0.0159912109375, + 0.00885009765625, + 0.02099609375, + -0.015380859375, + -0.04052734375, + 0.0203857421875, + 0.005706787109375, + -0.078125, + 0.0240478515625, + -0.0322265625, + -0.007049560546875, + 0.0028839111328125, + 0.003204345703125, + -0.0245361328125, + 0.004119873046875, + 0.00946044921875, + -0.01318359375, + -0.040771484375, + -0.004730224609375, + 0.0218505859375, + 0.0191650390625, + 0.003997802734375, + 0.01373291015625, + -0.005767822265625, + 0.01123046875, + -0.010498046875, + -0.036376953125, + 0.0072021484375, + -0.000629425048828125, + -0.051513671875, + -0.04541015625, + -0.00909423828125, + -0.02734375, + 0.0169677734375, + -0.0341796875, + -0.032470703125, + -0.002227783203125, + -0.052978515625, + 0.0087890625, + 0.0166015625, + -0.0162353515625, + -0.03271484375, + -0.016357421875, + 0.064453125, + 0.0264892578125, + -0.02099609375, + 0.056640625, + 0.0283203125, + -0.005645751953125, + -0.00091552734375, + 0.0311279296875, + -0.0023651123046875, + 0.020263671875, + -0.03564453125, + 0.00091552734375, + -0.00689697265625, + -0.0098876953125, + 0.0172119140625, + 0.026123046875, + 0.002532958984375, + -0.0255126953125, + -0.0264892578125, + 0.052978515625, + 0.050048828125, + -0.0172119140625, + -0.005462646484375, + 0.03759765625, + 0.0213623046875, + -0.00933837890625, + -0.016845703125, + 0.05712890625, + 0.01409912109375, + 0.0306396484375, + 0.0152587890625, + -0.004150390625, + -0.0262451171875, + 0.062255859375, + -0.00787353515625, + -0.0125732421875, + -0.010498046875, + -0.032470703125, + 0.0279541015625, + 0.01348876953125, + 0.01153564453125, + 0.01171875, + 0.0098876953125, + 0.03955078125, + 0.0169677734375, + 0.060791015625, + -0.0262451171875, + -0.01031494140625, + -0.002532958984375, + -0.034423828125, + 0.00579833984375, + -0.03662109375, + 0.01434326171875, + 0.03271484375, + 0.005828857421875, + 0.0244140625, + 0.040771484375, + -0.004791259765625, + 0.045166015625, + 0.05224609375, + -0.0021209716796875, + 0.04541015625, + 0.017333984375, + 0.00555419921875, + -0.00145721435546875, + -0.0089111328125, + -0.0654296875, + -0.0380859375, + 0.0634765625, + -0.0135498046875, + 0.00555419921875, + 0.033935546875, + 0.0140380859375, + 0.0517578125, + -0.035888671875, + 0.0240478515625, + 0.033935546875, + -0.006256103515625, + -0.030029296875, + -0.0283203125, + 0.004058837890625, + 0.0059814453125, + -0.046142578125, + 0.0152587890625, + 0.0026092529296875, + -0.0147705078125, + -0.017578125, + 0.033447265625, + 0.0004177093505859375, + -0.020751953125, + -0.003265380859375, + -0.03173828125, + 0.00112152099609375, + 0.0218505859375, + 0.016357421875, + 0.08056640625, + -0.0242919921875, + -0.0009613037109375, + 0.0257568359375, + 0.039306640625, + -0.0079345703125, + -0.0101318359375, + 0.0135498046875, + 0.005035400390625, + 0.0169677734375, + -0.032958984375, + -0.01171875, + 0.053466796875, + -0.01806640625, + 0.004425048828125, + -0.037841796875, + 0.0203857421875, + -0.0234375, + -0.03955078125, + 0.06396484375, + 0.01470947265625, + 0.05224609375, + 0.061279296875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.568403999997372, + "queue_ms": 1.7165460000114763, + "tokenization_ms": 0.015039999993859965, + "inference_ms": 14.707634999993502, + "postprocessing_ms": null + } + }, + { + "id": "chunk-12", + "dense": [ + -0.0096435546875, + -0.01043701171875, + -0.060546875, + 0.005462646484375, + -0.017822265625, + -0.03515625, + -0.0322265625, + 0.02587890625, + -0.029052734375, + -0.015869140625, + 0.0059814453125, + -0.020751953125, + 0.033935546875, + 0.01190185546875, + 0.019775390625, + 0.0146484375, + 0.03662109375, + -0.029541015625, + -0.012939453125, + -0.0213623046875, + -1.5974044799804688e-05, + 0.0177001953125, + 0.0087890625, + 0.0654296875, + -0.000354766845703125, + 0.014404296875, + -0.06103515625, + -0.0238037109375, + 0.0260009765625, + 0.01611328125, + 0.0238037109375, + -0.068359375, + 0.0267333984375, + 0.004364013671875, + -0.05517578125, + -0.0247802734375, + 0.005889892578125, + 0.0194091796875, + -0.03369140625, + -0.01495361328125, + 0.01007080078125, + -0.0191650390625, + 0.0390625, + -0.0036773681640625, + -0.00095367431640625, + -0.04296875, + -0.0164794921875, + -0.0281982421875, + -0.0189208984375, + -0.046142578125, + -0.005218505859375, + 0.02197265625, + 0.04443359375, + -0.02197265625, + 0.0203857421875, + -0.005157470703125, + 0.0194091796875, + 0.007720947265625, + -0.06494140625, + -0.0123291015625, + 0.008056640625, + -0.00494384765625, + -0.0279541015625, + -0.045166015625, + 0.01153564453125, + 0.062255859375, + 0.000576019287109375, + 0.01483154296875, + -0.029296875, + -0.041259765625, + 0.0089111328125, + -0.0128173828125, + 0.0159912109375, + -0.034912109375, + -0.052490234375, + 0.05126953125, + 0.00177764892578125, + -0.034912109375, + -0.02880859375, + 0.01806640625, + 0.038330078125, + -0.00107574462890625, + -0.04638671875, + 0.013916015625, + 0.022705078125, + 0.034423828125, + -0.00848388671875, + 0.01806640625, + -0.01123046875, + 0.00042724609375, + 0.01953125, + 0.01556396484375, + 0.01904296875, + 0.004608154296875, + -0.05078125, + 0.0078125, + -0.00099945068359375, + 0.01220703125, + 0.0198974609375, + -0.00933837890625, + 0.01708984375, + -0.02587890625, + 0.01904296875, + -0.00152587890625, + 0.01312255859375, + -0.0498046875, + 0.05859375, + 0.036865234375, + 0.01239013671875, + 0.01220703125, + 0.0189208984375, + 0.0145263671875, + 0.044189453125, + -0.01129150390625, + -0.0419921875, + 0.022705078125, + -0.033203125, + -0.031982421875, + 0.01300048828125, + -0.05078125, + 0.029541015625, + 0.0216064453125, + 0.052978515625, + -0.052001953125, + -0.0272216796875, + -0.03173828125, + -0.033935546875, + -0.04150390625, + 0.0311279296875, + 0.011962890625, + -0.0390625, + 0.0296630859375, + 0.0184326171875, + 0.01312255859375, + -0.024169921875, + -0.056640625, + 0.005889892578125, + 0.05322265625, + 0.017578125, + -0.01507568359375, + 0.0072021484375, + 0.06787109375, + -0.05078125, + -0.054443359375, + 0.0546875, + -0.0169677734375, + -0.021484375, + -0.03173828125, + -0.000965118408203125, + -0.078125, + -0.004852294921875, + 0.0166015625, + 0.04150390625, + -0.01031494140625, + 9.250640869140625e-05, + -0.0025482177734375, + 0.0174560546875, + 0.061279296875, + 0.007415771484375, + 0.006561279296875, + 0.01324462890625, + 0.00115966796875, + -0.0081787109375, + 0.0179443359375, + 0.0673828125, + -0.007110595703125, + 0.0172119140625, + 0.052978515625, + -0.01348876953125, + 0.0128173828125, + 0.03271484375, + -0.060302734375, + 0.0260009765625, + -0.00074005126953125, + -0.00665283203125, + 0.0279541015625, + 0.0791015625, + 0.03271484375, + 0.029296875, + -0.0289306640625, + -0.00579833984375, + 0.0016632080078125, + -0.01348876953125, + 0.034423828125, + -0.030517578125, + 0.037109375, + 0.00689697265625, + -0.044921875, + 0.024169921875, + -0.03173828125, + -0.00015163421630859375, + -0.016845703125, + 0.017333984375, + -0.003692626953125, + 0.0830078125, + -0.016845703125, + 0.037841796875, + -0.01806640625, + -0.0260009765625, + -0.043701171875, + -0.0030975341796875, + 0.0255126953125, + 0.04833984375, + 0.027587890625, + -0.04296875, + 0.006683349609375, + -0.0284423828125, + -0.00145721435546875, + 0.016357421875, + -0.07421875, + 0.01446533203125, + -0.0118408203125, + 0.00616455078125, + -0.0252685546875, + -0.01397705078125, + 0.007659912109375, + -0.005523681640625, + -0.01129150390625, + -0.032958984375, + -0.0213623046875, + 0.016845703125, + 0.03271484375, + -0.03076171875, + -0.0201416015625, + -0.00830078125, + -0.01397705078125, + -0.01324462890625, + 0.04736328125, + 0.02880859375, + -0.027099609375, + 0.04150390625, + 0.019287109375, + -0.0194091796875, + 0.00022220611572265625, + 0.0264892578125, + 0.0208740234375, + -0.0023193359375, + 0.029541015625, + -0.031494140625, + 0.016845703125, + 0.0164794921875, + 0.0269775390625, + -0.022705078125, + 0.01611328125, + -0.023193359375, + -0.0029754638671875, + 0.0260009765625, + 0.0177001953125, + -0.03369140625, + -0.02734375, + 0.040283203125, + -0.00909423828125, + -0.05078125, + 0.00958251953125, + 0.0498046875, + 0.0299072265625, + -0.000736236572265625, + -0.02294921875, + 0.007049560546875, + 0.00689697265625, + 0.0390625, + 0.024169921875, + 0.029296875, + 0.0244140625, + 0.0279541015625, + -0.026611328125, + -0.031494140625, + -0.00164031982421875, + 0.029541015625, + -0.00909423828125, + -0.01806640625, + -0.0086669921875, + -0.052001953125, + 0.00531005859375, + -0.0020751953125, + 0.05322265625, + 0.00457763671875, + -0.029296875, + 0.037353515625, + 0.0196533203125, + 0.0218505859375, + -0.03271484375, + 0.0220947265625, + -0.00830078125, + 0.01513671875, + -0.04150390625, + -0.04541015625, + -0.03515625, + 0.0252685546875, + -0.0098876953125, + -0.00689697265625, + 0.021240234375, + 0.043701171875, + -0.0218505859375, + 0.0150146484375, + 0.0166015625, + -0.04931640625, + -0.1767578125, + 0.0003643035888671875, + -0.0146484375, + 0.00927734375, + 0.0284423828125, + 0.010986328125, + -0.03564453125, + -0.03564453125, + -0.02880859375, + -0.002532958984375, + -0.0142822265625, + -0.041748046875, + 0.01251220703125, + -0.052978515625, + -0.03759765625, + 0.00360107421875, + 0.0181884765625, + 0.01263427734375, + 0.04638671875, + -0.038818359375, + 0.005828857421875, + 0.03173828125, + 0.0203857421875, + 0.000812530517578125, + -0.0301513671875, + -0.007049560546875, + 0.046142578125, + -0.008544921875, + 0.02392578125, + -0.006683349609375, + -0.0164794921875, + 0.0260009765625, + -0.01556396484375, + 0.0301513671875, + -0.004608154296875, + 0.043701171875, + -0.0137939453125, + -0.034423828125, + 0.0146484375, + 0.060302734375, + 0.01806640625, + 0.083984375, + -0.0262451171875, + 0.00714111328125, + 0.01397705078125, + -0.0130615234375, + -0.01214599609375, + 0.0179443359375, + -0.052001953125, + -0.07177734375, + 0.00537109375, + -0.00188446044921875, + -0.0169677734375, + 0.00592041015625, + -0.01361083984375, + 0.006378173828125, + -0.004608154296875, + 0.00567626953125, + -0.056640625, + 0.041748046875, + -0.0390625, + -0.072265625, + -0.01348876953125, + -0.048828125, + -0.04638671875, + 0.0031585693359375, + 0.021240234375, + -0.006988525390625, + 0.029541015625, + -0.050537109375, + 0.0166015625, + 0.0296630859375, + 0.01263427734375, + -0.002288818359375, + 0.02294921875, + 0.0712890625, + -0.0135498046875, + -0.052001953125, + -0.00872802734375, + -0.1162109375, + -0.054443359375, + 0.035888671875, + 0.012939453125, + -0.008056640625, + -0.0269775390625, + -0.010986328125, + 0.00567626953125, + 0.0081787109375, + 0.0634765625, + 0.2392578125, + 0.041259765625, + -0.049560546875, + -0.01220703125, + 0.004180908203125, + -0.0184326171875, + -0.029052734375, + -0.026611328125, + -0.03857421875, + -0.037841796875, + -0.048583984375, + 0.050537109375, + 0.01544189453125, + 0.00885009765625, + -0.0145263671875, + -0.0137939453125, + -0.0272216796875, + 0.0021209716796875, + 0.0986328125, + 0.019775390625, + 0.03662109375, + 0.033447265625, + 0.02783203125, + -0.019775390625, + -0.05322265625, + -0.001312255859375, + -0.025390625, + 0.0277099609375, + 0.0244140625, + -0.0089111328125, + -0.0252685546875, + 0.033935546875, + 0.037841796875, + -0.026611328125, + -0.0166015625, + 0.038818359375, + 0.01019287109375, + -0.00933837890625, + 0.046142578125, + 0.0242919921875, + 0.034912109375, + -0.0027313232421875, + -0.0033721923828125, + -0.0027313232421875, + 0.006683349609375, + -0.01190185546875, + 0.03271484375, + -0.000568389892578125, + -0.00579833984375, + 0.0341796875, + -0.023193359375, + -0.0137939453125, + -0.00848388671875, + -0.000827789306640625, + -0.0015411376953125, + 0.0107421875, + 0.00127410888671875, + -0.001220703125, + -0.016845703125, + 0.060546875, + 0.032958984375, + 0.0308837890625, + -0.0283203125, + 0.0089111328125, + 0.039306640625, + -0.000888824462890625, + -0.03369140625, + -0.040771484375, + -0.00154876708984375, + 0.029296875, + 0.033935546875, + 0.00023937225341796875, + 0.00860595703125, + 0.04443359375, + 0.0106201171875, + -0.04638671875, + -0.004669189453125, + 0.051025390625, + -0.020751953125, + -0.0203857421875, + -0.024169921875, + 0.00089263916015625, + -0.0250244140625, + -0.032470703125, + -0.002685546875, + 0.00885009765625, + 0.0458984375, + 0.044921875, + -0.005401611328125, + -0.0247802734375, + -0.006256103515625, + 0.0247802734375, + -0.060546875, + -0.00640869140625, + -0.0166015625, + 0.03857421875, + -0.0235595703125, + -0.0012054443359375, + -0.004852294921875, + 0.00787353515625, + -0.004852294921875, + -0.02392578125, + 0.01007080078125, + 0.042724609375, + -0.0361328125, + -0.00750732421875, + 0.006378173828125, + -0.00127410888671875, + 0.0225830078125, + 0.0028076171875, + -0.031494140625, + 0.0260009765625, + -0.0172119140625, + -0.037841796875, + 0.0673828125, + 0.0235595703125, + -0.06884765625, + 0.0189208984375, + -0.007110595703125, + 0.01275634765625, + -0.00299072265625, + -0.0206298828125, + 0.050048828125, + 0.0264892578125, + 0.00750732421875, + -0.0157470703125, + -0.0164794921875, + -0.052978515625, + 0.0247802734375, + 0.043212890625, + 0.0264892578125, + -0.0238037109375, + -0.041259765625, + -0.01312255859375, + 0.046630859375, + 0.0361328125, + 0.0013427734375, + -0.0030364990234375, + -0.022705078125, + 0.0184326171875, + -0.0301513671875, + -0.0052490234375, + -0.0098876953125, + -0.0213623046875, + -0.0093994140625, + -0.0224609375, + -0.028564453125, + -0.0146484375, + -0.032958984375, + 0.01129150390625, + 0.021484375, + 0.0216064453125, + 0.02294921875, + -0.050048828125, + -0.03662109375, + -0.008056640625, + -0.02197265625, + -0.03857421875, + -0.01397705078125, + -0.03271484375, + 0.017578125, + 0.0272216796875, + -0.037841796875, + 0.033203125, + 0.0284423828125, + 0.020751953125, + -0.01348876953125, + 0.0162353515625, + 0.02294921875, + -0.0615234375, + -0.005950927734375, + -0.0030517578125, + -0.00579833984375, + -0.0084228515625, + -0.014404296875, + -0.017822265625, + -0.0859375, + -0.00162506103515625, + -0.01177978515625, + 0.008056640625, + 0.03759765625, + 0.021484375, + -0.05712890625, + 0.01708984375, + 0.0166015625, + 0.0047607421875, + 0.006378173828125, + -0.026611328125, + -0.00151824951171875, + -0.037353515625, + -0.04833984375, + 0.0849609375, + -0.030029296875, + -0.017578125, + 0.005645751953125, + 0.01251220703125, + 0.0311279296875, + 0.06640625, + 0.016845703125, + -0.00103759765625, + -0.0361328125, + -0.05126953125, + 0.000244140625, + -0.007476806640625, + 0.0179443359375, + -0.0233154296875, + 0.0079345703125, + -0.000690460205078125, + -0.01361083984375, + 0.0250244140625, + 0.01611328125, + 0.00494384765625, + -0.0272216796875, + -0.01312255859375, + 0.0220947265625, + -0.0201416015625, + 0.004608154296875, + 0.044189453125, + 0.02587890625, + -0.039794921875, + 0.033203125, + 0.01251220703125, + 0.0458984375, + -0.049560546875, + -0.000812530517578125, + -0.00927734375, + 0.00555419921875, + -0.030517578125, + 0.01019287109375, + 0.03369140625, + -0.00090789794921875, + -0.03662109375, + 0.0218505859375, + -0.045166015625, + 0.0201416015625, + -0.00439453125, + -0.0181884765625, + 0.0267333984375, + 0.0064697265625, + -0.0361328125, + -0.0157470703125, + -0.06787109375, + -0.0004329681396484375, + 0.008544921875, + 0.0086669921875, + 0.0118408203125, + -0.0031585693359375, + -0.00244140625, + 0.017333984375, + -0.0167236328125, + -0.00958251953125, + 0.006317138671875, + 0.0203857421875, + -0.06884765625, + -0.0206298828125, + 0.0169677734375, + 0.0296630859375, + 0.0174560546875, + 0.006256103515625, + 0.003265380859375, + -0.019775390625, + 0.0361328125, + 0.00994873046875, + -0.00799560546875, + -0.003570556640625, + -0.0023345947265625, + -0.01165771484375, + 0.033935546875, + -0.0181884765625, + -0.08349609375, + 0.02783203125, + -0.03466796875, + 0.0007781982421875, + -0.0546875, + 0.002197265625, + 0.0311279296875, + -0.052001953125, + 0.06494140625, + 0.0361328125, + -0.0201416015625, + -0.00726318359375, + 0.0185546875, + -0.003570556640625, + 0.07080078125, + -0.033935546875, + -0.007354736328125, + -0.0247802734375, + 0.0250244140625, + 0.00830078125, + -0.0078125, + 0.06982421875, + -0.03271484375, + -0.04248046875, + -0.022216796875, + -0.0098876953125, + -0.00653076171875, + -0.0091552734375, + 0.022705078125, + -0.033203125, + 0.03369140625, + 0.01007080078125, + 0.00555419921875, + 0.000881195068359375, + -0.044921875, + -0.0101318359375, + -0.03564453125, + -0.037353515625, + -0.00176239013671875, + 0.01495361328125, + 0.0162353515625, + 0.0152587890625, + 0.00494384765625, + 0.01123046875, + 0.01043701171875, + 0.005767822265625, + -0.004608154296875, + -0.012939453125, + 0.047119140625, + 0.0072021484375, + 0.031982421875, + -0.00518798828125, + -0.0174560546875, + -0.03515625, + -0.01483154296875, + -0.03857421875, + -0.0225830078125, + -0.01220703125, + 0.005157470703125, + 0.016357421875, + -0.01416015625, + -0.04931640625, + -0.023681640625, + 0.01129150390625, + -0.001708984375, + 0.045166015625, + -0.004425048828125, + 0.000888824462890625, + 0.00726318359375, + 0.01409912109375, + -0.02490234375, + 0.01556396484375, + -0.000400543212890625, + 0.06005859375, + -0.015625, + -0.00897216796875, + -0.019775390625, + -0.025634765625, + -0.031494140625, + 0.021240234375, + 0.0031585693359375, + 0.0021820068359375, + 0.01611328125, + -0.031982421875, + -0.04541015625, + -0.06640625, + -0.029052734375, + -0.0081787109375, + 0.0198974609375, + -0.007659912109375, + 0.026611328125, + 0.0220947265625, + 0.0634765625, + 0.0123291015625, + 0.0157470703125, + -0.0123291015625, + 0.0281982421875, + -0.00921630859375, + 0.00946044921875, + 0.044921875, + -0.0157470703125, + -0.02294921875, + 0.005828857421875, + -0.00421142578125, + 0.0137939453125, + -0.00567626953125, + 0.05810546875, + -0.0013885498046875, + 0.006103515625, + -0.006500244140625, + 0.06689453125, + -0.0279541015625, + -0.0308837890625, + 0.01446533203125, + -0.03955078125, + -0.0322265625, + -0.020263671875, + -0.0517578125, + -0.0213623046875, + 0.030029296875, + 0.046630859375, + -0.034423828125, + -0.01190185546875, + -0.06494140625, + -0.0150146484375, + -0.140625, + 0.0615234375, + 0.0169677734375, + -0.01153564453125, + 0.006256103515625, + 0.014404296875, + -0.047607421875, + 0.005218505859375, + -0.03564453125, + -0.00927734375, + 0.00994873046875, + -0.00090789794921875, + 0.083984375, + -0.031982421875, + -0.02783203125, + -0.00799560546875, + -0.03955078125, + -0.0030517578125, + 0.0260009765625, + 0.047119140625, + 0.035400390625, + 0.00762939453125, + 0.0267333984375, + -0.007781982421875, + 0.0016937255859375, + -0.03955078125, + -0.01806640625, + -0.042724609375, + -0.022705078125, + -0.005767822265625, + -0.00823974609375, + -0.0439453125, + 0.0186767578125, + 0.039794921875, + 0.0203857421875, + -0.000308990478515625, + 0.037109375, + -0.030029296875, + -0.007568359375, + 0.00531005859375, + -0.018798828125, + 0.005523681640625, + -0.0576171875, + -0.0111083984375, + -0.0269775390625, + 0.00140380859375, + -0.0546875, + -0.0244140625, + -0.0034637451171875, + 0.01214599609375, + -0.0615234375, + 0.01544189453125, + -0.0107421875, + -0.0186767578125, + 0.0283203125, + -0.004058837890625, + -0.006683349609375, + -0.01483154296875, + 0.00762939453125, + 0.0751953125, + 0.0126953125, + -0.01806640625, + -0.0283203125, + -0.05224609375, + 0.020751953125, + 0.006317138671875, + -0.06103515625, + 0.02294921875, + 0.0267333984375, + -0.021240234375, + -0.03662109375, + 0.00176239013671875, + 0.0380859375, + 0.00054931640625, + -0.0040283203125, + -0.041259765625, + 0.00188446044921875, + -0.01531982421875, + -0.034912109375, + -0.03955078125, + -0.05810546875, + -0.043701171875, + 0.004852294921875, + -0.027099609375, + 0.023681640625, + 0.011474609375, + 0.00909423828125, + -0.03759765625, + -0.0120849609375, + 0.002288818359375, + -0.09228515625, + -0.001983642578125, + -0.0262451171875, + 0.0311279296875, + -0.01092529296875, + 0.01300048828125, + -0.0220947265625, + 0.005462646484375, + 0.021240234375, + -0.002685546875, + -0.041259765625, + 0.040283203125, + 0.011474609375, + 0.01556396484375, + 0.00970458984375, + -0.01336669921875, + 0.0289306640625, + -0.00811767578125, + 0.01031494140625, + -0.00122833251953125, + -0.006500244140625, + 0.00872802734375, + -0.041259765625, + -0.05712890625, + -0.0057373046875, + -0.0159912109375, + 0.0296630859375, + -0.05224609375, + -0.035400390625, + 0.01806640625, + -0.013671875, + -0.013671875, + 0.031494140625, + -0.0159912109375, + -0.02197265625, + 0.00982666015625, + 0.068359375, + 0.038330078125, + -0.0247802734375, + 0.034912109375, + 0.0242919921875, + -0.0390625, + 0.00244140625, + 0.041259765625, + -0.0198974609375, + 0.017578125, + -0.02294921875, + -0.00347900390625, + -0.014404296875, + -0.02392578125, + 0.008544921875, + 0.02783203125, + 0.044189453125, + -0.0322265625, + -0.00347900390625, + 0.0255126953125, + 0.064453125, + -0.0101318359375, + 0.0096435546875, + 0.01263427734375, + 0.006195068359375, + -0.006927490234375, + -0.013671875, + 0.052490234375, + 0.0322265625, + 0.0184326171875, + 0.030517578125, + 0.0026092529296875, + -0.022216796875, + 0.00604248046875, + -0.02783203125, + -0.01007080078125, + -0.023193359375, + -0.00970458984375, + 0.01043701171875, + 0.0235595703125, + 0.027099609375, + 0.0069580078125, + -0.0272216796875, + 0.053466796875, + 0.041748046875, + 0.041748046875, + -0.0203857421875, + -0.0169677734375, + 0.00994873046875, + -0.056884765625, + -0.00174713134765625, + -0.029296875, + 0.0198974609375, + 0.0216064453125, + 0.01953125, + 0.0322265625, + 0.037841796875, + 0.000720977783203125, + 0.044921875, + 0.07373046875, + 0.01409912109375, + 0.03271484375, + 0.0120849609375, + -0.0113525390625, + 0.005096435546875, + -0.012451171875, + -0.05126953125, + -0.061279296875, + 0.059814453125, + -0.012451171875, + 0.004425048828125, + 0.055419921875, + 0.0087890625, + 0.04296875, + -0.0252685546875, + 0.0220947265625, + 0.023681640625, + -0.0103759765625, + -0.024169921875, + 0.0084228515625, + -0.00122833251953125, + 0.033203125, + -0.0299072265625, + 0.01806640625, + -0.030517578125, + -0.0269775390625, + 0.0262451171875, + 0.02392578125, + -0.017578125, + -0.0101318359375, + -0.016845703125, + -0.02490234375, + -0.00201416015625, + 0.0169677734375, + -0.01043701171875, + 0.05078125, + 0.0166015625, + -0.03076171875, + 0.0029754638671875, + 0.0174560546875, + -0.0244140625, + 0.00518798828125, + -0.0023956298828125, + 0.0174560546875, + 0.017822265625, + -0.008056640625, + -0.0012359619140625, + 0.03515625, + -0.01220703125, + -0.0084228515625, + -0.031494140625, + 0.009521484375, + -0.00494384765625, + -0.01190185546875, + 0.0272216796875, + -0.00135040283203125, + 0.0361328125, + 0.06640625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 13.331344999997441, + "queue_ms": 0.0751510000043254, + "tokenization_ms": 0.014700000008360803, + "inference_ms": 13.140731000007122, + "postprocessing_ms": null + } + }, + { + "id": "chunk-13", + "dense": [ + 0.0185546875, + -0.00323486328125, + -0.054443359375, + 0.06298828125, + -0.046875, + -0.0576171875, + 0.007720947265625, + -0.0218505859375, + -0.0086669921875, + -0.0169677734375, + -0.0286865234375, + 0.004608154296875, + -0.0037841796875, + -0.005096435546875, + 0.05029296875, + 0.0172119140625, + 0.040771484375, + -0.05029296875, + 0.002716064453125, + -0.021240234375, + -0.000766754150390625, + -0.003814697265625, + -0.005126953125, + 0.062255859375, + 0.00069427490234375, + 0.01080322265625, + -0.043701171875, + 0.0069580078125, + 0.039794921875, + 0.01373291015625, + 0.031494140625, + -0.044189453125, + 0.007080078125, + -0.01104736328125, + -0.0693359375, + 0.00799560546875, + 0.0013885498046875, + 0.0260009765625, + -0.0478515625, + -0.01483154296875, + -0.022705078125, + -0.027099609375, + 0.022705078125, + 0.037109375, + 0.0145263671875, + -0.03076171875, + -0.0311279296875, + -0.0198974609375, + -0.0235595703125, + -0.044677734375, + 0.033203125, + -0.0152587890625, + 0.0272216796875, + -0.017822265625, + 0.02294921875, + -0.00445556640625, + 0.0076904296875, + 0.00183868408203125, + -0.057373046875, + -0.034912109375, + -0.01361083984375, + -0.005401611328125, + -0.00457763671875, + -0.0218505859375, + -0.025146484375, + 0.08349609375, + 0.06396484375, + 0.007110595703125, + -0.02294921875, + -0.0294189453125, + -0.04052734375, + -0.031494140625, + 0.004180908203125, + 0.004150390625, + -0.045654296875, + 0.033447265625, + -0.007659912109375, + -0.00921630859375, + 0.00408935546875, + 0.035400390625, + 0.04296875, + -0.01312255859375, + -0.033203125, + 0.01031494140625, + 0.054443359375, + 0.02392578125, + -0.033935546875, + 0.01446533203125, + 0.00090789794921875, + -0.0194091796875, + 0.006134033203125, + 0.0101318359375, + 0.024658203125, + -0.04345703125, + -0.03271484375, + 0.01263427734375, + -0.01422119140625, + -0.00130462646484375, + 0.0274658203125, + 0.01092529296875, + -0.0032958984375, + -0.032470703125, + 0.01177978515625, + -0.0091552734375, + 0.041748046875, + -0.033935546875, + 0.04931640625, + 0.03125, + -0.004913330078125, + 0.00128173828125, + 0.034912109375, + 0.022705078125, + 0.045654296875, + 0.00140380859375, + -0.04296875, + 0.0021514892578125, + -0.04443359375, + -0.043701171875, + 0.0159912109375, + -0.043701171875, + 0.037353515625, + 0.041015625, + -0.00640869140625, + -0.0250244140625, + -0.0283203125, + -0.04443359375, + 0.0185546875, + -0.049072265625, + 0.00836181640625, + 0.01055908203125, + 0.004302978515625, + -0.01226806640625, + -0.006591796875, + -0.005218505859375, + -0.0223388671875, + -0.029296875, + -0.0206298828125, + 0.032958984375, + 0.0235595703125, + -0.0634765625, + 0.02294921875, + 0.03076171875, + -0.056396484375, + -0.0283203125, + 0.05859375, + -0.033935546875, + 0.029052734375, + -0.043701171875, + 0.00872802734375, + -0.0654296875, + -0.00360107421875, + 0.004730224609375, + 0.034912109375, + -0.048095703125, + -0.0181884765625, + 0.029541015625, + 0.021728515625, + 0.061767578125, + -0.0250244140625, + -0.0184326171875, + 0.005615234375, + -0.0260009765625, + 0.00628662109375, + -0.0028839111328125, + 0.05517578125, + -0.0038299560546875, + 0.00897216796875, + 0.0478515625, + -0.0283203125, + 0.0218505859375, + 0.029541015625, + -0.0281982421875, + -0.0174560546875, + -0.0174560546875, + -0.005157470703125, + 0.0263671875, + 0.05810546875, + 0.0181884765625, + 0.01361083984375, + -0.04296875, + 0.01953125, + -0.01470947265625, + -0.002349853515625, + 0.029541015625, + -0.0517578125, + 0.0301513671875, + 0.01312255859375, + -0.0240478515625, + 0.006103515625, + -0.0027313232421875, + -0.004669189453125, + 0.01611328125, + -0.004486083984375, + 0.0111083984375, + 0.045654296875, + -0.026611328125, + 0.044677734375, + 0.004547119140625, + -0.0206298828125, + -0.031494140625, + -0.010498046875, + 0.0029296875, + 0.0380859375, + 0.0281982421875, + -0.037109375, + 0.0150146484375, + -0.006439208984375, + -0.004669189453125, + 0.004913330078125, + -0.07958984375, + -0.0167236328125, + -0.00958251953125, + 0.0196533203125, + -0.0380859375, + -0.02099609375, + 0.0235595703125, + 0.013916015625, + -0.031982421875, + -0.041015625, + -0.017333984375, + 0.0020294189453125, + 0.04052734375, + -0.04833984375, + -0.0125732421875, + -0.00186920166015625, + -0.0194091796875, + 0.0240478515625, + 0.047119140625, + 0.059814453125, + 0.0025634765625, + 0.06884765625, + 0.052490234375, + 0.0250244140625, + 0.0098876953125, + -0.007110595703125, + 0.039306640625, + -0.0220947265625, + 0.0277099609375, + -0.0093994140625, + -0.000461578369140625, + 0.01300048828125, + 0.06396484375, + -0.00347900390625, + 0.0184326171875, + -0.0262451171875, + -0.0179443359375, + 0.0181884765625, + 0.0084228515625, + -0.0172119140625, + 0.00665283203125, + 0.0277099609375, + -0.0205078125, + -0.057373046875, + -0.01080322265625, + 0.05078125, + 0.05126953125, + -0.00830078125, + -0.01220703125, + 0.01416015625, + 0.033203125, + 0.03955078125, + 0.03076171875, + 0.01904296875, + 0.0072021484375, + 0.0400390625, + 0.005096435546875, + -0.04443359375, + -0.004364013671875, + 0.0810546875, + -0.03564453125, + -0.005950927734375, + -0.022216796875, + -0.036865234375, + 0.0277099609375, + 0.00994873046875, + 0.0311279296875, + 0.005584716796875, + -0.03466796875, + 0.004241943359375, + -0.007049560546875, + 0.044189453125, + -0.0184326171875, + 0.007659912109375, + -0.0189208984375, + 0.0024261474609375, + -0.06298828125, + -0.0693359375, + -0.01373291015625, + 0.0169677734375, + 0.006591796875, + -0.0252685546875, + 0.004364013671875, + 0.052978515625, + -0.01611328125, + 0.03173828125, + 0.0135498046875, + -0.0296630859375, + -0.1728515625, + -0.0050048828125, + -0.0081787109375, + 0.01080322265625, + 0.01141357421875, + 0.0185546875, + -0.004974365234375, + -0.056396484375, + -0.006195068359375, + -0.01177978515625, + -0.00830078125, + -0.041259765625, + 0.03125, + -0.034423828125, + -0.0223388671875, + 0.0257568359375, + -0.00238037109375, + -0.04345703125, + 0.03759765625, + -0.047119140625, + 0.010498046875, + 0.0537109375, + 0.031494140625, + 0.00897216796875, + -0.046875, + 0.0634765625, + 0.058837890625, + 0.01220703125, + 0.029052734375, + -0.01171875, + -0.00148773193359375, + -0.00994873046875, + -0.0211181640625, + 0.06787109375, + -0.0093994140625, + 0.027099609375, + 0.00921630859375, + -0.04833984375, + 0.044189453125, + 0.0322265625, + 0.047607421875, + 0.06298828125, + -0.02099609375, + -0.01483154296875, + 0.031982421875, + 0.0037078857421875, + 0.00408935546875, + 0.0224609375, + -0.06787109375, + -0.0615234375, + 0.01385498046875, + -0.0125732421875, + -0.0220947265625, + 0.002410888671875, + -0.01239013671875, + 0.03466796875, + -0.004669189453125, + 0.01495361328125, + -0.0615234375, + 0.01507568359375, + -0.01409912109375, + -0.058837890625, + -0.0230712890625, + 0.005889892578125, + 0.000492095947265625, + 0.0174560546875, + -0.005859375, + -0.0040283203125, + 0.015625, + -0.0301513671875, + 0.006256103515625, + 0.044189453125, + 0.017578125, + 0.0262451171875, + -0.00128173828125, + 0.06640625, + -0.039794921875, + -0.05517578125, + -0.019775390625, + -0.09814453125, + -0.0576171875, + 0.0108642578125, + -0.01251220703125, + -0.0517578125, + -0.009033203125, + -0.0250244140625, + 0.00958251953125, + 0.0223388671875, + 0.057861328125, + 0.2373046875, + 0.044677734375, + -0.0286865234375, + -0.007659912109375, + -0.00299072265625, + -0.0146484375, + -0.06884765625, + -0.041259765625, + -0.029296875, + -0.017822265625, + -0.02880859375, + 0.0390625, + 0.01025390625, + 0.00286865234375, + -0.017333984375, + -0.0093994140625, + -2.9325485229492188e-05, + 0.0181884765625, + 0.08984375, + 0.00689697265625, + 0.049072265625, + 0.0238037109375, + 0.04052734375, + -0.03955078125, + -0.02099609375, + 0.0005950927734375, + -0.0167236328125, + 0.052490234375, + 0.00616455078125, + -0.0140380859375, + -0.0113525390625, + -0.0067138671875, + 0.01019287109375, + 0.002166748046875, + -0.029541015625, + 0.043701171875, + 0.0033111572265625, + -0.037353515625, + 0.01422119140625, + 0.039306640625, + -0.01300048828125, + -0.003143310546875, + -0.007781982421875, + -0.06787109375, + 0.0220947265625, + 0.0019989013671875, + 0.0140380859375, + -0.00189208984375, + -0.0159912109375, + 0.037841796875, + -0.046875, + 0.037841796875, + 0.0128173828125, + -0.0274658203125, + 0.00732421875, + 0.0206298828125, + -0.01544189453125, + 0.0240478515625, + 0.0031585693359375, + 0.051513671875, + 0.0196533203125, + 0.0228271484375, + 0.0023193359375, + 0.022216796875, + 0.00634765625, + 0.007049560546875, + 0.0185546875, + -0.03564453125, + -0.00689697265625, + 0.01904296875, + 0.03955078125, + 0.010009765625, + -0.033447265625, + 0.0308837890625, + 0.0250244140625, + -0.0458984375, + 0.038818359375, + 0.08203125, + 0.0126953125, + 0.0098876953125, + -0.0146484375, + -0.021240234375, + -0.06787109375, + -0.039794921875, + -0.0023651123046875, + 0.017822265625, + 0.057373046875, + 0.061279296875, + -0.033935546875, + 0.0238037109375, + -0.00445556640625, + 0.049072265625, + -0.01904296875, + -0.0235595703125, + 0.00469970703125, + 0.0023040771484375, + 0.017333984375, + 0.0208740234375, + 0.031494140625, + 0.04931640625, + 0.0078125, + -0.0186767578125, + -0.0101318359375, + 0.046630859375, + 0.0274658203125, + -0.0284423828125, + -0.0009918212890625, + 0.016357421875, + -0.0281982421875, + -0.0147705078125, + -0.0203857421875, + 0.00732421875, + -0.024169921875, + -0.056884765625, + 0.061279296875, + 0.025146484375, + -0.0286865234375, + 0.0028076171875, + 0.0101318359375, + -0.00531005859375, + 0.0205078125, + -0.00677490234375, + 0.0302734375, + 0.0108642578125, + 0.0023193359375, + -0.029052734375, + -0.01165771484375, + -0.045654296875, + 0.041259765625, + 0.04345703125, + 0.00885009765625, + -0.0022430419921875, + -0.02587890625, + -0.01348876953125, + -0.00128936767578125, + 0.00994873046875, + 0.046630859375, + 0.0223388671875, + -0.03369140625, + 0.03271484375, + -0.007049560546875, + -0.025390625, + -0.0205078125, + -0.01806640625, + -0.0301513671875, + -0.0400390625, + -0.028076171875, + 0.007781982421875, + -0.0791015625, + -0.0128173828125, + 0.010009765625, + 0.003631591796875, + 0.029052734375, + -0.052734375, + -0.0341796875, + -0.003082275390625, + -0.029052734375, + -0.02685546875, + -0.01123046875, + -0.0159912109375, + 0.00750732421875, + 0.0625, + 0.01092529296875, + 0.01556396484375, + 0.0147705078125, + -0.00634765625, + -0.04296875, + 0.021240234375, + 0.0174560546875, + -0.047119140625, + -0.01123046875, + -0.03076171875, + 0.0031280517578125, + -0.005828857421875, + 0.04443359375, + 0.00567626953125, + -0.06396484375, + 0.006744384765625, + 0.00531005859375, + 0.01116943359375, + 0.00909423828125, + 0.0184326171875, + -0.037841796875, + 0.030517578125, + -0.028076171875, + 0.00787353515625, + -0.0233154296875, + -0.008544921875, + 0.01708984375, + -0.04443359375, + -0.064453125, + 0.08203125, + -0.0244140625, + 0.002685546875, + 0.01470947265625, + 0.00933837890625, + 0.015869140625, + 0.0458984375, + 0.0184326171875, + -0.01373291015625, + -0.044921875, + -0.0198974609375, + -0.006134033203125, + 0.00179290771484375, + 0.007354736328125, + -0.025146484375, + 0.005157470703125, + 0.0093994140625, + -0.005096435546875, + 0.002838134765625, + -0.0208740234375, + 0.0135498046875, + -0.006317138671875, + 0.016357421875, + 0.00921630859375, + -0.004730224609375, + 0.0654296875, + 0.0037689208984375, + 0.01141357421875, + -0.02001953125, + 0.048828125, + 0.011962890625, + 0.024169921875, + -0.054443359375, + -0.0150146484375, + 0.01361083984375, + -0.0146484375, + -0.029541015625, + 0.025390625, + 0.00738525390625, + 0.000598907470703125, + -0.0286865234375, + 0.029296875, + -0.007476806640625, + 0.00750732421875, + 0.01513671875, + -0.00634765625, + 0.0024261474609375, + 0.004547119140625, + -0.0274658203125, + -0.0269775390625, + -0.0294189453125, + -0.005096435546875, + 0.02099609375, + 0.057373046875, + 0.054443359375, + 0.0035400390625, + -0.0274658203125, + 0.02392578125, + -0.0299072265625, + -0.004180908203125, + 0.0206298828125, + -0.00909423828125, + -0.05859375, + 0.016845703125, + 0.01953125, + 0.043701171875, + -0.00157928466796875, + -0.037109375, + -0.01544189453125, + -0.0224609375, + 0.021484375, + 0.0005340576171875, + 0.03515625, + 0.0030517578125, + -0.027587890625, + -0.00433349609375, + 0.00421142578125, + -0.0164794921875, + -0.053955078125, + 0.00994873046875, + -0.044921875, + -0.007354736328125, + -0.062255859375, + -0.0107421875, + 0.0174560546875, + -0.024169921875, + 0.052001953125, + 0.0211181640625, + -0.004608154296875, + -0.033935546875, + 0.0283203125, + 0.0264892578125, + 0.04052734375, + -0.029541015625, + -0.01226806640625, + -0.01055908203125, + -0.005615234375, + 0.01141357421875, + -0.03466796875, + 0.03271484375, + -0.037109375, + -0.0299072265625, + 0.0289306640625, + -0.04345703125, + -0.0030975341796875, + 0.00390625, + 0.021484375, + -0.030517578125, + -0.0032806396484375, + 0.0230712890625, + -0.0284423828125, + -0.02587890625, + -0.0272216796875, + 0.040771484375, + -0.0196533203125, + -0.04052734375, + -0.0098876953125, + 0.03515625, + -0.0020751953125, + 0.05615234375, + -0.0120849609375, + 0.0098876953125, + 0.0194091796875, + 0.0084228515625, + -0.0224609375, + -0.0076904296875, + 0.0216064453125, + -0.00830078125, + 0.00830078125, + -0.00787353515625, + -0.0016937255859375, + -0.04345703125, + 0.035888671875, + 0.0284423828125, + -0.0004444122314453125, + -0.025634765625, + -0.03564453125, + 0.0002727508544921875, + -0.00017452239990234375, + -0.01019287109375, + -0.0133056640625, + -0.009765625, + -0.00726318359375, + 0.0172119140625, + -0.00494384765625, + 0.0038299560546875, + -0.0169677734375, + 0.01385498046875, + -0.0458984375, + -0.0162353515625, + -0.007568359375, + 0.037109375, + -0.0147705078125, + -0.0274658203125, + -0.0263671875, + -0.003204345703125, + 0.002777099609375, + 0.03564453125, + 0.02392578125, + 0.010498046875, + 0.0205078125, + -0.0040283203125, + -0.049560546875, + -0.0517578125, + -0.043701171875, + -0.02783203125, + 0.0189208984375, + 0.01171875, + 0.00665283203125, + 0.0089111328125, + 0.04443359375, + 0.02001953125, + 0.0057373046875, + 0.0023956298828125, + 0.0400390625, + -0.01348876953125, + -0.021240234375, + 0.0361328125, + -0.006866455078125, + -0.03125, + 0.010498046875, + 0.02587890625, + 0.0269775390625, + -0.0206298828125, + 0.012939453125, + 0.0289306640625, + -0.0015869140625, + -0.00482177734375, + 0.0111083984375, + 0.01092529296875, + -0.0032958984375, + 0.0069580078125, + -0.05517578125, + -0.017822265625, + -9.000301361083984e-06, + -0.05126953125, + -0.0113525390625, + 0.00677490234375, + 0.0064697265625, + -0.0172119140625, + -0.0035858154296875, + -0.0654296875, + -0.01171875, + -0.1435546875, + 0.037109375, + 0.01177978515625, + -0.041748046875, + 0.0025634765625, + 0.0198974609375, + -0.06640625, + -0.002197265625, + -0.029052734375, + -0.0220947265625, + 0.0081787109375, + 0.017578125, + 0.061767578125, + -0.00469970703125, + -0.037109375, + 0.0052490234375, + -0.0277099609375, + -0.00188446044921875, + -0.01116943359375, + 0.0244140625, + 0.03076171875, + -0.0283203125, + 0.060302734375, + -0.0167236328125, + -0.00799560546875, + -0.004302978515625, + -0.01513671875, + -0.039794921875, + -0.034423828125, + 0.021484375, + -0.00010061264038085938, + -0.0751953125, + 0.015869140625, + 0.04052734375, + 0.044921875, + 0.0133056640625, + 0.0380859375, + -0.0244140625, + -0.0250244140625, + 0.00909423828125, + 0.03515625, + 0.0011138916015625, + -0.039794921875, + -0.025390625, + -0.0189208984375, + 0.0198974609375, + -0.0147705078125, + -0.01165771484375, + -0.0028839111328125, + 0.00439453125, + -0.046630859375, + 0.017578125, + 0.0198974609375, + -0.0179443359375, + 0.038330078125, + -0.03564453125, + 0.00604248046875, + -0.0145263671875, + 0.004486083984375, + 0.03564453125, + 0.0478515625, + 0.0205078125, + -0.0400390625, + -0.0537109375, + 0.00787353515625, + -0.0113525390625, + -0.05810546875, + 0.0111083984375, + 0.037109375, + 0.0089111328125, + -0.05029296875, + 0.027587890625, + 0.0194091796875, + 0.0107421875, + -0.00191497802734375, + -0.04833984375, + 0.0380859375, + -0.026611328125, + -0.038818359375, + -0.038330078125, + -0.08642578125, + -0.040771484375, + -0.00360107421875, + -0.03466796875, + 0.0269775390625, + -0.002105712890625, + -0.0284423828125, + -0.01953125, + 0.0028839111328125, + 0.03125, + -0.09765625, + 0.001434326171875, + -0.01165771484375, + 0.04052734375, + -0.047607421875, + -0.005767822265625, + -0.029296875, + 0.006805419921875, + -0.031982421875, + -0.0247802734375, + -0.0361328125, + -0.01043701171875, + 0.01226806640625, + 0.00872802734375, + 0.0093994140625, + -0.0057373046875, + 0.0419921875, + 0.01708984375, + 0.0064697265625, + -0.017822265625, + 0.021728515625, + 0.01251220703125, + -0.03662109375, + -0.03662109375, + -0.024658203125, + -0.00494384765625, + 0.000308990478515625, + -0.041748046875, + -0.0262451171875, + 0.0126953125, + -0.024658203125, + 0.016845703125, + -0.00122833251953125, + -0.021728515625, + -0.01348876953125, + 0.0019989013671875, + 0.044677734375, + 0.0025787353515625, + -0.0186767578125, + 0.043212890625, + 0.020263671875, + -0.0152587890625, + 0.0052490234375, + 0.04345703125, + 0.004150390625, + 0.044921875, + -0.02587890625, + -0.0019683837890625, + -0.0089111328125, + -0.03076171875, + 0.00421142578125, + -0.000850677490234375, + 0.013916015625, + -0.035888671875, + -0.0111083984375, + 0.054443359375, + 0.0198974609375, + -0.022216796875, + 0.006317138671875, + -0.0038909912109375, + 0.0027008056640625, + -0.0181884765625, + -0.0179443359375, + 0.04296875, + -0.032958984375, + -0.0023956298828125, + -0.005096435546875, + 0.03515625, + -0.0208740234375, + 0.01123046875, + -0.0189208984375, + -0.01806640625, + -0.0208740234375, + -0.01361083984375, + 0.0184326171875, + 0.030517578125, + 0.001922607421875, + 0.0133056640625, + -0.020263671875, + 0.02685546875, + 0.03369140625, + 0.0419921875, + -0.00921630859375, + -0.00604248046875, + 0.01507568359375, + -0.0272216796875, + -0.0164794921875, + -0.040771484375, + 0.01422119140625, + 0.0322265625, + 0.007720947265625, + 0.04345703125, + 0.031494140625, + -0.020263671875, + 0.06640625, + 0.062255859375, + 0.00616455078125, + 0.01385498046875, + 0.005615234375, + -0.005401611328125, + 0.00567626953125, + -0.0257568359375, + -0.04833984375, + -0.0034332275390625, + 0.043701171875, + -0.044677734375, + 0.0284423828125, + 0.01904296875, + -0.0015869140625, + 0.00982666015625, + -0.029541015625, + 0.00138092041015625, + 0.00482177734375, + 0.0001239776611328125, + -0.002471923828125, + 0.033935546875, + 0.005462646484375, + 0.07373046875, + -0.0224609375, + 0.01202392578125, + -0.01202392578125, + -0.016845703125, + 0.01171875, + -0.0211181640625, + -0.0250244140625, + -0.0247802734375, + -0.037353515625, + -0.03857421875, + 0.015380859375, + 0.007568359375, + -0.0159912109375, + 0.0400390625, + -0.025146484375, + -0.01031494140625, + -0.003631591796875, + 0.020263671875, + -0.030517578125, + 0.0008697509765625, + -0.0150146484375, + 0.016357421875, + 0.00909423828125, + -0.024658203125, + -0.005584716796875, + 0.06884765625, + -0.002777099609375, + -0.0002346038818359375, + -0.00732421875, + 0.012939453125, + -0.01544189453125, + -0.02685546875, + 0.01153564453125, + -0.00689697265625, + 0.0517578125, + 0.0791015625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.56818399999338, + "queue_ms": 2.246248000005835, + "tokenization_ms": 0.019860999998400075, + "inference_ms": 14.177333999995767, + "postprocessing_ms": null + } + }, + { + "id": "chunk-14", + "dense": [ + 0.00144195556640625, + 0.03564453125, + -0.001495361328125, + 0.014892578125, + -0.045166015625, + -0.047607421875, + -0.01708984375, + 0.0079345703125, + 0.015869140625, + 0.020751953125, + -0.015869140625, + -0.03564453125, + -0.005126953125, + -0.012451171875, + 0.058349609375, + 0.000774383544921875, + 0.0167236328125, + 0.00165557861328125, + -0.0169677734375, + -0.0220947265625, + 0.0274658203125, + -0.0166015625, + 0.0029449462890625, + 0.0164794921875, + 0.0164794921875, + 0.05859375, + -0.03173828125, + 0.01409912109375, + 0.047119140625, + 0.0654296875, + -0.01519775390625, + -0.08740234375, + -0.01300048828125, + 0.0107421875, + -0.046142578125, + 0.0198974609375, + 0.037109375, + -0.00927734375, + -0.0130615234375, + -0.003173828125, + -0.00836181640625, + -0.0537109375, + 0.0286865234375, + -0.006256103515625, + 0.048583984375, + 0.0118408203125, + -0.02978515625, + -0.0267333984375, + 0.02880859375, + -0.00518798828125, + -0.046142578125, + 0.00787353515625, + 0.0162353515625, + 0.0019989013671875, + -0.0087890625, + 0.01104736328125, + -0.017333984375, + 0.00958251953125, + 0.0012969970703125, + 0.01434326171875, + 0.0054931640625, + 0.0198974609375, + 0.021728515625, + -0.0004405975341796875, + 0.003570556640625, + 0.040283203125, + 0.01611328125, + -0.00909423828125, + -0.0260009765625, + -0.037841796875, + 0.004058837890625, + -0.0045166015625, + -0.02490234375, + -0.0140380859375, + -0.03125, + 0.049560546875, + 0.01953125, + -0.01275634765625, + 0.017578125, + 0.041259765625, + 0.007080078125, + 0.011962890625, + -0.011474609375, + 0.03466796875, + 0.026123046875, + 0.0087890625, + 0.00787353515625, + 0.04541015625, + -0.0286865234375, + 0.006866455078125, + 0.041259765625, + -0.00138092041015625, + -0.003173828125, + 0.01220703125, + 0.00162506103515625, + -0.047119140625, + 0.0078125, + -0.00848388671875, + 0.031005859375, + 0.0020751953125, + 0.0147705078125, + 0.00860595703125, + 0.033935546875, + -0.041015625, + 0.04833984375, + -0.01251220703125, + 0.07421875, + 0.01708984375, + 0.0341796875, + -0.000457763671875, + 0.02197265625, + 0.01239013671875, + 0.0181884765625, + 0.01019287109375, + -0.0147705078125, + -0.015625, + 0.01055908203125, + -0.00335693359375, + 0.03173828125, + -0.0546875, + 0.045166015625, + 0.0289306640625, + 0.0625, + 0.0118408203125, + -0.027099609375, + -0.045166015625, + 0.004058837890625, + -0.03369140625, + 0.0203857421875, + 0.00084686279296875, + -0.013671875, + 0.0439453125, + -0.003387451171875, + 0.0194091796875, + -0.00762939453125, + 0.01416015625, + -0.017578125, + 0.0013275146484375, + 0.0059814453125, + -0.013671875, + 0.00078582763671875, + 0.0115966796875, + -0.03662109375, + -0.025634765625, + 0.023681640625, + -0.035888671875, + 0.013427734375, + -0.0213623046875, + -0.0011444091796875, + -0.0712890625, + 0.025146484375, + -0.00634765625, + -0.009765625, + 0.0250244140625, + 0.00139617919921875, + 0.048583984375, + -0.02001953125, + 0.07666015625, + -0.058837890625, + 0.01007080078125, + 0.043701171875, + 0.0203857421875, + -0.01708984375, + 0.0159912109375, + 0.03173828125, + -0.0498046875, + 0.002899169921875, + 0.044189453125, + -0.038330078125, + 0.007049560546875, + -0.003936767578125, + -0.05224609375, + 0.059814453125, + -0.025390625, + 0.0146484375, + 0.0498046875, + 0.047119140625, + 0.0244140625, + -0.00689697265625, + 0.000904083251953125, + -0.0223388671875, + 0.029296875, + 0.003204345703125, + -0.00946044921875, + -0.025634765625, + 0.0771484375, + 0.044921875, + -0.07177734375, + 0.00579833984375, + -0.03173828125, + -0.03515625, + -0.0281982421875, + -0.0150146484375, + 0.0224609375, + 0.0498046875, + -0.052978515625, + 0.037353515625, + 0.008056640625, + -0.0074462890625, + -0.0361328125, + -0.02685546875, + -0.006622314453125, + 0.0125732421875, + 0.01116943359375, + -0.017822265625, + 0.00457763671875, + -0.0439453125, + 0.021484375, + 0.055419921875, + -0.053466796875, + 0.0026397705078125, + -0.03955078125, + -0.0279541015625, + -0.0206298828125, + -0.0169677734375, + 0.0250244140625, + -0.0260009765625, + 0.00238037109375, + -0.002044677734375, + -0.0150146484375, + 0.0016937255859375, + 0.051513671875, + -0.035400390625, + -0.026123046875, + 0.01708984375, + -0.00970458984375, + -0.0093994140625, + 0.00823974609375, + -0.00897216796875, + -0.0458984375, + 0.04736328125, + 0.00531005859375, + -0.034912109375, + -0.0028839111328125, + 0.031982421875, + -0.0023651123046875, + -0.040771484375, + 0.044677734375, + -0.006561279296875, + 0.01416015625, + 0.013671875, + -0.0029144287109375, + 0.02734375, + -0.0264892578125, + 0.005340576171875, + -0.038818359375, + 0.0189208984375, + -0.008056640625, + -0.032958984375, + 0.01470947265625, + 0.0478515625, + -0.0213623046875, + -0.0022735595703125, + 0.00177001953125, + 0.0274658203125, + 0.047119140625, + 0.008544921875, + -0.01458740234375, + 0.0115966796875, + 0.0223388671875, + 0.021240234375, + 0.048828125, + 0.01953125, + 0.022705078125, + 0.01348876953125, + -0.0279541015625, + -0.0115966796875, + 0.027099609375, + -0.007659912109375, + 0.01019287109375, + -0.0157470703125, + 0.00958251953125, + -0.0289306640625, + 0.01129150390625, + -0.02685546875, + 0.0380859375, + -0.01495361328125, + -0.008544921875, + 0.051025390625, + -0.00179290771484375, + -0.01611328125, + -0.008056640625, + 0.046630859375, + -0.037353515625, + 0.0279541015625, + -0.045166015625, + -0.05712890625, + -0.004638671875, + -0.027099609375, + 0.007232666015625, + -0.033203125, + 0.0019073486328125, + 0.05224609375, + -0.0233154296875, + -0.005462646484375, + 0.0247802734375, + 0.00186920166015625, + -0.1640625, + -0.0179443359375, + 0.0205078125, + 0.039794921875, + -0.0164794921875, + 0.06103515625, + -0.0283203125, + -0.0400390625, + -0.051025390625, + 0.062255859375, + 0.00194549560546875, + -0.03271484375, + 0.037353515625, + -0.005645751953125, + 0.0172119140625, + 0.000530242919921875, + -0.002197265625, + -0.0169677734375, + 0.038818359375, + -0.0303955078125, + -0.00138092041015625, + -0.01397705078125, + -0.0274658203125, + -0.027587890625, + -0.0089111328125, + -0.064453125, + 0.0263671875, + 0.01324462890625, + 0.00811767578125, + 0.00201416015625, + -0.0791015625, + -0.00787353515625, + -0.01153564453125, + 0.005035400390625, + 0.020751953125, + 0.021728515625, + 0.04736328125, + -0.0400390625, + 0.0654296875, + 0.030029296875, + 0.0205078125, + 0.0174560546875, + -0.042236328125, + 0.00087738037109375, + -0.001007080078125, + -0.0167236328125, + 0.0057373046875, + 0.005950927734375, + -0.043701171875, + -0.0150146484375, + -0.048828125, + -0.016357421875, + -0.032958984375, + -0.0322265625, + -0.02734375, + -0.012451171875, + -0.002227783203125, + -0.016357421875, + -0.042724609375, + 0.01177978515625, + -0.044921875, + -0.029541015625, + 0.0091552734375, + -0.06005859375, + -0.01446533203125, + 0.0264892578125, + -0.0137939453125, + -0.00897216796875, + 0.0380859375, + -0.049072265625, + -0.026123046875, + -0.018310546875, + 0.00970458984375, + 0.025390625, + -0.00933837890625, + 0.0198974609375, + -0.00408935546875, + -0.0203857421875, + 0.038330078125, + -0.06640625, + -0.04150390625, + 0.042724609375, + 0.027587890625, + -0.008544921875, + -0.0223388671875, + -0.0203857421875, + 0.01446533203125, + 0.006500244140625, + 0.01397705078125, + 0.23046875, + 0.00634765625, + -0.031494140625, + -0.0125732421875, + 0.012451171875, + -0.057861328125, + -0.01708984375, + 0.00543212890625, + 0.0439453125, + -0.0289306640625, + -0.05859375, + -0.0439453125, + 0.031494140625, + -0.0458984375, + -0.01470947265625, + 0.0152587890625, + -0.019775390625, + 0.0091552734375, + 0.06787109375, + -0.04833984375, + 0.0654296875, + 0.0218505859375, + 0.035888671875, + -0.0108642578125, + -0.06689453125, + 0.0186767578125, + -0.0103759765625, + -0.00110626220703125, + 0.004852294921875, + 0.0274658203125, + 0.00787353515625, + 0.05615234375, + 0.031005859375, + -0.0021820068359375, + 0.011474609375, + 0.04345703125, + 0.0341796875, + -0.041015625, + 0.01025390625, + 0.032958984375, + 0.02490234375, + 0.0015716552734375, + 0.0036163330078125, + -0.09765625, + 0.0230712890625, + -0.0223388671875, + -0.00128173828125, + 0.007080078125, + -0.025634765625, + 0.0203857421875, + 0.01507568359375, + 0.028564453125, + -0.0167236328125, + -0.01025390625, + -0.03466796875, + -0.037841796875, + -0.01251220703125, + -0.007659912109375, + -0.0025787353515625, + 0.058837890625, + -0.01385498046875, + 0.03125, + -0.007781982421875, + 0.053955078125, + -0.01519775390625, + 0.006103515625, + 0.0140380859375, + 0.007049560546875, + -0.01068115234375, + -0.01385498046875, + 0.0142822265625, + 0.01611328125, + -0.0016326904296875, + 0.048583984375, + -0.0235595703125, + -0.03466796875, + 0.02685546875, + 0.076171875, + -0.0230712890625, + 0.006927490234375, + -0.0147705078125, + -0.0233154296875, + -0.0074462890625, + -0.0205078125, + 0.00836181640625, + -0.0634765625, + 0.042724609375, + 0.08056640625, + -0.01708984375, + 0.06591796875, + -0.007781982421875, + -0.0289306640625, + -0.01953125, + 0.004180908203125, + -0.04736328125, + 0.0301513671875, + 0.0233154296875, + 0.01397705078125, + -0.003143310546875, + 0.051025390625, + 0.01123046875, + -0.0263671875, + -0.007537841796875, + 0.03759765625, + 0.0162353515625, + -0.0107421875, + -0.04248046875, + 0.01458740234375, + -0.02392578125, + 0.0224609375, + 0.0019683837890625, + 0.001800537109375, + 0.0250244140625, + -0.07080078125, + 0.0194091796875, + 0.046630859375, + -0.0400390625, + 0.046630859375, + 0.01239013671875, + 0.0244140625, + -0.041259765625, + 0.0299072265625, + -0.01123046875, + 0.04296875, + 0.0024261474609375, + -0.0322265625, + -0.0269775390625, + -0.0546875, + 0.00518798828125, + 0.0576171875, + -0.0301513671875, + -0.003997802734375, + -0.01434326171875, + -0.017333984375, + 0.06103515625, + 0.041015625, + 0.011962890625, + 0.01214599609375, + -0.0087890625, + 0.0546875, + -0.03125, + -0.0439453125, + 0.00159454345703125, + -0.00531005859375, + 0.041748046875, + -0.0294189453125, + -0.0230712890625, + 0.0081787109375, + -0.06005859375, + -0.025390625, + -0.020751953125, + 0.057373046875, + -0.00299072265625, + -0.029296875, + -0.00830078125, + -0.031494140625, + -0.030029296875, + -0.058837890625, + -0.003997802734375, + -0.0283203125, + 0.013671875, + 0.003936767578125, + -0.021240234375, + 0.03271484375, + 0.05615234375, + -0.001495361328125, + 0.006744384765625, + 0.015625, + 0.031494140625, + -0.01611328125, + -0.01336669921875, + 0.010986328125, + -0.00689697265625, + -0.0189208984375, + 0.044189453125, + -0.006988525390625, + -0.064453125, + 0.05712890625, + 0.00653076171875, + 0.0038299560546875, + 0.0286865234375, + 0.0283203125, + -0.043701171875, + -0.00897216796875, + -0.03515625, + -0.031494140625, + -0.005615234375, + 0.000919342041015625, + -0.005889892578125, + -0.004852294921875, + -0.05712890625, + 0.064453125, + -0.051025390625, + -0.0213623046875, + 0.0005950927734375, + -0.019287109375, + -0.001800537109375, + -0.0269775390625, + 0.046630859375, + -0.01708984375, + -0.018310546875, + -0.03466796875, + 0.0027618408203125, + 0.03515625, + -0.0031280517578125, + -0.044677734375, + -0.0096435546875, + 0.0225830078125, + -0.0118408203125, + 0.0400390625, + 0.00518798828125, + 0.055908203125, + -0.0277099609375, + -0.020751953125, + -0.00567626953125, + -0.02001953125, + 0.015869140625, + 0.03662109375, + 0.033447265625, + -0.004547119140625, + 0.03173828125, + -0.0205078125, + 0.064453125, + -0.042236328125, + -0.00946044921875, + 0.016357421875, + -0.0098876953125, + -0.0242919921875, + 0.0498046875, + 0.01153564453125, + 0.000247955322265625, + -0.0281982421875, + -0.00066375732421875, + 0.01611328125, + -0.0203857421875, + -0.027099609375, + -0.0137939453125, + 0.0201416015625, + -0.031005859375, + -0.005279541015625, + 0.030517578125, + -0.04150390625, + 0.041259765625, + 0.00933837890625, + 0.003143310546875, + -3.844499588012695e-06, + 0.0166015625, + -0.0164794921875, + 0.0130615234375, + 0.005340576171875, + -0.000255584716796875, + 0.00110626220703125, + 0.01348876953125, + -0.03955078125, + -0.0146484375, + 0.035888671875, + -0.0299072265625, + 0.0028228759765625, + -0.0186767578125, + 0.01019287109375, + -0.0294189453125, + -0.0279541015625, + -0.01446533203125, + -0.038818359375, + -0.03076171875, + -0.0186767578125, + 0.024169921875, + 0.029296875, + -0.01458740234375, + -0.07275390625, + 0.029296875, + -0.004425048828125, + -0.0390625, + -0.057373046875, + -0.021728515625, + 0.029296875, + -0.019775390625, + 0.016845703125, + 0.0233154296875, + 0.0020599365234375, + -0.042236328125, + 0.06787109375, + 0.0230712890625, + 0.054931640625, + -0.00116729736328125, + -0.002593994140625, + 0.00482177734375, + -0.0008392333984375, + -0.005584716796875, + -0.01409912109375, + 0.0186767578125, + -0.038330078125, + -0.017578125, + 0.01708984375, + 0.01519775390625, + -0.00787353515625, + -0.0264892578125, + 0.034423828125, + 4.5299530029296875e-05, + 0.03271484375, + -0.01116943359375, + 0.00836181640625, + 0.006591796875, + -0.0181884765625, + -0.00168609619140625, + 0.05419921875, + -0.0203857421875, + -0.0169677734375, + 0.060302734375, + 0.03857421875, + -0.0205078125, + -0.042724609375, + 0.000263214111328125, + 0.052734375, + -0.0291748046875, + 0.01031494140625, + 0.00909423828125, + 0.028564453125, + 0.01025390625, + 0.01531982421875, + -0.0184326171875, + -0.041015625, + -0.03955078125, + 0.0025177001953125, + -0.0177001953125, + 0.052001953125, + -0.0274658203125, + 0.038330078125, + -0.00653076171875, + -0.03759765625, + -0.01556396484375, + 0.004547119140625, + -0.0269775390625, + -0.003509521484375, + 0.03857421875, + -0.0269775390625, + -0.021728515625, + -0.04248046875, + 0.05517578125, + -0.0260009765625, + 0.02685546875, + -0.017578125, + 0.035888671875, + -0.0191650390625, + 0.03173828125, + -0.021484375, + -0.01373291015625, + -0.01458740234375, + 0.0225830078125, + 0.022705078125, + 0.0042724609375, + 0.009765625, + -0.0279541015625, + -0.03271484375, + -0.004791259765625, + -0.040283203125, + -0.01123046875, + 0.0211181640625, + 0.0274658203125, + 0.0172119140625, + 0.0002193450927734375, + 0.0155029296875, + -0.04296875, + -0.0128173828125, + 0.007293701171875, + 0.04736328125, + 0.01611328125, + -0.02490234375, + 0.0283203125, + -0.020751953125, + -0.03173828125, + 0.0291748046875, + 0.048828125, + 0.01214599609375, + -0.0225830078125, + -0.002593994140625, + -0.0089111328125, + 0.00156402587890625, + -0.03271484375, + 0.013427734375, + -0.010986328125, + -0.005828857421875, + -0.00909423828125, + -0.0089111328125, + -0.0072021484375, + -0.0033721923828125, + -0.042724609375, + 0.037841796875, + 0.02685546875, + -0.0081787109375, + -0.0306396484375, + 0.03466796875, + -0.06591796875, + -0.0172119140625, + -0.1337890625, + 0.039794921875, + 0.0004863739013671875, + 0.031494140625, + -0.049560546875, + 0.0118408203125, + -0.050048828125, + 0.0096435546875, + -0.01043701171875, + -0.043701171875, + 0.0311279296875, + -0.0142822265625, + 0.0322265625, + -0.0022430419921875, + 0.0022125244140625, + 0.0137939453125, + -0.0732421875, + 0.0208740234375, + -0.034912109375, + 0.03076171875, + 0.01043701171875, + -0.01068115234375, + -0.0146484375, + 0.01092529296875, + 0.0179443359375, + -0.00543212890625, + 0.030029296875, + -0.0537109375, + -0.01531982421875, + -0.0096435546875, + -0.02490234375, + -0.07421875, + 0.013671875, + 0.030517578125, + -0.0289306640625, + -0.00836181640625, + 0.00823974609375, + -0.02001953125, + -0.040771484375, + -0.00537109375, + 0.01129150390625, + 0.016357421875, + 0.0003509521484375, + -0.01165771484375, + -0.036376953125, + 0.06005859375, + -0.0439453125, + 0.003509521484375, + -0.003143310546875, + -0.03662109375, + -0.0245361328125, + -0.017822265625, + -0.048583984375, + 0.0198974609375, + -0.0155029296875, + 0.03515625, + -0.0194091796875, + 0.0013427734375, + 0.004974365234375, + 0.036865234375, + -0.007598876953125, + 0.00830078125, + -0.0245361328125, + -0.08203125, + -0.031982421875, + 0.014892578125, + -0.057861328125, + 0.00653076171875, + 0.01409912109375, + 0.0279541015625, + -0.055908203125, + 0.0159912109375, + 0.0224609375, + -0.021484375, + -0.00433349609375, + -0.031005859375, + 0.031005859375, + -0.0098876953125, + -0.01904296875, + 0.00970458984375, + -0.07275390625, + 0.021484375, + -0.00057220458984375, + 0.0029449462890625, + 0.03515625, + 0.003265380859375, + -0.01397705078125, + -0.0096435546875, + -0.041259765625, + -0.03662109375, + -0.044189453125, + -0.00885009765625, + 0.0198974609375, + 0.05419921875, + -0.000949859619140625, + 0.014404296875, + -0.032958984375, + -0.0159912109375, + -0.0238037109375, + -0.037109375, + -0.0091552734375, + -0.01275634765625, + 0.0098876953125, + -0.001434326171875, + -0.018798828125, + -0.0279541015625, + 0.0177001953125, + -0.013427734375, + -0.01214599609375, + -0.01708984375, + 0.0166015625, + 0.040771484375, + -0.0191650390625, + -0.026123046875, + -0.0400390625, + -0.00933837890625, + -0.03515625, + -0.0220947265625, + -0.0286865234375, + -0.00445556640625, + -0.0306396484375, + -0.01116943359375, + 0.00958251953125, + -0.0169677734375, + -0.0157470703125, + -0.0206298828125, + 0.05615234375, + 0.01318359375, + -0.00095367431640625, + 0.027587890625, + -0.02880859375, + -0.0003719329833984375, + -0.0177001953125, + 0.00946044921875, + 0.01611328125, + -0.0021209716796875, + -0.004180908203125, + -0.000843048095703125, + -0.01409912109375, + -0.0322265625, + 0.0390625, + 0.03955078125, + 0.007537841796875, + -0.059814453125, + -0.0048828125, + -0.037109375, + -0.004241943359375, + -0.052978515625, + 0.041748046875, + -0.01507568359375, + 0.01092529296875, + 0.0177001953125, + -0.00010824203491210938, + 0.07080078125, + -0.000629425048828125, + 0.0191650390625, + -0.0181884765625, + 0.038818359375, + 0.0250244140625, + 0.0478515625, + 0.01409912109375, + -0.0634765625, + -0.029296875, + -0.031005859375, + -0.0047607421875, + 0.064453125, + 0.007232666015625, + -0.0012054443359375, + -0.009765625, + 0.0037689208984375, + 0.030029296875, + 0.002960205078125, + -0.021240234375, + 0.046142578125, + -0.005157470703125, + -0.01300048828125, + 0.0263671875, + 0.01385498046875, + 0.00390625, + -0.015869140625, + 0.041259765625, + 0.0106201171875, + 0.017578125, + -0.004119873046875, + 0.01275634765625, + 0.04541015625, + 0.01275634765625, + 0.0478515625, + 0.0174560546875, + -0.058349609375, + -0.00927734375, + 0.0162353515625, + 0.018798828125, + -0.0205078125, + 0.02880859375, + -0.010009765625, + 0.0115966796875, + -0.00096893310546875, + 0.0498046875, + 0.008056640625, + 0.020751953125, + -0.0306396484375, + 0.056640625, + -0.0108642578125, + -0.0152587890625, + 0.058349609375, + -0.00531005859375, + -0.00701904296875, + -0.04296875, + 0.0120849609375, + -0.044189453125, + 0.01177978515625, + 0.05078125, + -0.0341796875, + -0.02197265625, + -0.0400390625, + -0.005157470703125, + -0.0185546875, + -0.0002040863037109375, + 0.0225830078125, + 0.044189453125, + 0.041259765625, + -0.02880859375, + -0.047119140625, + -0.015869140625, + 0.02294921875, + -0.040771484375, + -0.053466796875, + -0.046630859375, + 0.042236328125, + 0.01116943359375, + 0.02490234375, + -0.0537109375, + 0.0322265625, + 0.033935546875, + 0.032958984375, + -0.07275390625, + 0.0206298828125, + 0.0034332275390625, + -0.0208740234375, + 0.0390625, + -0.0262451171875, + 0.0213623046875, + 0.02490234375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 14.217074000001162, + "queue_ms": 0.11038200000257348, + "tokenization_ms": 0.019610999999031264, + "inference_ms": 13.970078999989255, + "postprocessing_ms": null + } + }, + { + "id": "chunk-15", + "dense": [ + 0.058837890625, + 0.0174560546875, + -0.0034942626953125, + 0.01470947265625, + -0.0439453125, + 0.0008392333984375, + 0.008056640625, + 0.0400390625, + -0.0150146484375, + -0.043701171875, + -0.0235595703125, + -0.00848388671875, + 0.0115966796875, + -0.0225830078125, + 0.041015625, + -0.029541015625, + 0.0142822265625, + -0.01312255859375, + -0.041015625, + -0.00994873046875, + -0.017578125, + 0.0026092529296875, + -0.002593994140625, + 0.031494140625, + -0.031494140625, + 0.0269775390625, + -0.018310546875, + -0.0074462890625, + -0.01324462890625, + 0.02001953125, + -0.0400390625, + -0.0576171875, + -0.01904296875, + -0.03271484375, + -0.051025390625, + -0.01409912109375, + 0.01043701171875, + -0.0213623046875, + -0.046142578125, + 0.025634765625, + -0.054931640625, + 0.035400390625, + 0.0223388671875, + 0.00194549560546875, + 0.025390625, + -0.0018768310546875, + -0.00299072265625, + -0.014404296875, + 0.044189453125, + 0.0118408203125, + -0.0269775390625, + 0.045166015625, + 0.00176239013671875, + 0.0059814453125, + -0.0177001953125, + -0.0108642578125, + -0.0238037109375, + -0.006744384765625, + 0.0157470703125, + -0.02197265625, + 0.0303955078125, + 0.025634765625, + 0.035888671875, + -0.0042724609375, + -0.025390625, + 0.09912109375, + 0.04541015625, + 0.0186767578125, + -0.01556396484375, + -0.038330078125, + -0.010009765625, + -0.01031494140625, + 0.0152587890625, + -0.01312255859375, + -0.056640625, + 0.053466796875, + 0.064453125, + -0.0257568359375, + 0.038818359375, + 0.024169921875, + 0.0233154296875, + -0.0184326171875, + -0.00787353515625, + 0.034912109375, + 0.056396484375, + 0.041015625, + 0.0194091796875, + -0.018798828125, + -0.033447265625, + 0.002716064453125, + 0.05517578125, + -0.0147705078125, + 0.0152587890625, + 0.0078125, + -0.0322265625, + 0.00604248046875, + 0.004791259765625, + 0.0087890625, + 0.043701171875, + -0.0025177001953125, + 0.017578125, + 0.025390625, + -0.0179443359375, + -0.03076171875, + 0.01373291015625, + -0.03271484375, + 0.021484375, + 0.03173828125, + 0.03955078125, + 0.016357421875, + 0.0546875, + 0.007476806640625, + 0.0198974609375, + -0.00897216796875, + -0.014404296875, + 0.01092529296875, + -0.0201416015625, + -0.0294189453125, + 0.032958984375, + -0.0291748046875, + 0.024169921875, + 0.03955078125, + 0.0478515625, + -0.0213623046875, + 0.0012969970703125, + -0.02490234375, + 0.01312255859375, + 0.0184326171875, + -0.01220703125, + 0.01953125, + -0.023681640625, + -0.0024871826171875, + -0.00628662109375, + 0.0185546875, + -0.0498046875, + -0.04638671875, + -0.0211181640625, + -0.02392578125, + -0.001800537109375, + -0.045166015625, + -0.00927734375, + 0.0279541015625, + 0.01300048828125, + -0.0213623046875, + 0.0157470703125, + 0.020751953125, + 0.005645751953125, + 0.00439453125, + -0.00543212890625, + -0.031005859375, + 0.032470703125, + -0.027587890625, + 0.01446533203125, + -0.00738525390625, + -0.0301513671875, + 0.01177978515625, + -0.032958984375, + 0.0301513671875, + 0.005340576171875, + 0.01129150390625, + -0.0115966796875, + 0.040771484375, + 0.00119781494140625, + -0.03515625, + 0.01348876953125, + -0.00958251953125, + 0.036376953125, + 0.00933837890625, + -0.0303955078125, + 0.0081787109375, + -0.006103515625, + -0.047607421875, + 0.035400390625, + -0.017578125, + -0.0120849609375, + 0.0498046875, + 0.039794921875, + 0.03369140625, + 0.005462646484375, + -0.017333984375, + -0.0206298828125, + 0.013427734375, + 0.038330078125, + -0.041259765625, + -0.0037384033203125, + 0.055908203125, + 0.0269775390625, + -0.0537109375, + -0.0130615234375, + 0.021728515625, + -0.027099609375, + -0.01251220703125, + 0.01318359375, + 0.030517578125, + 0.038330078125, + -0.009521484375, + 0.005523681640625, + 0.003814697265625, + 0.0224609375, + 0.01556396484375, + -0.008056640625, + 0.032958984375, + 0.058349609375, + 0.01190185546875, + -0.004241943359375, + 0.018310546875, + 0.00750732421875, + -0.022705078125, + 0.0201416015625, + -0.048828125, + 0.0167236328125, + -0.03125, + -0.0087890625, + -0.01611328125, + -0.06640625, + 0.0181884765625, + 0.0031280517578125, + -0.043701171875, + -0.018798828125, + -0.0213623046875, + 0.0147705078125, + 0.034423828125, + -0.00921630859375, + 0.004058837890625, + 0.0208740234375, + 0.0177001953125, + -0.02685546875, + 0.04833984375, + -0.0172119140625, + -0.046630859375, + 0.044677734375, + -0.04833984375, + -0.024169921875, + 0.0072021484375, + 0.055419921875, + 0.03271484375, + 0.005523681640625, + 0.01806640625, + 0.01507568359375, + -0.000728607177734375, + 0.00933837890625, + 0.04541015625, + -0.005126953125, + -0.006744384765625, + 0.0014801025390625, + -0.033203125, + 0.07470703125, + 0.0400390625, + -0.048828125, + 0.023681640625, + 0.0218505859375, + -0.0235595703125, + -0.033447265625, + 0.03466796875, + -0.005523681640625, + 0.0208740234375, + -0.0299072265625, + 0.016845703125, + 0.03173828125, + 0.0283203125, + 0.0294189453125, + 0.053955078125, + 0.0341796875, + 0.0068359375, + 0.004547119140625, + 0.009765625, + 0.00579833984375, + 0.00244140625, + -0.04296875, + -0.03466796875, + -0.00787353515625, + -0.00823974609375, + -0.035400390625, + 0.0184326171875, + 0.0242919921875, + 0.003936767578125, + -0.06298828125, + -0.0177001953125, + 0.037353515625, + 0.00823974609375, + 0.031494140625, + -0.006439208984375, + 0.0155029296875, + -0.00909423828125, + -0.00933837890625, + -0.0235595703125, + -0.0380859375, + 0.0201416015625, + 0.01458740234375, + 0.005950927734375, + -0.010009765625, + 0.01348876953125, + 0.05078125, + -0.02197265625, + 0.01190185546875, + 0.017822265625, + 0.0076904296875, + -0.1611328125, + 0.036865234375, + 0.0286865234375, + -0.001678466796875, + -0.01123046875, + 0.03125, + 0.032470703125, + -0.0634765625, + -0.038818359375, + 0.07568359375, + -0.0311279296875, + -0.0380859375, + 0.01275634765625, + -0.04296875, + 0.006439208984375, + -0.0291748046875, + 0.048828125, + -0.0098876953125, + -0.016845703125, + -0.041259765625, + 0.0299072265625, + -0.0057373046875, + 0.0191650390625, + -0.0390625, + 0.00119781494140625, + -0.05859375, + 0.00189971923828125, + 0.00167083740234375, + -0.004974365234375, + -0.0167236328125, + -0.060791015625, + 0.0244140625, + -0.008056640625, + 0.054931640625, + -0.0106201171875, + 0.049560546875, + 0.00136566162109375, + -0.0225830078125, + 0.0177001953125, + 0.0029449462890625, + 0.02294921875, + 0.041259765625, + -0.03857421875, + 0.01220703125, + -0.008056640625, + -0.08056640625, + 0.042236328125, + 0.00933837890625, + -0.0021820068359375, + -0.061279296875, + -0.00592041015625, + -0.0294189453125, + 0.0137939453125, + -0.004180908203125, + 0.01055908203125, + 0.0289306640625, + 0.0012359619140625, + 0.0050048828125, + -0.0026092529296875, + 0.007171630859375, + -0.00421142578125, + -0.0167236328125, + -0.0257568359375, + 0.0198974609375, + -0.0791015625, + 0.042724609375, + -0.0020904541015625, + -0.00885009765625, + 0.04638671875, + -0.0238037109375, + 0.0220947265625, + -0.0089111328125, + 0.017578125, + 0.01953125, + -0.0042724609375, + 0.005279541015625, + -0.0341796875, + -0.033935546875, + -0.00958251953125, + -0.052734375, + -0.0185546875, + 0.0693359375, + 0.0400390625, + 0.0003910064697265625, + -0.01031494140625, + -0.040283203125, + -0.0068359375, + -0.0147705078125, + 0.0167236328125, + 0.2255859375, + -0.0137939453125, + -0.027587890625, + 0.03271484375, + -0.003662109375, + -0.033935546875, + 0.037353515625, + 0.0303955078125, + 0.039794921875, + -0.040771484375, + -0.035888671875, + -0.031494140625, + 0.0020904541015625, + -0.01251220703125, + -0.005645751953125, + 0.01318359375, + -0.001251220703125, + -0.01373291015625, + 0.08203125, + -0.034423828125, + 0.049560546875, + 0.0213623046875, + 0.01434326171875, + -0.0103759765625, + -0.05712890625, + -0.02490234375, + -0.017578125, + 0.00131988525390625, + 0.006439208984375, + 0.0546875, + -0.044189453125, + -0.026123046875, + 0.05712890625, + -0.0269775390625, + 0.0106201171875, + 0.044189453125, + -0.0004425048828125, + -0.033447265625, + -0.0074462890625, + 0.0167236328125, + -0.03466796875, + -0.002685546875, + -0.00836181640625, + 0.009765625, + -0.0235595703125, + 0.01104736328125, + -0.04248046875, + 0.013671875, + -0.007476806640625, + 0.004150390625, + 0.011962890625, + 0.03515625, + -0.00066375732421875, + 0.00848388671875, + -0.0703125, + 0.0164794921875, + -0.02685546875, + 0.00567626953125, + -0.038330078125, + 0.041015625, + -0.041748046875, + 0.0380859375, + -0.08984375, + -0.00592041015625, + -0.01239013671875, + 0.0081787109375, + 0.0242919921875, + -0.029541015625, + -0.0194091796875, + 0.00110626220703125, + -0.0008544921875, + 0.01531982421875, + -0.0084228515625, + 0.02734375, + 0.0159912109375, + 0.00018596649169921875, + 0.003021240234375, + 0.08349609375, + 0.03857421875, + -0.0186767578125, + -0.0322265625, + -0.0211181640625, + -0.055908203125, + -0.006591796875, + 0.0125732421875, + -0.045166015625, + 0.046142578125, + 0.064453125, + -0.027099609375, + -0.0035247802734375, + -0.0267333984375, + -0.0036163330078125, + -0.00110626220703125, + -0.05029296875, + -0.0673828125, + 0.03125, + 0.0458984375, + -0.0078125, + -0.022705078125, + 0.018310546875, + -0.006927490234375, + -0.023681640625, + -0.0181884765625, + 0.034423828125, + 0.048583984375, + -0.022705078125, + 0.001373291015625, + 0.03564453125, + -0.02197265625, + -0.0150146484375, + 0.051513671875, + -0.01300048828125, + -0.01458740234375, + -0.0224609375, + 0.017822265625, + 0.0201416015625, + -0.06494140625, + 0.0390625, + 0.00104522705078125, + 0.099609375, + -0.0164794921875, + -0.06787109375, + 0.0150146484375, + 0.0062255859375, + 0.0208740234375, + -0.03857421875, + -0.039794921875, + -0.0093994140625, + 0.010009765625, + 0.005462646484375, + 0.000579833984375, + -0.0146484375, + 0.002655029296875, + -0.019775390625, + 0.00093841552734375, + -0.01104736328125, + 0.0166015625, + -0.03955078125, + 0.004241943359375, + 0.031494140625, + -0.015869140625, + -0.016357421875, + -0.0011444091796875, + 0.00634765625, + 0.00133514404296875, + 0.0167236328125, + -0.09033203125, + 0.01556396484375, + -0.041015625, + 0.0157470703125, + 0.030517578125, + 0.035400390625, + 0.002899169921875, + -0.042724609375, + -0.0218505859375, + 3.361701965332031e-05, + -0.0091552734375, + -0.03759765625, + -0.043701171875, + -0.01470947265625, + 0.011474609375, + 0.0025482177734375, + -0.0126953125, + 0.0322265625, + 0.03173828125, + 0.036376953125, + -0.009765625, + -0.00099945068359375, + 0.00836181640625, + 0.02294921875, + -0.002716064453125, + -0.0198974609375, + -0.027587890625, + -0.000812530517578125, + 0.038818359375, + 0.0281982421875, + 0.00390625, + 0.030517578125, + 0.03759765625, + 0.018310546875, + -0.004058837890625, + -0.0103759765625, + -0.076171875, + 0.035400390625, + 0.0303955078125, + -0.0166015625, + -0.0380859375, + -0.01129150390625, + -0.00628662109375, + -0.04150390625, + -0.018310546875, + 0.052490234375, + -0.00958251953125, + 0.00140380859375, + 0.0267333984375, + 0.02392578125, + -0.00408935546875, + -0.0130615234375, + 0.037353515625, + -0.044677734375, + -0.017578125, + -0.017578125, + 0.016845703125, + 0.0062255859375, + -0.040283203125, + -0.0162353515625, + -0.052490234375, + 0.01708984375, + -0.005767822265625, + 0.0262451171875, + 0.0390625, + 0.056396484375, + -0.01116943359375, + 0.0185546875, + 0.0390625, + 0.0120849609375, + 0.023193359375, + -0.021484375, + 0.046142578125, + -0.01470947265625, + -0.005340576171875, + -0.03076171875, + 0.0478515625, + -0.051513671875, + -0.010986328125, + 0.0017242431640625, + -0.033935546875, + -0.06298828125, + 0.042236328125, + 0.03955078125, + 0.00543212890625, + -0.0250244140625, + 0.01470947265625, + -0.005035400390625, + -0.001220703125, + 0.01708984375, + 0.0035400390625, + 0.02392578125, + 0.00113677978515625, + -0.025634765625, + 0.01409912109375, + -0.091796875, + -0.0274658203125, + 0.01068115234375, + 0.025634765625, + 0.0224609375, + -0.0001964569091796875, + -0.01495361328125, + -0.0015869140625, + 0.044921875, + 0.005126953125, + -0.03466796875, + 0.005767822265625, + -0.02978515625, + -0.005889892578125, + 0.001983642578125, + 0.01177978515625, + 0.01300048828125, + -0.031494140625, + -0.058349609375, + 0.01239013671875, + 0.0108642578125, + -0.047607421875, + -0.02685546875, + -0.015869140625, + -0.03857421875, + 0.010986328125, + 0.0264892578125, + 0.007781982421875, + -0.041259765625, + -0.0126953125, + -0.031494140625, + -0.0030364990234375, + -0.048828125, + -0.00408935546875, + 0.044677734375, + -0.000446319580078125, + -0.007354736328125, + 0.0130615234375, + -0.00384521484375, + -0.044189453125, + 0.014892578125, + -0.01507568359375, + 0.051513671875, + 0.00787353515625, + -0.00860595703125, + 0.0625, + 0.033447265625, + 0.0218505859375, + -0.01373291015625, + 0.00592041015625, + 0.0191650390625, + -0.0267333984375, + -0.0059814453125, + -0.0068359375, + 0.023193359375, + 0.0002574920654296875, + 0.01190185546875, + 0.023193359375, + -0.0167236328125, + -0.041259765625, + -0.004730224609375, + -0.006866455078125, + -0.017333984375, + -0.024169921875, + 0.0025634765625, + -0.051025390625, + -0.004425048828125, + 0.06689453125, + -0.01458740234375, + 0.004547119140625, + -0.0201416015625, + 0.006134033203125, + 0.05078125, + 0.0126953125, + 0.00762939453125, + 0.0167236328125, + 0.00860595703125, + 0.0023956298828125, + -0.01220703125, + -0.016845703125, + 0.004791259765625, + -0.0191650390625, + 0.0247802734375, + -0.0242919921875, + 0.0703125, + -0.0244140625, + 0.05078125, + -0.04296875, + -0.06396484375, + -0.02392578125, + 0.0186767578125, + -0.043701171875, + -0.0062255859375, + 0.0341796875, + -0.006378173828125, + -0.01123046875, + -0.04248046875, + 0.01226806640625, + -0.052978515625, + 0.0186767578125, + -0.049560546875, + 0.038818359375, + -0.0341796875, + -0.0245361328125, + -0.06982421875, + 0.0125732421875, + -0.01373291015625, + 0.0167236328125, + -0.0146484375, + -0.024169921875, + -0.038330078125, + -0.029541015625, + -0.0277099609375, + -0.0255126953125, + -0.04638671875, + 0.01324462890625, + 0.052734375, + 0.0233154296875, + 0.03662109375, + 0.03271484375, + 0.0107421875, + 0.019287109375, + 0.039794921875, + 0.0142822265625, + 0.0791015625, + 0.0286865234375, + 0.00494384765625, + 0.03662109375, + 0.00019073486328125, + -0.03955078125, + -0.00958251953125, + -0.00080108642578125, + -0.0062255859375, + 0.0179443359375, + 0.05615234375, + 0.021728515625, + 0.0263671875, + 0.00089263916015625, + 0.019287109375, + -0.0034332275390625, + -0.046630859375, + 0.00469970703125, + -0.04345703125, + 0.0198974609375, + -0.002838134765625, + -0.0458984375, + 0.0034332275390625, + 0.0072021484375, + -0.009765625, + 0.0191650390625, + -0.0213623046875, + -0.08837890625, + 0.0189208984375, + -0.13671875, + 0.005126953125, + 0.03173828125, + 0.017578125, + -0.03271484375, + 0.019287109375, + -0.040771484375, + 0.005340576171875, + -0.037841796875, + -0.05615234375, + -0.01092529296875, + -0.0166015625, + 0.05859375, + -0.0172119140625, + -0.025634765625, + 0.0181884765625, + -0.0206298828125, + -0.0299072265625, + 0.01177978515625, + -0.0264892578125, + -0.024169921875, + -0.00836181640625, + -0.0113525390625, + -0.037109375, + -0.01287841796875, + 0.0003299713134765625, + 0.01214599609375, + -0.0206298828125, + -0.04248046875, + -0.0277099609375, + -0.06201171875, + -0.05908203125, + 0.006500244140625, + 0.0247802734375, + -0.0086669921875, + -0.016357421875, + 0.0120849609375, + -0.025390625, + -0.0390625, + -0.005523681640625, + 0.0225830078125, + 0.03173828125, + -0.009765625, + 0.00433349609375, + -0.0225830078125, + 0.007293701171875, + -0.03759765625, + -0.00897216796875, + -0.0233154296875, + -0.0230712890625, + -0.05126953125, + -0.01806640625, + 0.0264892578125, + 0.0167236328125, + 0.0191650390625, + 0.0152587890625, + -0.037109375, + -0.036376953125, + 0.044189453125, + 0.044921875, + -0.000545501708984375, + 0.0322265625, + -0.0169677734375, + -0.02490234375, + -0.04833984375, + -0.003936767578125, + -0.0181884765625, + -0.01019287109375, + 0.05029296875, + -0.033935546875, + -0.06298828125, + 0.0205078125, + 0.0238037109375, + -0.0247802734375, + -0.00121307373046875, + -0.049072265625, + 0.033203125, + -0.004058837890625, + 0.0003795623779296875, + -0.052978515625, + -0.06640625, + 0.0390625, + -0.03173828125, + -0.03955078125, + 0.01611328125, + 0.0250244140625, + -0.0198974609375, + -0.029541015625, + -0.002227783203125, + -0.00299072265625, + -0.0255126953125, + 0.01318359375, + -0.004486083984375, + -0.03515625, + -0.038330078125, + -0.0062255859375, + -0.01348876953125, + 0.00762939453125, + -0.049560546875, + -0.0238037109375, + -0.0546875, + -0.01287841796875, + 0.019775390625, + 0.0269775390625, + -0.02001953125, + 0.0224609375, + 0.03369140625, + -0.04541015625, + -0.01104736328125, + -0.015869140625, + 0.013427734375, + -0.004180908203125, + -0.0098876953125, + -0.014892578125, + -0.017822265625, + -0.01611328125, + -0.0238037109375, + -0.0220947265625, + 0.0048828125, + 0.01470947265625, + -0.027099609375, + 0.01495361328125, + 0.008544921875, + 0.01239013671875, + -0.01507568359375, + -0.021728515625, + 0.05029296875, + 0.01446533203125, + -0.0167236328125, + 0.0230712890625, + 0.0034637451171875, + -0.03173828125, + 0.00885009765625, + 0.01416015625, + -0.010986328125, + 0.01104736328125, + -0.00811767578125, + 0.016357421875, + 0.00897216796875, + -0.0108642578125, + 0.01031494140625, + 0.00909423828125, + 0.01446533203125, + -0.018310546875, + -0.052001953125, + 0.037841796875, + -0.06640625, + -0.04736328125, + 0.06201171875, + 2.682209014892578e-05, + -0.007080078125, + 0.0595703125, + 0.0218505859375, + 0.041259765625, + -0.015869140625, + 0.01446533203125, + -0.03857421875, + -0.00799560546875, + -0.00543212890625, + 0.0146484375, + 0.01324462890625, + -0.01068115234375, + -0.005767822265625, + -0.040283203125, + 0.0164794921875, + 0.031494140625, + 0.00958251953125, + 0.046630859375, + 0.0244140625, + -0.00067138671875, + 0.01470947265625, + 0.0130615234375, + -0.0299072265625, + 0.021484375, + 0.006988525390625, + -0.03173828125, + 0.022705078125, + -0.0322265625, + 0.0380859375, + -0.037841796875, + 0.017822265625, + 0.04345703125, + 0.07568359375, + -0.04296875, + 0.01239013671875, + 0.0235595703125, + 0.025634765625, + 0.05029296875, + 0.01220703125, + 0.01531982421875, + -0.001373291015625, + 0.0179443359375, + 0.017578125, + -0.01153564453125, + 0.05419921875, + -0.03515625, + -0.001007080078125, + 0.01104736328125, + 0.0263671875, + 0.0634765625, + 0.0003604888916015625, + 0.0035247802734375, + -0.00045013427734375, + -0.0037994384765625, + -0.017333984375, + 0.03173828125, + -0.029541015625, + 0.041015625, + -0.076171875, + 0.025146484375, + -0.01611328125, + -0.0247802734375, + 0.057861328125, + 0.005126953125, + 0.01007080078125, + -0.025634765625, + 0.031005859375, + -0.03466796875, + 0.0341796875, + 0.012451171875, + -0.0201416015625, + 0.0167236328125, + -0.01708984375, + -0.06591796875, + 0.0050048828125, + 0.016845703125, + -0.042724609375, + -0.022705078125, + -0.021728515625, + -0.01324462890625, + -0.0191650390625, + 0.01025390625, + -0.006866455078125, + 0.068359375, + 0.01324462890625, + 0.037109375, + -0.006256103515625, + 0.06982421875, + 0.017333984375, + -0.038330078125, + 0.0498046875, + -0.005828857421875, + -0.0189208984375, + 0.052734375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 14.765936000003421, + "queue_ms": 1.2184260000083214, + "tokenization_ms": 0.02100100000745897, + "inference_ms": 13.391925999997056, + "postprocessing_ms": null + } + }, + { + "id": "chunk-16", + "dense": [ + -0.00506591796875, + -0.0303955078125, + -0.050048828125, + -0.005767822265625, + -0.0169677734375, + 0.0004024505615234375, + -4.792213439941406e-05, + -0.003753662109375, + -0.005645751953125, + 0.0294189453125, + -0.02392578125, + -0.00970458984375, + 0.00439453125, + 0.0179443359375, + 0.05615234375, + 0.00775146484375, + 0.01031494140625, + -0.03173828125, + -0.03369140625, + -0.02099609375, + -0.055419921875, + 0.0172119140625, + -0.033203125, + 0.03662109375, + -0.01446533203125, + 0.030029296875, + -0.027099609375, + -0.006378173828125, + 0.000514984130859375, + 0.03564453125, + 0.022216796875, + -0.0274658203125, + 0.0113525390625, + 0.0216064453125, + -0.04638671875, + -0.005523681640625, + -0.014892578125, + -0.0167236328125, + -0.03759765625, + -0.0224609375, + -0.016357421875, + -0.0274658203125, + 0.0228271484375, + -0.0087890625, + 0.046875, + -0.041748046875, + -0.0147705078125, + -0.0289306640625, + 0.0439453125, + 0.00787353515625, + -0.017822265625, + -0.0123291015625, + 0.02685546875, + -0.04541015625, + 0.022216796875, + 0.00115203857421875, + 0.0194091796875, + -0.0257568359375, + -0.0179443359375, + -0.0091552734375, + -0.0244140625, + 0.004547119140625, + 0.0032806396484375, + -0.00787353515625, + 0.01708984375, + 0.06884765625, + 0.0277099609375, + -0.0341796875, + -0.034423828125, + 0.009765625, + 0.0142822265625, + -0.006317138671875, + -0.000232696533203125, + 0.000881195068359375, + -0.02685546875, + 0.01470947265625, + 0.0206298828125, + -0.04248046875, + 0.0213623046875, + 0.051513671875, + 0.01397705078125, + -0.031982421875, + -0.0263671875, + 0.010986328125, + 0.0283203125, + 0.06298828125, + 0.01043701171875, + 0.0233154296875, + 0.0303955078125, + -0.0106201171875, + 0.032958984375, + 0.034423828125, + 0.078125, + 0.00107574462890625, + -0.04736328125, + -0.03173828125, + -0.006439208984375, + 0.01019287109375, + 0.0250244140625, + 0.005462646484375, + 0.037841796875, + -0.02001953125, + -0.00384521484375, + -0.021240234375, + 0.0218505859375, + -0.01092529296875, + 0.034912109375, + 0.04052734375, + 0.035888671875, + 0.013427734375, + 0.0203857421875, + -0.028076171875, + -0.00775146484375, + 0.00823974609375, + -0.051025390625, + -0.000896453857421875, + -0.01434326171875, + -0.0201416015625, + -0.00640869140625, + -0.044921875, + 0.04541015625, + -0.0216064453125, + 0.05029296875, + -0.037109375, + -0.022216796875, + -0.045654296875, + 0.0123291015625, + -0.036865234375, + -0.00811767578125, + -0.0029144287109375, + -0.0283203125, + 0.03125, + -0.00732421875, + 0.0299072265625, + -0.021240234375, + -0.007476806640625, + 0.0157470703125, + 0.01007080078125, + 0.00872802734375, + -0.0267333984375, + 0.037841796875, + 0.0196533203125, + -0.054931640625, + -0.039306640625, + 0.048583984375, + -0.0157470703125, + 0.0203857421875, + -0.0152587890625, + 0.018798828125, + -0.052490234375, + 0.00164031982421875, + -0.0032958984375, + 0.0036163330078125, + 0.004547119140625, + -0.01068115234375, + 0.01214599609375, + 0.047607421875, + 0.040771484375, + -0.01202392578125, + 0.006744384765625, + -0.02001953125, + 0.00933837890625, + -0.00119781494140625, + 0.06787109375, + 0.07470703125, + -0.009521484375, + 0.059814453125, + 0.01312255859375, + -0.0177001953125, + 0.005523681640625, + 0.00921630859375, + -0.052490234375, + 0.06103515625, + -0.01007080078125, + 0.01165771484375, + 0.035888671875, + 0.11474609375, + 0.03662109375, + 0.0155029296875, + -0.0263671875, + 0.01519775390625, + 0.04931640625, + -0.01336669921875, + 0.0162353515625, + -0.030029296875, + 0.07470703125, + 0.025146484375, + -0.048828125, + -0.0003566741943359375, + -0.0146484375, + -0.0111083984375, + -0.025146484375, + 0.05029296875, + 0.037353515625, + 0.062255859375, + -0.0274658203125, + 0.033447265625, + 0.035888671875, + -0.00848388671875, + -0.062255859375, + -0.028564453125, + 0.0220947265625, + 0.057861328125, + -0.0220947265625, + -0.04541015625, + -0.00011730194091796875, + 0.007049560546875, + -0.01324462890625, + 0.00616455078125, + -0.039306640625, + 0.053466796875, + 0.031494140625, + 0.0279541015625, + -0.05126953125, + -0.064453125, + -0.01080322265625, + -0.036865234375, + 0.017578125, + -0.05224609375, + -0.002777099609375, + 0.0264892578125, + 0.019775390625, + -0.041259765625, + -0.050537109375, + 0.0238037109375, + 0.0267333984375, + -0.048828125, + 0.03369140625, + 0.04443359375, + 0.0179443359375, + 0.031982421875, + -0.000942230224609375, + -0.02197265625, + -0.006927490234375, + 0.039306640625, + 0.032958984375, + -0.00823974609375, + 0.018310546875, + 0.00396728515625, + 0.0615234375, + 0.031494140625, + 0.014404296875, + -0.00848388671875, + -0.021240234375, + -0.015625, + 0.0147705078125, + 0.0225830078125, + 0.0250244140625, + -0.03759765625, + -0.0191650390625, + 0.04052734375, + 0.01611328125, + -0.046875, + 0.006317138671875, + 0.03173828125, + 0.041259765625, + -0.0218505859375, + -0.0262451171875, + 0.017578125, + -0.017333984375, + 0.0269775390625, + 0.08984375, + 0.0380859375, + 0.01904296875, + 0.01708984375, + -0.0106201171875, + 0.005157470703125, + 0.00531005859375, + 0.041748046875, + 0.01123046875, + -0.0281982421875, + -0.0262451171875, + -0.0185546875, + -0.00188446044921875, + 0.0004291534423828125, + 0.0274658203125, + 0.00396728515625, + -0.02587890625, + 0.078125, + -0.027587890625, + -0.0093994140625, + -0.01373291015625, + 0.000308990478515625, + -0.0277099609375, + 0.006866455078125, + -0.04443359375, + -0.028076171875, + -0.00145721435546875, + 0.01336669921875, + -0.029541015625, + -0.001708984375, + 0.007080078125, + 0.061279296875, + -0.00628662109375, + 0.00885009765625, + 0.001617431640625, + -0.016845703125, + -0.16796875, + -0.01611328125, + 0.006591796875, + 0.035400390625, + 0.0213623046875, + 0.0233154296875, + -0.03466796875, + -0.039306640625, + -0.035888671875, + 0.012451171875, + -0.0028533935546875, + -0.055908203125, + -0.014892578125, + 6.389617919921875e-05, + 0.023193359375, + 0.021484375, + 0.00127410888671875, + -0.015380859375, + 0.03759765625, + -0.0498046875, + -0.0018768310546875, + 0.0174560546875, + -0.01104736328125, + 0.0111083984375, + -0.013671875, + -0.03759765625, + 0.08056640625, + 0.0299072265625, + 0.0032196044921875, + -0.017822265625, + -0.03173828125, + 0.00078582763671875, + -0.01226806640625, + 0.03759765625, + 0.0098876953125, + 0.0017547607421875, + 0.0050048828125, + -0.035400390625, + 0.046875, + 0.00127410888671875, + 7.915496826171875e-05, + 0.0595703125, + -0.03515625, + 0.03271484375, + 0.001251220703125, + -0.0732421875, + 0.01190185546875, + 0.01080322265625, + -0.0203857421875, + -0.030517578125, + -0.0279541015625, + 0.000484466552734375, + -0.007781982421875, + -0.03271484375, + -0.00787353515625, + -0.026123046875, + 0.04443359375, + -0.018310546875, + -0.041259765625, + 0.02001953125, + -0.0234375, + -0.05615234375, + -0.0213623046875, + -0.02392578125, + -0.000827789306640625, + 0.004486083984375, + 0.044189453125, + -0.0216064453125, + 0.0267333984375, + -0.03125, + -0.00074005126953125, + 0.0234375, + -0.00072479248046875, + 0.011962890625, + -0.0068359375, + 0.004608154296875, + -0.06298828125, + -0.04931640625, + 0.0230712890625, + -0.0859375, + -0.0322265625, + 0.03955078125, + -0.000919342041015625, + 0.007598876953125, + -0.006561279296875, + -0.0419921875, + -0.01287841796875, + -0.000820159912109375, + 0.08056640625, + 0.2314453125, + 0.003082275390625, + -0.078125, + -0.012451171875, + 0.01190185546875, + 0.008056640625, + -0.0208740234375, + -0.020751953125, + -0.01019287109375, + -0.0400390625, + -0.08642578125, + -0.01275634765625, + 0.023681640625, + -0.0064697265625, + 0.0028228759765625, + 0.0283203125, + -0.033447265625, + 0.01953125, + 0.07421875, + -0.0026092529296875, + 0.0478515625, + 0.017333984375, + 0.05419921875, + -3.110617399215698e-07, + -0.08642578125, + 0.005767822265625, + -0.036376953125, + 0.02734375, + -0.0036163330078125, + 0.022705078125, + -0.01373291015625, + -0.004302978515625, + 0.036865234375, + -0.01434326171875, + -0.052734375, + 0.0263671875, + 0.00433349609375, + -0.0595703125, + 0.047607421875, + 0.028076171875, + -0.00738525390625, + 0.006072998046875, + 0.017333984375, + -0.0262451171875, + 0.0267333984375, + 0.0003528594970703125, + -0.006072998046875, + -0.00194549560546875, + -0.0281982421875, + 0.0196533203125, + -0.00909423828125, + 0.0380859375, + -0.027099609375, + -0.0031585693359375, + -0.030517578125, + 0.0012359619140625, + -0.0169677734375, + -0.004180908203125, + -0.004180908203125, + 0.050048828125, + 0.046875, + 0.0252685546875, + 0.00897216796875, + -0.03173828125, + -0.00055694580078125, + 0.002685546875, + -0.013427734375, + 0.01434326171875, + -0.0140380859375, + 0.038330078125, + 0.0034332275390625, + 0.022705078125, + -0.00653076171875, + 0.048095703125, + 0.003662109375, + -0.033447265625, + 0.0283203125, + 0.06494140625, + -0.029296875, + -0.0390625, + -0.0306396484375, + -0.003875732421875, + -0.0125732421875, + -0.0029296875, + -0.002655029296875, + -0.01275634765625, + 0.0194091796875, + 0.06396484375, + -0.0098876953125, + 0.005096435546875, + 0.01507568359375, + -0.0021209716796875, + -0.036865234375, + 0.03662109375, + -0.01458740234375, + 0.028564453125, + 0.000732421875, + 0.0123291015625, + -0.01611328125, + 0.000732421875, + 0.0179443359375, + -0.017578125, + -0.058837890625, + 0.0703125, + -0.0186767578125, + -0.0263671875, + -0.026123046875, + 0.0201416015625, + 0.006591796875, + -0.01165771484375, + -0.045166015625, + -0.006072998046875, + -0.003265380859375, + -0.020751953125, + 0.023681640625, + -0.00701904296875, + -0.0517578125, + 0.033203125, + 0.00323486328125, + 0.048583984375, + -0.02880859375, + 0.035888671875, + 0.0079345703125, + 0.037841796875, + -0.01324462890625, + -0.0087890625, + -0.0234375, + -0.021240234375, + -0.000782012939453125, + 0.0546875, + 0.0478515625, + -0.0380859375, + -0.044189453125, + -0.016357421875, + 0.048828125, + 0.01556396484375, + -0.01611328125, + 0.0240478515625, + -0.020263671875, + 0.002685546875, + 0.00135040283203125, + -0.0291748046875, + -0.0218505859375, + -0.0115966796875, + -0.00909423828125, + -0.033935546875, + -0.0022735595703125, + 0.0036773681640625, + -0.057861328125, + -0.01123046875, + 0.02587890625, + 0.0186767578125, + -0.02490234375, + -0.04736328125, + -0.04052734375, + 0.01214599609375, + -0.0203857421875, + -0.034912109375, + 0.002349853515625, + -0.0286865234375, + -0.017333984375, + 0.038330078125, + -0.0186767578125, + 0.0390625, + 0.0181884765625, + 0.00946044921875, + -0.036376953125, + 0.009521484375, + 0.03662109375, + -0.02197265625, + -0.028564453125, + -0.027587890625, + -0.048583984375, + 0.0036468505859375, + 0.01190185546875, + -0.0027618408203125, + -0.07763671875, + 0.006561279296875, + 0.005096435546875, + 0.007598876953125, + 0.0185546875, + 0.00323486328125, + -0.037109375, + -0.01226806640625, + 0.0003910064697265625, + 0.02978515625, + 0.00982666015625, + -0.0169677734375, + -0.01153564453125, + -0.04638671875, + -0.080078125, + 0.080078125, + -0.0157470703125, + -0.004119873046875, + -0.0072021484375, + 0.00052642822265625, + 0.042724609375, + 0.044189453125, + 0.0322265625, + -0.0101318359375, + -0.02587890625, + -0.006317138671875, + 0.000629425048828125, + 0.0269775390625, + 0.02490234375, + 0.0037384033203125, + 0.00714111328125, + 0.0250244140625, + -0.004638671875, + 0.03662109375, + 0.00872802734375, + 0.017578125, + -0.06591796875, + 0.0050048828125, + 0.02392578125, + 0.015869140625, + 0.049072265625, + 0.0135498046875, + -0.01434326171875, + -0.0703125, + 0.00653076171875, + -0.00188446044921875, + 0.048583984375, + -0.05615234375, + -0.01007080078125, + 0.000308990478515625, + 0.01275634765625, + 0.006256103515625, + 0.00628662109375, + 0.052490234375, + 0.006072998046875, + -0.05029296875, + -0.00958251953125, + -0.03662109375, + 0.0074462890625, + 0.0027313232421875, + 0.01251220703125, + 0.00762939453125, + 0.0166015625, + -0.0234375, + -0.0164794921875, + -0.045654296875, + 0.030029296875, + -0.002105712890625, + 0.0206298828125, + -0.01019287109375, + 0.016845703125, + -0.013427734375, + 0.0361328125, + 0.002899169921875, + 0.0018768310546875, + -0.0164794921875, + 0.000728607177734375, + -0.050048828125, + 0.033935546875, + 0.032470703125, + 0.03759765625, + -0.00433349609375, + -0.0174560546875, + -0.002777099609375, + -0.028564453125, + 0.0191650390625, + 0.00299072265625, + -0.00823974609375, + -0.02880859375, + -0.005859375, + 0.0107421875, + 0.0595703125, + -0.041748046875, + -0.0859375, + 0.0201416015625, + -0.00421142578125, + 0.01220703125, + -0.049072265625, + -0.06591796875, + 0.02099609375, + -0.060302734375, + 0.06982421875, + 0.03369140625, + 0.01251220703125, + -0.046875, + -0.01495361328125, + 0.041748046875, + 0.0291748046875, + -0.033935546875, + 0.0087890625, + -0.000484466552734375, + -0.0048828125, + -0.016357421875, + -0.010986328125, + 0.037841796875, + -0.0186767578125, + -0.0220947265625, + 0.03369140625, + -0.0269775390625, + -0.035888671875, + -0.02001953125, + 0.035400390625, + -0.0380859375, + 0.01470947265625, + -0.013671875, + 0.033935546875, + -0.0087890625, + -0.016845703125, + 0.01708984375, + 0.04638671875, + -0.041259765625, + -0.0625, + -0.019775390625, + -0.002288818359375, + -0.0301513671875, + -0.0034637451171875, + 0.035888671875, + 0.038818359375, + -0.0262451171875, + 0.0130615234375, + -0.00555419921875, + 0.036376953125, + -0.0208740234375, + 0.046142578125, + -0.0208740234375, + -0.01226806640625, + -0.0245361328125, + 0.0230712890625, + -0.00823974609375, + 0.017333984375, + -0.02587890625, + 0.01531982421875, + -0.001617431640625, + 0.004547119140625, + -0.0130615234375, + 0.0034332275390625, + 0.0208740234375, + -0.00848388671875, + 0.02392578125, + -0.0186767578125, + 0.005828857421875, + -0.02001953125, + 0.00823974609375, + -0.01068115234375, + 0.01446533203125, + 0.004547119140625, + 0.0634765625, + -0.0269775390625, + 0.00396728515625, + -0.010009765625, + -0.032958984375, + -0.017822265625, + 0.01092529296875, + 0.01007080078125, + 0.020751953125, + 0.0107421875, + -0.0096435546875, + -0.033203125, + -0.06298828125, + -0.005035400390625, + 0.0225830078125, + 0.01495361328125, + 0.0400390625, + 0.0322265625, + 0.01324462890625, + 0.0361328125, + 0.00176239013671875, + 0.0032958984375, + 0.00982666015625, + 0.0245361328125, + 0.01226806640625, + 0.01806640625, + 0.01507568359375, + -0.005645751953125, + -0.01458740234375, + 0.005615234375, + 0.044189453125, + -0.02734375, + -0.00125885009765625, + 0.0067138671875, + 0.01171875, + 0.03515625, + 0.00157928466796875, + 0.00014209747314453125, + -0.037841796875, + 0.00244140625, + -0.0162353515625, + -0.031494140625, + -0.044921875, + 0.030517578125, + -0.050048828125, + -0.007659912109375, + 0.033935546875, + 0.00469970703125, + -0.04052734375, + 0.0255126953125, + -0.0299072265625, + -0.005523681640625, + -0.140625, + 0.0028839111328125, + 0.0150146484375, + -0.0177001953125, + -0.0294189453125, + 0.023681640625, + -0.0208740234375, + -0.01220703125, + 0.00408935546875, + -0.0264892578125, + 0.006134033203125, + 0.044921875, + 0.010498046875, + -0.01092529296875, + -0.02587890625, + 0.0299072265625, + -0.039306640625, + -0.030029296875, + -0.02734375, + 0.041259765625, + 0.0164794921875, + 0.0081787109375, + 0.046142578125, + 0.0267333984375, + 0.034912109375, + -0.0419921875, + 0.0003528594970703125, + -0.021484375, + -0.0294189453125, + 0.00787353515625, + -0.0281982421875, + -0.09619140625, + 0.01336669921875, + 0.05517578125, + 0.0299072265625, + -0.00274658203125, + 0.022216796875, + 0.00390625, + -0.0181884765625, + -0.0054931640625, + -0.00732421875, + 0.014892578125, + -0.0439453125, + 0.0230712890625, + -0.036376953125, + 0.03515625, + -0.050537109375, + -0.014404296875, + 0.00567626953125, + -0.027587890625, + -0.0177001953125, + 0.0050048828125, + -0.0185546875, + -0.006988525390625, + 0.00836181640625, + -0.01129150390625, + 0.0306396484375, + -0.00762939453125, + 0.028564453125, + 0.06591796875, + 0.0576171875, + 0.0194091796875, + -0.0025482177734375, + -0.06982421875, + -0.038330078125, + 0.008056640625, + -0.007781982421875, + -0.01202392578125, + 0.041259765625, + -0.01495361328125, + -0.06298828125, + -0.0245361328125, + -0.0135498046875, + 0.0022125244140625, + 0.007476806640625, + -0.03759765625, + -0.006744384765625, + 0.0027618408203125, + -0.01397705078125, + -0.0074462890625, + -0.0654296875, + -0.04052734375, + -0.0478515625, + -0.0213623046875, + 0.06103515625, + -0.01019287109375, + 0.0264892578125, + -0.0096435546875, + -0.0252685546875, + -0.00341796875, + -0.0703125, + 0.0093994140625, + -0.0277099609375, + 0.04150390625, + -0.076171875, + -0.0107421875, + -0.02001953125, + -0.00176239013671875, + -0.037109375, + -0.002471923828125, + -0.029541015625, + 0.006378173828125, + 0.033447265625, + 0.0019683837890625, + -0.00897216796875, + -0.055419921875, + 0.04052734375, + -0.0089111328125, + -0.0179443359375, + 0.006866455078125, + -0.016845703125, + 0.015869140625, + -0.047607421875, + -0.0498046875, + 0.014892578125, + 0.0177001953125, + -0.00396728515625, + -0.0118408203125, + -0.03125, + 0.02880859375, + -0.01611328125, + 0.0033721923828125, + 0.02734375, + -0.01708984375, + -0.0167236328125, + 0.039306640625, + 0.0244140625, + 0.03955078125, + -0.01458740234375, + -0.01397705078125, + 0.0213623046875, + -0.06787109375, + 0.0164794921875, + 0.0174560546875, + 0.0206298828125, + 0.0152587890625, + -0.045654296875, + 0.00982666015625, + -0.01519775390625, + -0.007476806640625, + 0.0234375, + -0.030029296875, + 0.01104736328125, + -0.0341796875, + -0.016357421875, + 0.0311279296875, + 0.00982666015625, + 0.01385498046875, + 0.0032806396484375, + -0.05126953125, + -0.007232666015625, + -0.000370025634765625, + -0.03173828125, + 0.07373046875, + -0.0289306640625, + 0.02587890625, + 0.044189453125, + 0.0036163330078125, + 0.0025177001953125, + -0.0086669921875, + -0.0111083984375, + -0.0118408203125, + -0.031494140625, + -0.01397705078125, + 0.01324462890625, + 0.029541015625, + 0.0103759765625, + 0.02392578125, + 0.0224609375, + -0.017822265625, + 0.04150390625, + 0.00897216796875, + -0.020263671875, + -0.00762939453125, + 0.046142578125, + -0.07373046875, + 0.018798828125, + 0.0027008056640625, + 0.004638671875, + -0.0322265625, + 0.0269775390625, + 0.021240234375, + 0.028076171875, + 0.000759124755859375, + 0.033447265625, + -0.0157470703125, + 0.01470947265625, + 0.043212890625, + -0.04052734375, + -0.022705078125, + 0.031982421875, + -0.010009765625, + -0.0047607421875, + -0.047607421875, + 0.031494140625, + -0.00836181640625, + 0.007293701171875, + 0.034423828125, + 0.02734375, + -0.01446533203125, + -0.01434326171875, + -0.0177001953125, + 0.01495361328125, + -0.0010986328125, + -0.025634765625, + 0.06005859375, + 0.0048828125, + 0.01446533203125, + -0.0196533203125, + -0.000461578369140625, + -0.040771484375, + -0.0289306640625, + -0.0086669921875, + 0.020263671875, + -0.0419921875, + -0.004638671875, + -0.022705078125, + -0.027099609375, + -0.00372314453125, + -0.03515625, + 0.0106201171875, + 0.0130615234375, + -0.00897216796875, + -0.01275634765625, + -0.040771484375, + 0.01416015625, + 0.01275634765625, + -0.00341796875, + -0.038330078125, + 0.0159912109375, + 0.0233154296875, + -0.0067138671875, + 0.00628662109375, + 0.030517578125, + 0.031982421875, + -0.0093994140625, + -0.03955078125, + -0.0026092529296875, + 0.00360107421875, + -0.01348876953125, + 0.01287841796875, + 0.00250244140625, + 0.010986328125, + 0.027587890625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.744657000003826, + "queue_ms": 0.11244200000248838, + "tokenization_ms": 0.017149999990806464, + "inference_ms": 16.198735999992664, + "postprocessing_ms": null + } + }, + { + "id": "chunk-17", + "dense": [ + 0.035400390625, + -0.0081787109375, + -0.026123046875, + 0.007659912109375, + -0.0225830078125, + -0.0172119140625, + 0.022705078125, + 0.0267333984375, + 0.0038909912109375, + 0.0147705078125, + -0.01043701171875, + -0.02685546875, + -0.04248046875, + -0.006072998046875, + 0.03662109375, + 0.014404296875, + 0.06982421875, + -0.038330078125, + 0.007354736328125, + -0.0177001953125, + -0.00390625, + 0.010009765625, + -0.0177001953125, + 0.0361328125, + 0.0220947265625, + -0.00799560546875, + -0.08154296875, + 0.00194549560546875, + 0.01544189453125, + 0.0034942626953125, + -0.0260009765625, + 0.01611328125, + 0.01141357421875, + 0.0302734375, + -0.039794921875, + 0.016845703125, + -0.00311279296875, + 0.01385498046875, + -0.044677734375, + 0.0228271484375, + -0.04345703125, + -0.027099609375, + 0.021484375, + 0.001495361328125, + 0.01953125, + -0.0255126953125, + -0.0206298828125, + -0.03173828125, + 0.0198974609375, + -0.0208740234375, + -0.00347900390625, + -0.0019989013671875, + 0.033935546875, + -0.01043701171875, + 0.0015716552734375, + 0.0010528564453125, + -0.0167236328125, + -0.02734375, + -0.058837890625, + -0.0012359619140625, + -0.04736328125, + 0.00128173828125, + 0.0198974609375, + -0.0274658203125, + -0.010009765625, + 0.09326171875, + 0.01806640625, + 0.0194091796875, + -0.02392578125, + -0.007049560546875, + -0.043212890625, + -0.0291748046875, + -0.02099609375, + 0.01495361328125, + -0.04248046875, + 0.048583984375, + 0.038330078125, + -0.033447265625, + 0.0189208984375, + 0.029541015625, + 0.04052734375, + -0.01806640625, + -0.04736328125, + -0.004425048828125, + 0.044189453125, + 0.00836181640625, + -0.027099609375, + 0.049072265625, + -0.016357421875, + -0.0281982421875, + 0.044189453125, + 4.00543212890625e-05, + 0.0145263671875, + -0.01806640625, + -0.0311279296875, + -0.059814453125, + 0.0142822265625, + -0.03662109375, + 0.01031494140625, + -0.0012359619140625, + 0.00799560546875, + -0.0306396484375, + 0.041748046875, + -0.01611328125, + 0.03369140625, + -0.02783203125, + -0.0098876953125, + 0.02880859375, + 0.018798828125, + 0.0113525390625, + 0.0257568359375, + 0.0322265625, + 0.0172119140625, + 0.0037689208984375, + -0.02685546875, + 0.00244140625, + -0.036376953125, + -0.04345703125, + 0.00933837890625, + -0.048095703125, + 0.03759765625, + 0.0107421875, + -0.0062255859375, + 0.0107421875, + 0.0081787109375, + -0.04248046875, + 0.0220947265625, + 0.0162353515625, + 0.059814453125, + -0.007080078125, + -0.014404296875, + -0.0208740234375, + -0.01190185546875, + 0.03369140625, + -0.03076171875, + -0.0189208984375, + -0.01129150390625, + 0.01708984375, + 0.01446533203125, + -0.03759765625, + 0.0888671875, + 0.03369140625, + -0.0126953125, + -0.0030059814453125, + -0.005218505859375, + -0.0084228515625, + 0.005279541015625, + -0.0128173828125, + -0.00165557861328125, + -0.0419921875, + -0.01214599609375, + 0.0267333984375, + 0.044677734375, + -0.01531982421875, + -0.026123046875, + 0.055419921875, + 0.0118408203125, + 0.0107421875, + -0.0021514892578125, + 0.0654296875, + 0.01025390625, + 0.0277099609375, + -0.013427734375, + -0.006866455078125, + 0.0272216796875, + -0.0068359375, + 0.022216796875, + 0.0419921875, + -0.025146484375, + 0.01202392578125, + 0.06298828125, + -0.055908203125, + 0.01361083984375, + -0.038330078125, + -0.029052734375, + 0.0257568359375, + 0.062255859375, + 0.029541015625, + 0.00154876708984375, + -0.0302734375, + 0.0274658203125, + -0.01116943359375, + 0.01202392578125, + 0.059814453125, + 0.0087890625, + 0.044189453125, + -0.0019683837890625, + -0.0181884765625, + 0.0206298828125, + 0.0052490234375, + -0.016357421875, + 0.022705078125, + -0.0556640625, + 0.037109375, + 0.049560546875, + 0.004241943359375, + 0.0458984375, + -0.0245361328125, + -0.0311279296875, + -0.01275634765625, + 0.00421142578125, + 0.0020599365234375, + 0.037353515625, + -0.00640869140625, + -0.029052734375, + 0.004364013671875, + -0.02197265625, + -0.0284423828125, + -0.0341796875, + -0.04736328125, + 0.0003871917724609375, + -0.0191650390625, + 0.0322265625, + -0.0081787109375, + -0.04052734375, + 0.0439453125, + 0.0093994140625, + -0.02490234375, + -0.0191650390625, + 3.2901763916015625e-05, + 0.011962890625, + 0.044189453125, + -0.0133056640625, + -0.05078125, + 0.0361328125, + -0.041259765625, + 0.00537109375, + 0.00592041015625, + 0.0069580078125, + -0.039306640625, + 0.020263671875, + -0.00311279296875, + -0.035400390625, + -0.022216796875, + 0.01806640625, + 0.0264892578125, + -0.0255126953125, + 0.00537109375, + -0.006195068359375, + 0.03759765625, + 0.0419921875, + -0.0174560546875, + -0.0179443359375, + -0.007080078125, + -0.01080322265625, + -0.00836181640625, + 0.002716064453125, + 0.0301513671875, + -0.016845703125, + 0.0186767578125, + 0.005828857421875, + 0.00872802734375, + -0.02783203125, + -0.0125732421875, + 0.02490234375, + 0.0361328125, + -0.00628662109375, + 0.00860595703125, + 0.0111083984375, + 0.0279541015625, + 0.0179443359375, + 0.05419921875, + 0.0189208984375, + 0.00897216796875, + 0.0272216796875, + -0.00592041015625, + -0.004425048828125, + -0.0277099609375, + 0.0439453125, + 0.0035400390625, + -0.0177001953125, + -0.031494140625, + -0.010986328125, + -0.00506591796875, + -0.00787353515625, + 0.03125, + 0.016845703125, + -0.009521484375, + 0.017578125, + -0.0537109375, + 0.004180908203125, + -0.03759765625, + 0.0032501220703125, + -0.053466796875, + -0.003387451171875, + -0.0257568359375, + -0.04052734375, + -0.0299072265625, + 3.5762786865234375e-05, + -0.0091552734375, + -0.01953125, + -0.03564453125, + 0.05224609375, + -0.040771484375, + -0.0027923583984375, + 0.0390625, + -0.022705078125, + -0.185546875, + -0.0101318359375, + -0.009765625, + 0.0208740234375, + 0.0115966796875, + 0.01507568359375, + -0.0228271484375, + -0.07275390625, + -0.0186767578125, + 0.032958984375, + 0.017333984375, + -0.033935546875, + 0.00799560546875, + -0.015869140625, + -0.00970458984375, + 0.0079345703125, + -0.0255126953125, + 0.01275634765625, + 0.01287841796875, + -0.0400390625, + 0.036376953125, + 0.04052734375, + 0.00106048583984375, + 0.0311279296875, + -0.017822265625, + -0.00347900390625, + 0.06787109375, + 0.0068359375, + -0.0007476806640625, + 0.02197265625, + -0.0238037109375, + -0.042236328125, + -0.00970458984375, + 0.010986328125, + 0.0196533203125, + 0.0306396484375, + 0.023193359375, + -0.06640625, + 0.0301513671875, + -0.0024871826171875, + -0.0128173828125, + 0.0673828125, + -0.0361328125, + -0.0029754638671875, + 0.0257568359375, + -0.0615234375, + 0.00982666015625, + 0.0179443359375, + -0.0615234375, + -0.064453125, + -0.03125, + -0.0306396484375, + -0.051513671875, + 0.0242919921875, + -0.0311279296875, + 0.030517578125, + 0.016357421875, + -0.037841796875, + 0.0069580078125, + 0.03857421875, + -0.0189208984375, + -0.04345703125, + 0.0059814453125, + 0.00080108642578125, + -0.0220947265625, + -0.051513671875, + 0.038330078125, + 0.0361328125, + 0.007049560546875, + -0.017578125, + -0.0284423828125, + 0.0299072265625, + 0.01025390625, + 0.023681640625, + 0.0038299560546875, + -0.004425048828125, + -0.034423828125, + -0.037841796875, + -0.033203125, + -0.06640625, + -0.03125, + 0.0185546875, + 0.0281982421875, + 0.0027008056640625, + -0.025146484375, + -0.07861328125, + 0.03759765625, + 0.0045166015625, + 0.0361328125, + 0.21875, + 0.0081787109375, + -0.054443359375, + -0.0240478515625, + 0.03369140625, + -0.0311279296875, + 0.01025390625, + -0.029541015625, + 0.03369140625, + -0.0458984375, + -0.0128173828125, + 0.049072265625, + 0.009521484375, + -0.01019287109375, + -0.004791259765625, + 0.042236328125, + -0.0037384033203125, + 0.013427734375, + 0.056640625, + -1.6570091247558594e-05, + 0.052978515625, + 0.01446533203125, + 0.051025390625, + -0.060302734375, + -0.041259765625, + 0.046875, + 0.00848388671875, + 0.026611328125, + 0.01287841796875, + 0.006622314453125, + -0.00537109375, + 0.0194091796875, + 0.01416015625, + 0.016845703125, + -0.0181884765625, + 0.046630859375, + 0.02734375, + -0.04345703125, + -0.01409912109375, + -0.0045166015625, + -0.0308837890625, + 0.0045166015625, + -0.031494140625, + -0.041259765625, + -0.0283203125, + -0.05126953125, + -0.00653076171875, + -0.01385498046875, + -0.005828857421875, + 0.00156402587890625, + -0.0198974609375, + 0.04345703125, + 0.0184326171875, + -4.947185516357422e-06, + 0.0198974609375, + 0.000759124755859375, + -0.0130615234375, + 0.06689453125, + 0.0108642578125, + 0.052978515625, + 0.046875, + 0.029541015625, + -0.02001953125, + -0.000553131103515625, + -0.01611328125, + 0.0191650390625, + 0.00921630859375, + 0.0174560546875, + -0.011962890625, + 0.05908203125, + 0.034912109375, + 0.01116943359375, + -0.0419921875, + 0.0169677734375, + -0.002960205078125, + -0.049072265625, + -0.00160980224609375, + 0.0625, + -0.03466796875, + 0.013916015625, + -0.0113525390625, + -0.00946044921875, + -0.016845703125, + -0.0026397705078125, + 0.0125732421875, + -0.01446533203125, + 0.041259765625, + 0.020263671875, + 0.014404296875, + 0.0341796875, + -0.041015625, + -0.00762939453125, + 0.0069580078125, + -5.91278076171875e-05, + -0.045166015625, + 0.0306396484375, + 0.0478515625, + 0.01416015625, + 0.00013256072998046875, + 0.02099609375, + 0.011962890625, + 0.021484375, + -0.011962890625, + 0.05419921875, + 0.05126953125, + 0.005279541015625, + -0.016357421875, + 0.0030975341796875, + -0.07666015625, + 0.004486083984375, + -0.0194091796875, + 0.0245361328125, + -0.0111083984375, + -0.017333984375, + 0.0157470703125, + 0.0198974609375, + -0.049560546875, + 0.042236328125, + 0.00579833984375, + 0.00982666015625, + -0.0257568359375, + 0.00543212890625, + -0.01904296875, + 0.061767578125, + -0.004364013671875, + -0.02392578125, + -0.03369140625, + -0.021484375, + 0.02294921875, + 0.04638671875, + 0.0159912109375, + 0.0177001953125, + 0.016357421875, + -0.0185546875, + 0.03662109375, + 0.04443359375, + 0.0234375, + 0.016845703125, + -0.06298828125, + 0.00921630859375, + -0.016357421875, + 0.052490234375, + -0.045166015625, + -0.040771484375, + -0.0054931640625, + -0.0172119140625, + -0.0732421875, + -0.00177764892578125, + -0.0194091796875, + 0.00830078125, + -0.01806640625, + 0.041015625, + 0.0145263671875, + -0.03173828125, + 0.002960205078125, + -0.006256103515625, + -0.029052734375, + -0.0272216796875, + -0.0255126953125, + -0.01165771484375, + 0.033447265625, + 0.055419921875, + 0.052001953125, + 0.07421875, + 0.0115966796875, + -0.0419921875, + -0.0537109375, + -0.0223388671875, + 0.0048828125, + 0.0361328125, + -0.00885009765625, + -0.01190185546875, + -0.06640625, + -0.01611328125, + 0.051513671875, + 0.0037689208984375, + -0.052001953125, + -0.00469970703125, + -0.0177001953125, + 0.054443359375, + 0.00927734375, + 0.02294921875, + -0.041015625, + -0.02734375, + -0.021728515625, + -0.01458740234375, + -0.050048828125, + -0.01397705078125, + 0.0211181640625, + -0.028564453125, + -0.05810546875, + 0.083984375, + 0.003265380859375, + -0.0196533203125, + 0.015869140625, + 0.01116943359375, + 0.0242919921875, + -0.0125732421875, + -0.0128173828125, + -0.018310546875, + -0.01422119140625, + -0.0108642578125, + -0.0306396484375, + 0.029052734375, + -0.0228271484375, + 0.00165557861328125, + -0.040771484375, + 0.007415771484375, + -0.022705078125, + -0.02099609375, + 0.027099609375, + 0.022705078125, + 0.009033203125, + 0.000881195068359375, + 0.020263671875, + 0.00408935546875, + 0.0849609375, + 0.0025482177734375, + -0.0076904296875, + -0.0308837890625, + 0.0274658203125, + 0.0019989013671875, + 0.0247802734375, + -0.06396484375, + -0.03857421875, + 0.005157470703125, + -0.02294921875, + -0.07080078125, + 0.0174560546875, + 0.0185546875, + 0.0086669921875, + -0.02490234375, + 0.01275634765625, + -0.0050048828125, + -0.0033111572265625, + 0.0322265625, + 0.0098876953125, + 0.041748046875, + 0.0220947265625, + -0.0174560546875, + 0.01385498046875, + -0.07080078125, + 0.0225830078125, + 0.033935546875, + 0.0302734375, + 0.0294189453125, + 0.005401611328125, + -0.03466796875, + 0.0062255859375, + -0.01513671875, + -0.044189453125, + 0.006805419921875, + 0.0184326171875, + -0.0537109375, + 0.0189208984375, + 0.030517578125, + -0.01055908203125, + 0.01446533203125, + -0.04443359375, + -0.0250244140625, + -0.05224609375, + -0.010498046875, + -0.01422119140625, + 0.003570556640625, + 0.01397705078125, + -0.052490234375, + 0.0030517578125, + 0.0223388671875, + -0.038330078125, + -0.07666015625, + 0.00714111328125, + -0.019775390625, + -0.037109375, + -0.046630859375, + 0.0211181640625, + 0.0296630859375, + 0.0255126953125, + 0.0419921875, + -0.003814697265625, + 0.021728515625, + -0.0267333984375, + 0.028564453125, + 0.0020751953125, + 0.04345703125, + 0.000865936279296875, + -0.01361083984375, + 0.0458984375, + -0.0260009765625, + 0.0174560546875, + -0.0152587890625, + 0.0186767578125, + -0.06689453125, + -0.01202392578125, + 0.0400390625, + -0.023681640625, + 0.0277099609375, + 0.0262451171875, + 0.0162353515625, + 0.000408172607421875, + -0.005523681640625, + 0.02490234375, + -0.0206298828125, + -0.0225830078125, + -0.026611328125, + -0.006622314453125, + 0.0024871826171875, + 0.015380859375, + -0.0031890869140625, + 0.035400390625, + -0.000499725341796875, + 0.01080322265625, + -0.05908203125, + 0.0062255859375, + 0.01483154296875, + -0.026123046875, + -0.00885009765625, + 0.031494140625, + 0.027099609375, + -0.00531005859375, + 0.0181884765625, + -0.059326171875, + -0.00958251953125, + -0.02880859375, + 0.01470947265625, + -0.01324462890625, + 0.045166015625, + -0.06689453125, + 0.01141357421875, + -0.0152587890625, + -0.0159912109375, + -0.037109375, + 0.0208740234375, + -0.0010528564453125, + 0.0002498626708984375, + 0.009521484375, + -0.0225830078125, + 0.021240234375, + -0.01129150390625, + -0.00750732421875, + -0.034912109375, + 0.037841796875, + 0.00665283203125, + 0.00457763671875, + -0.0185546875, + -0.004791259765625, + -0.0186767578125, + -0.006683349609375, + -0.01275634765625, + 0.057861328125, + -0.00506591796875, + -0.0014495849609375, + 0.000396728515625, + -0.048828125, + -0.037353515625, + 0.00946044921875, + -0.0274658203125, + 0.048828125, + 0.030029296875, + -0.004425048828125, + -0.0040283203125, + -0.004852294921875, + 0.031494140625, + -0.0167236328125, + 0.0003223419189453125, + 0.00164031982421875, + 0.041259765625, + -0.00762939453125, + 0.0135498046875, + 0.015625, + -0.00531005859375, + -0.0208740234375, + -0.0166015625, + -0.01220703125, + 0.03857421875, + -0.00897216796875, + 0.0234375, + 0.037841796875, + 0.007080078125, + 0.04541015625, + -0.017822265625, + -0.0108642578125, + 0.0107421875, + 0.023681640625, + -0.0255126953125, + -0.004058837890625, + -0.00390625, + -0.08447265625, + -0.0021820068359375, + 0.0159912109375, + 0.02392578125, + -0.03369140625, + 0.000499725341796875, + -0.0247802734375, + -0.01483154296875, + -0.146484375, + 0.041015625, + 0.013916015625, + -0.00830078125, + -0.034423828125, + 0.02001953125, + -0.04541015625, + -0.01300048828125, + -0.009765625, + -0.06884765625, + 0.0322265625, + 0.04052734375, + 0.0361328125, + 0.00457763671875, + -0.041748046875, + 0.01904296875, + -0.0115966796875, + -0.0191650390625, + 0.00787353515625, + 0.0322265625, + -0.0089111328125, + -0.01287841796875, + 0.07470703125, + 0.007537841796875, + 0.021240234375, + -0.0032196044921875, + -0.0223388671875, + -0.029541015625, + -0.0174560546875, + -0.013427734375, + -0.021240234375, + -0.0859375, + 0.05078125, + 0.049072265625, + 0.038818359375, + 0.0257568359375, + -0.0024261474609375, + -0.01300048828125, + -0.037353515625, + -0.0172119140625, + 0.027099609375, + -0.0068359375, + -0.04443359375, + -0.0208740234375, + -0.0091552734375, + 0.025390625, + -0.0118408203125, + 0.00787353515625, + -0.01531982421875, + -0.0032501220703125, + -0.041259765625, + 0.041259765625, + 0.01397705078125, + 0.00933837890625, + 0.019775390625, + -0.005401611328125, + -0.055419921875, + 0.03662109375, + 0.039306640625, + 0.01416015625, + -0.0062255859375, + 0.0225830078125, + -0.020263671875, + -0.09130859375, + 0.006683349609375, + -0.013916015625, + -0.00823974609375, + -0.0361328125, + 0.01611328125, + 0.0291748046875, + -0.0712890625, + 0.0299072265625, + -0.00124359130859375, + -0.00153350830078125, + -0.025634765625, + -0.035888671875, + 0.00970458984375, + -0.013671875, + 0.0019683837890625, + 0.0023956298828125, + -0.048583984375, + -0.0279541015625, + -0.0274658203125, + 0.01104736328125, + 0.0238037109375, + 0.01141357421875, + -0.02001953125, + -0.00159454345703125, + -0.0284423828125, + 0.00177001953125, + -0.0439453125, + -0.003997802734375, + -0.01953125, + 0.031982421875, + -0.07470703125, + -0.00726318359375, + -0.0157470703125, + -0.0135498046875, + -0.01287841796875, + -0.056640625, + -0.00115203857421875, + 0.0020294189453125, + 0.02099609375, + 0.029541015625, + 0.01513671875, + -0.00543212890625, + 0.06298828125, + -0.0019683837890625, + 0.0255126953125, + -0.002471923828125, + -0.020263671875, + 0.013671875, + -0.0186767578125, + -0.040771484375, + 0.006988525390625, + -0.0216064453125, + 0.0019989013671875, + 0.00089263916015625, + -0.022705078125, + 0.0008544921875, + -0.0322265625, + 0.0111083984375, + 0.0084228515625, + -0.03125, + -0.0172119140625, + -0.0084228515625, + 0.0167236328125, + 0.03271484375, + -0.043212890625, + 0.00439453125, + -0.00811767578125, + -0.01171875, + 0.00122833251953125, + 0.03369140625, + 0.014404296875, + 0.0152587890625, + -0.058837890625, + 0.00799560546875, + -0.015869140625, + -0.04296875, + 0.00885009765625, + 0.029052734375, + -0.0079345703125, + -0.038330078125, + -0.031494140625, + 0.033203125, + -0.0118408203125, + -0.0125732421875, + 0.032470703125, + -0.052001953125, + 0.00213623046875, + 0.0128173828125, + -4.673004150390625e-05, + 0.072265625, + -0.031982421875, + -0.01171875, + -0.016357421875, + 0.022705078125, + 0.004425048828125, + -0.00811767578125, + -0.0015716552734375, + -0.01171875, + -0.0242919921875, + -0.0289306640625, + 0.0084228515625, + 0.041748046875, + -0.01953125, + 0.02783203125, + -0.026123046875, + 0.00762939453125, + -0.00927734375, + 0.052001953125, + -0.0301513671875, + 0.0142822265625, + 0.036376953125, + -0.044677734375, + 0.00836181640625, + -0.05029296875, + 0.049560546875, + 0.00823974609375, + 0.004638671875, + 0.0301513671875, + 0.045166015625, + 0.0203857421875, + 0.064453125, + 0.0279541015625, + 0.028564453125, + 0.06689453125, + -0.037841796875, + 0.00445556640625, + 0.004150390625, + -0.0020751953125, + 0.02197265625, + -0.021240234375, + 0.05078125, + 0.026123046875, + 0.01025390625, + 0.035888671875, + 0.025146484375, + -0.01055908203125, + -0.048828125, + 0.002532958984375, + 0.0172119140625, + -0.0191650390625, + -0.0279541015625, + 0.0625, + 0.01300048828125, + 0.020263671875, + -0.027099609375, + -0.0031280517578125, + -0.03515625, + -0.00084686279296875, + 0.0264892578125, + -0.0291748046875, + -0.0238037109375, + -0.0076904296875, + 0.015380859375, + -0.0264892578125, + 0.00180816650390625, + 0.00171661376953125, + 0.00182342529296875, + -0.03369140625, + -0.0272216796875, + -0.047607421875, + 0.002471923828125, + -0.0299072265625, + -0.025634765625, + -0.007080078125, + 0.0172119140625, + 0.0208740234375, + 0.049560546875, + -0.0206298828125, + 0.0113525390625, + 0.025390625, + 0.0289306640625, + -0.0089111328125, + -0.017822265625, + -0.01470947265625, + 0.03369140625, + -0.01165771484375, + 0.04638671875, + -0.003753662109375, + 0.037109375, + 0.0478515625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.376660000005927, + "queue_ms": 1.5239920000027496, + "tokenization_ms": 0.01594000001148288, + "inference_ms": 14.71642499998893, + "postprocessing_ms": null + } + } + ], + "ranking": [ + { + "chunk_id": "chunk-12", + "text": "At 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103\u00b0F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted.", + "score": 0.6514437668440396 + }, + { + "chunk_id": "chunk-11", + "text": "At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38\u00b0F above ambient -not high enough to trigger an alert. The R1 bearing measured 20\u00b0F above ambient. But the L1 bearing was hotter.", + "score": 0.623453926207204 + }, + { + "chunk_id": "chunk-1", + "text": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine.", + "score": 0.5901347431958397 + }, + { + "chunk_id": "chunk-13", + "text": "About 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253\u00b0F above ambient at the L1 bearing; bearing R1 remained at 20\u00b0F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab.", + "score": 0.5791204326724206 + }, + { + "chunk_id": "chunk-4", + "text": "Bearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine.", + "score": 0.5772592566110322 + }, + { + "chunk_id": "chunk-16", + "text": "The Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine.", + "score": 0.5535012017557331 + }, + { + "chunk_id": "chunk-17", + "text": "In the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. '", + "score": 0.5389398186224985 + }, + { + "chunk_id": "chunk-8", + "text": "1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103\u00b0 above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew.", + "score": 0.4943444648616066 + }, + { + "chunk_id": "chunk-9", + "text": "2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated.", + "score": 0.4801823538897187 + }, + { + "chunk_id": "chunk-3", + "text": "Overheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow.", + "score": 0.4773513189814048 + }, + { + "chunk_id": "chunk-7", + "text": "## The undetected hot bearing burns off", + "score": 0.4551110978958068 + }, + { + "chunk_id": "chunk-0", + "text": "## When the bearing failed", + "score": 0.4143807667940103 + }, + { + "chunk_id": "chunk-5", + "text": "The bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel.", + "score": 0.4130846733378036 + }, + { + "chunk_id": "chunk-14", + "text": "Under NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m.", + "score": 0.4047552444014841 + }, + { + "chunk_id": "chunk-15", + "text": "But it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated.", + "score": 0.397771606460534 + }, + { + "chunk_id": "chunk-10", + "text": "## On fire but not 'critical'", + "score": 0.3699911883210574 + }, + { + "chunk_id": "chunk-2", + "text": "A bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .)", + "score": 0.36256629225606457 + }, + { + "chunk_id": "chunk-6", + "text": "Railcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right.", + "score": 0.2990737280225207 + } + ] +} diff --git a/examples/maintenance-triage-agent/verified-run/review.json b/examples/maintenance-triage-agent/verified-run/review.json new file mode 100644 index 00000000..aac38a97 --- /dev/null +++ b/examples/maintenance-triage-agent/verified-run/review.json @@ -0,0 +1,154 @@ +{ + "route": "read_only_detector_trend_review", + "source": "NTSB Illustrated Digest SPC-24-06, printed pages 4\u20135", + "bearing": "L1", + "detector_readings": [ + { + "location": "Sebring", + "time": "7:37 p.m.", + "degrees_f_above_ambient": 38, + "alert": "none" + }, + { + "location": "Salem", + "time": "8:13 p.m.", + "degrees_f_above_ambient": 103, + "alert": "noncritical alert to the Wayside Help Desk, not the crew", + "camera_observation": "fire near the bearing" + }, + { + "location": "East Palestine", + "time": "about 8:52 p.m.", + "degrees_f_above_ambient": 253, + "alert": "critical alarm broadcast in the locomotive cab" + } + ], + "trend": { + "successive_increases_degrees_f": [ + 65, + 150 + ], + "total_increase_degrees_f": 215, + "sebring_to_salem_minutes": 36, + "salem_to_east_palestine_minutes": 39 + }, + "engineer_action": "began slowing before 8:54 p.m.", + "derailment": { + "total_cars": 38, + "statement": "the hopper car and 37 others derailed as emergency braking activated" + }, + "ntsb_cause_statement": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car.", + "ranked_source_evidence": [ + { + "chunk_id": "chunk-12", + "rank": 0, + "score": 0.94921875, + "text": "At 8:13 p.m. , at the Salem HBD, the reading for the L1 bearing was 103\u00b0F above ambient . This reading was high enough to trigger a noncritical alert to the Wayside Help Desk ( see box ), but not to the crew. A surveillance camera picture from Salem showed fire near the bearing ( right ). Surveillance cameras in Sebring also captured images of the train, and no anomalies were noted." + }, + { + "chunk_id": "chunk-1", + "rank": 1, + "score": 0.9375, + "text": "The East Palestine derailment began when an overheated bearing burned off the accident hopper car. Here is what you need to know about bearings, hot bearing detectors (HBDs), and what happened when the accident hopper car passed over the final three HBDs of the journey in the Ohio towns of Sebring, Salem, and East Palestine." + }, + { + "chunk_id": "chunk-11", + "rank": 2, + "score": 0.91015625, + "text": "At 7:37 p.m. , at the Sebring HBD, the reading for the L1 bearing was only 38\u00b0F above ambient -not high enough to trigger an alert. The R1 bearing measured 20\u00b0F above ambient. But the L1 bearing was hotter." + }, + { + "chunk_id": "chunk-4", + "rank": 3, + "score": 0.90625, + "text": "Bearings can go from below-alarm temperature to seized in less than a minute. In this accident, however, fire was first photographed near the L1 bearing by a surveillance camera in Salem, Ohio (right), 39 minutes before the train derailed in East Palestine." + }, + { + "chunk_id": "chunk-13", + "rank": 4, + "score": 0.8359375, + "text": "About 8:52 p.m ., the train went over the East Palestine HBD. Less than a minute later, the HBD recorded a temperature of 253\u00b0F above ambient at the L1 bearing; bearing R1 remained at 20\u00b0F above ambient. The HBD immediately transmitted a critical alarm, which was broadcast in the locomotive cab." + }, + { + "chunk_id": "chunk-8", + "rank": 5, + "score": 0.46875, + "text": "1. HBDs (D) measure the temperature on the outside of the bearing cup. When a bearing heats up inside, it may take 30-60 minutes for the HBD to sense it from the outside. The HBD in Salem measured a temperature of only 103\u00b0 above ambient, despite the fact that the bearing was on fire. So, it generated an alert to the Wayside Help Desk, not an alarm to the train crew." + }, + { + "chunk_id": "chunk-9", + "rank": 6, + "score": 0.37890625, + "text": "2. By the time the alarm sounded at the East Palestine HBD, the journal was worn down to a cone, and it was too late. The hopper car and 37 others derailed as the train's emergency braking system activated." + }, + { + "chunk_id": "chunk-17", + "rank": 7, + "score": 0.08447265625, + "text": "In the East Palestine derailment, the alarm was received by the lead locomotive radio and broadcast over the in-cab speakers: ' Critical alarm, critical alarm, critical alarm. Norfolk Southern milepost 49.8, track 1 hotbox, axle 101, south rail. '" + }, + { + "chunk_id": "chunk-7", + "rank": 8, + "score": 0.033203125, + "text": "## The undetected hot bearing burns off" + }, + { + "chunk_id": "chunk-0", + "rank": 9, + "score": 0.0274658203125, + "text": "## When the bearing failed" + }, + { + "chunk_id": "chunk-16", + "rank": 10, + "score": 0.013427734375, + "text": "The Wayside Help Desk in Atlanta, Georgia, monitors alerts from NS's HBDs. Critical alarms broadcast straight to the train crew. For noncritical alerts, the analyst monitors the train over HBDs it crosses later, paying attention to temperature trends. The single analyst on duty did not notice the Salem noncritical alert, as he dealt with higher-priority alerts. But if he did notice the alert, that would not have prevented the derailment. The analyst said that if he had seen the Salem HBD alert in real time, he would have followed NS rules and watched for alerts from HBDs it went over later. The next HBD the accident train went over was in East Palestine." + }, + { + "chunk_id": "chunk-3", + "rank": 11, + "score": 0.01043701171875, + "text": "Overheated wheel bearings are the most common mechanical or electrical cause of rail accidents. Because overheated bearings are so dangerous, railroad tracks are equipped with HBDs, devices located along the track that measure the bearing's temperature relative to the ambient temperature (D) . Ambient temperature means the temperature outside. For example, the ambient temperature at Sebring, Ohio, was measured by a thermometer at the nearby signal bungalow." + }, + { + "chunk_id": "chunk-5", + "rank": 12, + "score": 0.0086669921875, + "text": "The bearing that caused the accident hopper car to derail was its L1 bearing, which is on the right side of the car, facing the direction of travel." + }, + { + "chunk_id": "chunk-10", + "rank": 13, + "score": 0.007171630859375, + "text": "## On fire but not 'critical'" + }, + { + "chunk_id": "chunk-15", + "rank": 14, + "score": 0.006744384765625, + "text": "But it was too late; the hopper car and 37 others derailed as the train's emergency braking system activated." + }, + { + "chunk_id": "chunk-2", + "rank": 15, + "score": 0.0005035400390625, + "text": "A bearing (A) fits around the end of a railcar axle. The part of the axle extending into the bearing is called the journal (B) . The bearing's roller components allow the journal to turn within the bearing with little friction. However, when a bearing fails, the resulting friction can be catastrophic. In East Palestine, the journal's cylindrical shape was worn down to a cone (C) . ( See box below .)" + }, + { + "chunk_id": "chunk-14", + "rank": 16, + "score": 0.0003452301025390625, + "text": "Under NS rules, if a train's crew hears a critical alarm, they must stop the train right away and inspect the wheelset that triggered the alarm. The engineer began to slow the train before 8:54 p.m." + }, + { + "chunk_id": "chunk-6", + "rank": 17, + "score": 1.150369644165039e-05, + "text": "Railcar axles are numbered starting from the end of the railcar with the brake wheel (the 'B end'). When the B end is in the front of the car (when it faces the direction of travel) the 'left-side' wheels and bearings are on the right." + } + ], + "new_causal_inferences": [], + "control_writes": [], + "safety_boundary": "Read-only reconstruction of the NTSB's published detector sequence." +} diff --git a/examples/prior-authorization-review-agent/.env.example b/examples/prior-authorization-review-agent/.env.example new file mode 100644 index 00000000..535bc541 --- /dev/null +++ b/examples/prior-authorization-review-agent/.env.example @@ -0,0 +1,2 @@ +SIE_CLUSTER_URL=http://localhost:8080 +SIE_API_KEY= diff --git a/examples/prior-authorization-review-agent/.gitignore b/examples/prior-authorization-review-agent/.gitignore new file mode 100644 index 00000000..c1e16049 --- /dev/null +++ b/examples/prior-authorization-review-agent/.gitignore @@ -0,0 +1,7 @@ +.env +.venv/ +.pytest_cache/ +.ruff_cache/ +__pycache__/ +*.pyc +runs/ diff --git a/examples/prior-authorization-review-agent/README.md b/examples/prior-authorization-review-agent/README.md new file mode 100644 index 00000000..03268dbd --- /dev/null +++ b/examples/prior-authorization-review-agent/README.md @@ -0,0 +1,88 @@ +# Reproduce CMS's L1851 documentation finding + +CMS publishes an example in which a supplier submits an L1851 claim with a +correctly coded order, an adequate medical-necessity record, and proof of +delivery. The face-to-face encounter happened seven months before proof of +delivery. CMS requires it within six months. + +This project parses the published example, retrieves and reranks its evidence, +extracts source spans, maps exact ranked fragments, then validates the one-month +timing gap in ordinary code. Its output reproduces the CMS result: +`insufficient documentation error`, followed by `MAC recoups payment`. + +It does not decide coverage or medical necessity. It makes no diagnosis, +treatment recommendation, or prospective payment decision. + +## What runs on SIE + +| Step | Model | Output | +|---|---|---| +| Parse the CMS excerpt | `docling-project/docling` | Markdown | +| Retrieve candidate passages | `BAAI/bge-m3` | Dense vectors and cosine ranking | +| Put the controlling passages first | `Qwen/Qwen3-Reranker-4B` | Ranked source evidence | +| Extract named requirement and case spans | `urchade/gliner_multi-v2.1` | Source spans with offsets and scores | +| Recover requirements, submission facts, and outcome spans | `fastino/gliner2-large-v1` | Labeled entity spans from three bounded source groups | + +Every stage consumes the prior stage. The three GLiNER2 calls cover +requirements, the submitted record, and the published outcome. Each call sees +only the deduplicated shortest CMS fragments needed for that group. The run +requires the model to recover the controlling phrases, including `L1851`, +`6 months`, `7 months`, `insufficient documentation`, and `recoups payment`. +Ordinary code then maps the exact ranked CMS fragments to the review fields. +The raw response is written before the next group runs. + +The deterministic validator then requires all of these facts: + +- HCPCS code `L1851` +- a six-month face-to-face window +- a face-to-face encounter documented seven months before proof of delivery +- CMS's `insufficient documentation error` conclusion +- CMS's statement that the MAC recoups payment + +Missing, conflicting, or untraceable model output stops the run. The one-month +gap is calculated from the two extracted month counts. + +## Source + +The only case input is an exact excerpt from CMS's [Lower Limb +Orthoses][cms-source] page, last modified February 11, 2026. It contains no +invented patient, packet, or evaluation set. + +See [fixtures/SOURCES.md](fixtures/SOURCES.md) for the source boundary. + +## Run it + +```bash +cd examples/prior-authorization-review-agent +cp .env.example .env +uv sync + +uv run review-pa --run-id local +uv run eval-pa runs/local +``` + +Set `SIE_CLUSTER_URL` and `SIE_API_KEY` to use SIE Cloud. The default points to +a local server at `http://localhost:8080`. + +## Evidence bundle + +```text +runs//manifest.json endpoint, model IDs, source hash, latency +runs//raw/parse.json complete Docling response +runs//raw/retrieve.json embeddings and cosine ranking +runs//raw/rerank.json complete reranker response +runs//raw/entities.json combined GLiNER entity spans +runs//raw/gliner2-requirements.json GLiNER2 requirement spans +runs//raw/gliner2-submission.json GLiNER2 submission spans +runs//raw/gliner2-outcome.json GLiNER2 outcome spans +runs//raw/mapped.json validated exact-fragment mapping +runs//parsed.md parsed CMS excerpt used downstream +runs//review.json validated reproduction of the CMS result +runs//evaluation.json source, arithmetic, and boundary checks +``` + +The manifest records `SIE_SERVER_COMMIT` and `SIE_RUN_COMMAND` when they are +present in the environment. Recorded latency includes model provisioning and is +not a performance claim. + +[cms-source]: https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses diff --git a/examples/prior-authorization-review-agent/config.yaml b/examples/prior-authorization-review-agent/config.yaml new file mode 100644 index 00000000..75cd8445 --- /dev/null +++ b/examples/prior-authorization-review-agent/config.yaml @@ -0,0 +1,16 @@ +cluster: + url: "http://localhost:8080" + api_key: "" + provision_timeout_s: 900 + +models: + parse: "docling-project/docling" + retrieve: "BAAI/bge-m3" + rerank: "Qwen/Qwen3-Reranker-4B" + entities: "urchade/gliner_multi-v2.1" + extract: "fastino/gliner2-large-v1" + +review: + query: "For CMS's published L1851 example, what was required, what was submitted, what timing gap caused insufficient documentation, and what payment action followed?" + candidate_chunks: 12 + top_k: 12 diff --git a/examples/prior-authorization-review-agent/fixtures/SOURCES.md b/examples/prior-authorization-review-agent/fixtures/SOURCES.md new file mode 100644 index 00000000..d1f7cc5e --- /dev/null +++ b/examples/prior-authorization-review-agent/fixtures/SOURCES.md @@ -0,0 +1,20 @@ +# Source and boundary + +The sole case input is an exact excerpt from the Centers for Medicare & +Medicaid Services page [Lower Limb Orthoses][cms]. The excerpt contains CMS's +published L1851 insufficient-documentation example plus the requirement that +the face-to-face encounter occur within six months. + +- Publisher: Centers for Medicare & Medicaid Services +- Page last modified: February 11, 2026 +- Local input: `cms-l1851-insufficient-documentation.html` +- Case status: published CMS example, not synthetic patient data + +The local HTML adds only publisher, source URL, and last-modified metadata. +Its case and requirement prose preserves the CMS text. + +This software reproduces the route and payment action in that published +example. It does not decide coverage, medical necessity, diagnosis, treatment, +or a future claim's payment status. + +[cms]: https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses diff --git a/examples/prior-authorization-review-agent/fixtures/cms-l1851-insufficient-documentation.html b/examples/prior-authorization-review-agent/fixtures/cms-l1851-insufficient-documentation.html new file mode 100644 index 00000000..123c7a47 --- /dev/null +++ b/examples/prior-authorization-review-agent/fixtures/cms-l1851-insufficient-documentation.html @@ -0,0 +1,52 @@ + + + + + Lower Limb Orthoses | CMS + + +
+
+

Centers for Medicare & Medicaid Services

+

Lower Limb Orthoses

+

+ Source: + https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses +

+

Page Last Modified: 02/11/2026 04:18 PM

+
+ +
+

Billing & Coding Criteria

+

+ We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS + codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item. +

+
+ +
+

Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses

+

+ A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable + flexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without + varus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review + contractor’s request: +

+
    +
  • Standard written order with correct HCPCS coding
  • +
  • Treating practitioner’s medical record that has adequate medical necessity information
  • +
  • Proof of delivery with face-to-face encounter 7 months ago
  • +
+ +

What Documentation Was Missing?

+

The doctor didn’t document the face-to-face encounter within 6 months of proof of delivery.

+ +

What Happens Next?

+

+ The review contractor completes the claim as an insufficient documentation error, and the MAC recoups + payment. +

+
+
+ + diff --git a/examples/prior-authorization-review-agent/prior_authorization/__init__.py b/examples/prior-authorization-review-agent/prior_authorization/__init__.py new file mode 100644 index 00000000..836893ed --- /dev/null +++ b/examples/prior-authorization-review-agent/prior_authorization/__init__.py @@ -0,0 +1 @@ +"""Reproduce CMS's published L1851 documentation example.""" diff --git a/examples/prior-authorization-review-agent/prior_authorization/evaluate.py b/examples/prior-authorization-review-agent/prior_authorization/evaluate.py new file mode 100644 index 00000000..f99ed31b --- /dev/null +++ b/examples/prior-authorization-review-agent/prior_authorization/evaluate.py @@ -0,0 +1,130 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +from dataclasses import asdict, dataclass +from pathlib import Path +from typing import Any + +from rich.console import Console +from rich.table import Table + +ROOT = Path(__file__).resolve().parents[1] +console = Console() + + +@dataclass(frozen=True) +class Check: + name: str + passed: bool + detail: str + + +def evaluate_review(review: dict[str, Any]) -> list[Check]: + evidence = review.get("ranked_source_evidence", []) + evidence_text = "\n".join(str(row.get("text", "")) for row in evidence).casefold() + return [ + Check( + "published-cms-example-scope", + review.get("published_example") is True and str(review.get("scope", "")).startswith("Reproduction of CMS"), + str(review.get("scope")), + ), + Check("hcpcs-code", review.get("hcpcs_code") == "L1851", str(review.get("hcpcs_code"))), + Check( + "insufficient-documentation-route", + review.get("route") == "insufficient_documentation", + str(review.get("route")), + ), + Check( + "six-month-requirement", + review.get("required_face_to_face_within_months") == 6, + str(review.get("required_face_to_face_within_months")), + ), + Check( + "seven-month-observation", + review.get("documented_face_to_face_age_months") == 7, + str(review.get("documented_face_to_face_age_months")), + ), + Check("one-month-gap", review.get("overdue_by_months") == 1, str(review.get("overdue_by_months"))), + Check( + "missing-timely-face-to-face", + review.get("missing_documentation") == ["face-to-face encounter within 6 months of proof of delivery"], + str(review.get("missing_documentation")), + ), + Check( + "published-payment-action", + review.get("review_conclusion") == "insufficient documentation error" + and review.get("payment_action") == "MAC recoups payment", + f"{review.get('review_conclusion')}; {review.get('payment_action')}", + ), + Check( + "ranked-source-evidence", + bool(evidence) + and all( + token in evidence_text + for token in ( + "l1851", + "within the 6 months", + "face-to-face encounter 7 months ago", + "insufficient documentation error", + "mac recoups payment", + ) + ), + str([row.get("chunk_id") for row in evidence]), + ), + Check( + "no-new-coverage-or-medical-decision", + review.get("coverage_decision") is None and review.get("medical_decision") is None, + f"coverage={review.get('coverage_decision')}; medical={review.get('medical_decision')}", + ), + ] + + +def _record_evaluation_artifact(run_dir: Path) -> None: + manifest_path = run_dir / "manifest.json" + if not manifest_path.exists(): + return + evaluation_path = run_dir / "evaluation.json" + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + artifacts = [ + entry + for entry in manifest.get("artifacts", []) + if isinstance(entry, dict) and entry.get("path") != "evaluation.json" + ] + artifacts.append( + { + "path": "evaluation.json", + "sha256": hashlib.sha256(evaluation_path.read_bytes()).hexdigest(), + } + ) + manifest["artifacts"] = sorted(artifacts, key=lambda entry: str(entry["path"])) + manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8") + + +def evaluate_run(run_dir: Path) -> bool: + review = json.loads((run_dir / "review.json").read_text(encoding="utf-8")) + checks = evaluate_review(review) + passed = all(check.passed for check in checks) + (run_dir / "evaluation.json").write_text( + json.dumps({"passed": passed, "checks": [asdict(check) for check in checks]}, indent=2) + "\n", + encoding="utf-8", + ) + _record_evaluation_artifact(run_dir) + table = Table("Check", "Result", "Detail") + for check in checks: + table.add_row(check.name, "[green]pass[/]" if check.passed else "[red]fail[/]", check.detail) + console.print(table) + return passed + + +def main() -> None: + parser = argparse.ArgumentParser(description="Evaluate a saved CMS L1851 example reproduction") + parser.add_argument("run_dir", type=Path) + args = parser.parse_args() + if not evaluate_run(args.run_dir): + raise SystemExit(1) + + +if __name__ == "__main__": + main() diff --git a/examples/prior-authorization-review-agent/prior_authorization/review.py b/examples/prior-authorization-review-agent/prior_authorization/review.py new file mode 100644 index 00000000..aa93a363 --- /dev/null +++ b/examples/prior-authorization-review-agent/prior_authorization/review.py @@ -0,0 +1,694 @@ +from __future__ import annotations + +import argparse +import hashlib +import json +import math +import os +import re +import time +from datetime import UTC, datetime +from pathlib import Path +from typing import Any + +import yaml +from dotenv import load_dotenv +from rich.console import Console +from sie_sdk import SIEClient +from sie_sdk.types import Item + +ROOT = Path(__file__).resolve().parents[1] +RUNS_DIR = ROOT / "runs" +DOCUMENT_PATH = ROOT / "fixtures" / "cms-l1851-insufficient-documentation.html" +CONFIG_PATH = ROOT / "config.yaml" +SOURCE_URL = ( + "https://www.cms.gov/training-education/medicare-learning-networkr-mln/" + "compliance/medicare-provider-compliance-tips/lower-limb-orthoses" +) +console = Console() + +ENTITY_LABELS = [ + "procedure code", + "administrative requirement", + "time requirement", + "submitted document", + "documentation gap", + "review conclusion", + "payment action", +] +REQUIREMENT_FIELDS = ( + "hcpcs_code", + "authorization_requirement_text", + "face_to_face_requirement_text", + "written_order_requirement_text", + "face_to_face_window_text", +) +SUBMISSION_FIELDS = ( + "submitted_order", + "submitted_medical_record", + "submitted_proof_of_delivery", + "documented_face_to_face_age", +) +OUTCOME_FIELDS = ("missing_documentation", "review_conclusion", "payment_action") +FIELD_SPECS: dict[str, dict[str, Any]] = { + "hcpcs_code": { + "description": "Return only the exact HCPCS code billed by the supplier in the example.", + "scope_tokens": ("supplier bills the claim", "l1851"), + }, + "authorization_requirement_text": { + "description": "Return the shortest exact source text naming prior authorization as required for L1851.", + "scope_tokens": ("prior authorization", "l1851"), + }, + "face_to_face_requirement_text": { + "description": "Return the shortest exact source text naming a face-to-face encounter as required for L1851.", + "scope_tokens": ("face-to-face encounter", "l1851"), + }, + "written_order_requirement_text": { + "description": "Return the shortest exact source text naming the written-order-prior-to-delivery requirement.", + "scope_tokens": ("written order prior to delivery", "l1851"), + }, + "face_to_face_window_text": { + "description": "Return only the exact source text stating the face-to-face encounter timing window.", + "scope_tokens": ("within the 6 months", "prescribing the item"), + }, + "submitted_order": { + "description": "Return the exact source text describing the submitted standard written order.", + "scope_tokens": ("standard written order", "correct hcpcs"), + }, + "submitted_medical_record": { + "description": "Return the exact source text describing the submitted treating practitioner's medical record.", + "scope_tokens": ("medical record", "adequate medical necessity"), + }, + "submitted_proof_of_delivery": { + "description": "Return the exact source text describing the submitted proof of delivery and encounter timing.", + "scope_tokens": ("proof of delivery", "face-to-face encounter 7 months ago"), + }, + "documented_face_to_face_age": { + "description": "Return only the exact source text stating the age of the face-to-face encounter.", + "scope_tokens": ("face-to-face encounter 7 months ago",), + }, + "missing_documentation": { + "description": "Return the exact source text stating what documentation was missing.", + "scope_tokens": ("didn", "within 6 months", "proof of delivery"), + }, + "review_conclusion": { + "description": "Return only the exact source text naming the review contractor's conclusion.", + "scope_tokens": ("insufficient documentation error",), + }, + "payment_action": { + "description": "Return only the exact source text naming the MAC's payment action.", + "scope_tokens": ("mac", "recoups", "payment"), + }, +} +GROUP_FIELDS: dict[str, tuple[str, ...]] = { + "requirements": ( + "authorization_requirement_text", + "face_to_face_requirement_text", + "written_order_requirement_text", + "face_to_face_window_text", + ), + "submission": ( + "hcpcs_code", + "submitted_order", + "submitted_medical_record", + "submitted_proof_of_delivery", + "documented_face_to_face_age", + ), + "outcome": ("missing_documentation", "review_conclusion", "payment_action"), +} +GLINER2_GROUP_LABELS = { + "requirements": ["administrative requirement", "time requirement", "procedure code"], + "submission": ["procedure code", "standard written order", "medical record", "proof of delivery", "time period"], + "outcome": ["missing documentation", "claim result", "payment action", "organization", "time period"], +} +GLINER2_REQUIRED_SPANS = { + "requirements": ("prior authorization", "face-to-face encounter", "written order", "6 months"), + "submission": ("l1851", "medical record", "proof of delivery", "7 months"), + "outcome": ("face-to-face encounter", "6 months", "insufficient documentation", "recoups payment"), +} + + +def load_config() -> dict[str, Any]: + load_dotenv(ROOT / ".env") + config = yaml.safe_load(CONFIG_PATH.read_text(encoding="utf-8")) + config["cluster"]["url"] = os.getenv("SIE_CLUSTER_URL", config["cluster"]["url"]) + config["cluster"]["api_key"] = os.getenv("SIE_API_KEY", config["cluster"]["api_key"]) + return config + + +def _runtime_model_id(config: dict[str, Any], key: str) -> str: + model = str(config["models"][key]) + cluster_url = str(config["cluster"]["url"]).casefold() + if model == "docling-project/docling" and cluster_url.startswith( + ("http://localhost:", "http://127.0.0.1:", "http://[::1]:") + ): + return "docling" + return model + + +def sha256(path: Path) -> str: + return hashlib.sha256(path.read_bytes()).hexdigest() + + +def _json_default(value: Any) -> Any: + if hasattr(value, "tolist"): + return value.tolist() + if hasattr(value, "model_dump"): + return value.model_dump(mode="json") + raise TypeError(f"Cannot serialize {type(value).__name__}") + + +def _write_json(path: Path, value: Any) -> None: + path.write_text(json.dumps(value, indent=2, default=_json_default) + "\n", encoding="utf-8") + + +def _dense(result: dict[str, Any]) -> list[float]: + values: Any = result.get("dense") + if isinstance(values, dict): + values = values.get("values") or values.get("vector") + if hasattr(values, "tolist"): + values = values.tolist() + if not isinstance(values, list): + raise TypeError("Embedding response has no dense vector") + return [float(value) for value in values] + + +def _cosine(left: list[float], right: list[float]) -> float: + dot = sum(a * b for a, b in zip(left, right, strict=True)) + left_norm = math.sqrt(sum(value * value for value in left)) + right_norm = math.sqrt(sum(value * value for value in right)) + if left_norm == 0 or right_norm == 0: + raise RuntimeError("Embedding response has a zero-length vector") + return dot / (left_norm * right_norm) + + +def _chunks(markdown: str) -> list[str]: + chunks: list[str] = [] + current: list[str] = [] + + def flush() -> None: + if current: + chunks.append(" ".join(current)) + current.clear() + + for raw_line in markdown.splitlines(): + line = raw_line.strip() + if not line: + continue + if line.startswith("#"): + flush() + chunks.append(line) + continue + if line.startswith(("-", "*", "+")): + flush() + chunks.append(line) + continue + current.append(line) + if line.endswith((".", ":", "?", "!")): + flush() + flush() + chunks = [chunk for chunk in chunks if len(chunk) > 24] + if not chunks: + raise RuntimeError("Docling returned no usable CMS source chunks") + return chunks + + +def _require_fields(data: dict[str, Any], required: tuple[str, ...], stage: str) -> None: + missing = sorted(set(required) - set(data)) + if missing: + raise RuntimeError(f"Mapped {stage} evidence omitted required fields: {missing}") + + +def _source_fragments(text: str) -> list[str]: + fragments = [text.strip()] + for raw_line in text.splitlines(): + inline_bullets = re.split(r"\s+(?=[-*+]\s+[A-Z])", raw_line.strip()) + for raw_fragment in inline_bullets: + line = re.sub(r"^(?:#{1,6}\s+|[-*+]\s+|\d+[.)]\s+)", "", raw_fragment).strip() + if not line: + continue + fragments.append(line) + fragments.extend(part.strip() for part in re.split(r"(?<=[.!?])\s+(?=[A-Z])", line) if part.strip()) + return list(dict.fromkeys(fragments)) + + +def _source_scope(ranked: list[dict[str, Any]], field: str) -> dict[str, Any]: + tokens = tuple(FIELD_SPECS[field]["scope_tokens"]) + matches: list[dict[str, Any]] = [] + for row in ranked: + if not row.get("chunk_id"): + continue + for fragment in _source_fragments(str(row.get("text", ""))): + if all(token in fragment.casefold() for token in tokens): + matches.append({**row, "text": fragment}) + if not matches: + raise RuntimeError(f"Reranked CMS evidence omitted the exact source scope for {field}: {tokens}") + return min(matches, key=lambda row: (len(str(row["text"])), int(row.get("rank", 0)))) + + +def _group_source_scope(ranked: list[dict[str, Any]], group: str) -> dict[str, Any]: + field_scopes = {canonical_field: _source_scope(ranked, canonical_field) for canonical_field in GROUP_FIELDS[group]} + fragments: list[str] = [] + seen: set[str] = set() + for scope in field_scopes.values(): + fragment = str(scope["text"]).strip() + normalized = _normalized_source_text(fragment) + if normalized not in seen: + fragments.append(fragment) + seen.add(normalized) + return { + "text": "\n\n".join(fragments), + "field_scopes": field_scopes, + "chunk_ids": list(dict.fromkeys(str(scope["chunk_id"]) for scope in field_scopes.values())), + } + + +def _normalized_source_text(value: str) -> str: + return " ".join(value.replace("’", "'").split()).casefold() + + +def _require_gliner2_group_evidence(response: dict[str, Any], group: str) -> None: + observed = _normalized_source_text(" ".join(str(entity.get("text", "")) for entity in response.get("entities", []))) + missing = [span for span in GLINER2_REQUIRED_SPANS[group] if span not in observed] + if missing: + raise RuntimeError(f"GLiNER2 {group} extraction omitted exact CMS source spans: {missing}") + + +def _require_tokens(value: str, tokens: tuple[str, ...], field: str) -> None: + normalized = value.casefold() + missing = [token for token in tokens if token not in normalized] + if missing: + raise RuntimeError(f"GLiNER2 {field} output omitted source terms {missing}: {value!r}") + + +def _month_count(value: str, field: str) -> int: + match = re.search(r"\b(\d+)\s+months?\b", value.casefold()) + if match is None: + raise RuntimeError(f"GLiNER2 {field} output has no month count: {value!r}") + return int(match.group(1)) + + +def _require_entity_evidence(result: dict[str, Any]) -> None: + observed = " ".join(str(entity.get("text", "")) for entity in result.get("entities", [])).casefold() + required = ("l1851", "6 months", "7 months") + missing = [token for token in required if token not in observed] + if missing: + raise RuntimeError(f"GLiNER did not recover required CMS source spans: {missing}") + + +def _require_ranked_evidence(ranked: list[dict[str, Any]]) -> None: + if not ranked: + raise RuntimeError("Reranker returned no evidence") + texts: list[str] = [] + for row in ranked: + text = str(row.get("text", "")).strip() + if not row.get("chunk_id") or not text: + raise RuntimeError("Reranker evidence must retain its chunk identity and source text") + texts.append(text) + joined = "\n".join(texts).casefold() + required = ( + "l1851", + "prior authorization", + "written order prior to delivery", + "within the 6 months", + "face-to-face encounter 7 months ago", + "insufficient documentation error", + "mac recoups payment", + ) + missing = [token for token in required if token not in joined] + if missing: + raise RuntimeError(f"Reranker evidence omitted required CMS text: {missing}") + + +def _select_evidence_rows( + ranked: list[dict[str, Any]], + terms: tuple[str, ...], + stage: str, +) -> list[dict[str, Any]]: + selected = [row for row in ranked if any(term in str(row["text"]).casefold() for term in terms)] + if not selected: + raise RuntimeError(f"No reranked CMS evidence remained for {stage}") + return sorted(selected, key=lambda row: int(str(row["chunk_id"]).split("-")[-1])) + + +def build_review( + requirements: dict[str, Any], + submission: dict[str, Any], + outcome: dict[str, Any], + ranked: list[dict[str, Any]], +) -> dict[str, Any]: + _require_ranked_evidence(ranked) + _require_fields(requirements, REQUIREMENT_FIELDS, "requirements") + _require_fields(submission, SUBMISSION_FIELDS, "submission") + _require_fields(outcome, OUTCOME_FIELDS, "outcome") + + code = str(requirements["hcpcs_code"]).strip().upper() + if code != "L1851": + raise RuntimeError(f"Mapped evidence returned the wrong HCPCS code: {code!r}") + _require_tokens( + str(requirements["authorization_requirement_text"]), + ("prior authorization",), + "authorization_requirement_text", + ) + _require_tokens( + str(requirements["face_to_face_requirement_text"]), + ("face-to-face",), + "face_to_face_requirement_text", + ) + _require_tokens( + str(requirements["written_order_requirement_text"]), + ("written order", "prior to delivery"), + "written_order_requirement_text", + ) + + required_months = _month_count( + str(requirements["face_to_face_window_text"]), + "face_to_face_window_text", + ) + observed_months = _month_count( + str(submission["documented_face_to_face_age"]), + "documented_face_to_face_age", + ) + if required_months != 6: + raise RuntimeError(f"Mapped evidence returned the wrong face-to-face window: {required_months}") + if observed_months != 7: + raise RuntimeError(f"Mapped evidence returned the wrong encounter age: {observed_months}") + + _require_tokens(str(submission["submitted_order"]), ("standard written order", "hcpcs"), "submitted_order") + _require_tokens( + str(submission["submitted_medical_record"]), + ("medical", "adequate", "necessity"), + "submitted_medical_record", + ) + _require_tokens( + str(submission["submitted_proof_of_delivery"]), + ("proof of delivery", "face-to-face"), + "submitted_proof_of_delivery", + ) + _require_tokens( + str(outcome["missing_documentation"]), + ("face-to-face", "within 6 months", "proof of delivery"), + "missing_documentation", + ) + _require_tokens(str(outcome["review_conclusion"]), ("insufficient documentation",), "review_conclusion") + _require_tokens(str(outcome["payment_action"]), ("mac", "recoup", "payment"), "payment_action") + + overdue_by_months = observed_months - required_months + if overdue_by_months <= 0: + raise RuntimeError("Published example does not establish an overdue face-to-face encounter") + return { + "scope": "Reproduction of CMS's published L1851 insufficient-documentation example", + "route": "insufficient_documentation", + "headline": "The face-to-face encounter fell one month outside CMS's six-month window", + "hcpcs_code": code, + "required_face_to_face_within_months": required_months, + "documented_face_to_face_age_months": observed_months, + "overdue_by_months": overdue_by_months, + "submitted_documentation": { + "order": str(submission["submitted_order"]), + "medical_record": str(submission["submitted_medical_record"]), + "proof_of_delivery": str(submission["submitted_proof_of_delivery"]), + }, + "missing_documentation": ["face-to-face encounter within 6 months of proof of delivery"], + "review_conclusion": "insufficient documentation error", + "payment_action": "MAC recoups payment", + "source": { + "publisher": "Centers for Medicare & Medicaid Services", + "title": "Lower Limb Orthoses", + "url": SOURCE_URL, + "page_last_modified": "2026-02-11", + }, + "ranked_source_evidence": ranked, + "published_example": True, + "coverage_decision": None, + "medical_decision": None, + } + + +def _extract_gliner2_group( + client: SIEClient, + config: dict[str, Any], + group: str, + scope: dict[str, Any], +) -> tuple[dict[str, Any], dict[str, Any]]: + source_text = str(scope["text"]) + stage = f"gliner2_{group}" + started = time.perf_counter() + response = client.extract( + config["models"]["extract"], + Item(id=f"cms-l1851-{group}", text=source_text), + labels=GLINER2_GROUP_LABELS[group], + wait_for_capacity=True, + provision_timeout_s=config["cluster"]["provision_timeout_s"], + ) + call = { + "stage": stage, + "model": config["models"]["extract"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + "source_chunk_ids": scope["chunk_ids"], + "source_sha256": hashlib.sha256(source_text.encode("utf-8")).hexdigest(), + "source_fragment_sha256": { + canonical_field: hashlib.sha256(str(field_scope["text"]).encode("utf-8")).hexdigest() + for canonical_field, field_scope in scope["field_scopes"].items() + }, + } + return response, call + + +def run(run_id: str) -> Path: + config = load_config() + parse_model = _runtime_model_id(config, "parse") + run_dir = RUNS_DIR / run_id + raw_dir = run_dir / "raw" + raw_dir.mkdir(parents=True, exist_ok=False) + calls: list[dict[str, Any]] = [] + timeout = config["cluster"]["provision_timeout_s"] + + with SIEClient(config["cluster"]["url"], api_key=config["cluster"]["api_key"] or None, timeout_s=900) as client: + started = time.perf_counter() + parsed = client.extract( + parse_model, + Item(id="cms-l1851-published-example", document=DOCUMENT_PATH), + options={"profile": "default"}, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": "parse", + "model": parse_model, + "configured_model": config["models"]["parse"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "parse.json", parsed) + markdown = str(parsed.get("data", {}).get("markdown", "")) + (run_dir / "parsed.md").write_text(markdown, encoding="utf-8") + chunks = _chunks(markdown) + + started = time.perf_counter() + query_embedding = client.encode( + config["models"]["retrieve"], + Item(id="cms-l1851-query", text=config["review"]["query"]), + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + chunk_embeddings = [ + client.encode( + config["models"]["retrieve"], + Item(id=f"chunk-{index}", text=text), + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + for index, text in enumerate(chunks) + ] + retrieval = sorted( + [ + {"chunk_id": f"chunk-{index}", "text": text, "score": _cosine(_dense(query_embedding), _dense(result))} + for index, (text, result) in enumerate(zip(chunks, chunk_embeddings, strict=True)) + ], + key=lambda row: row["score"], + reverse=True, + )[: config["review"]["candidate_chunks"]] + calls.append( + { + "stage": "retrieve", + "model": config["models"]["retrieve"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json( + raw_dir / "retrieve.json", + {"query": query_embedding, "chunks": chunk_embeddings, "ranking": retrieval}, + ) + + started = time.perf_counter() + rerank_raw = client.score( + config["models"]["rerank"], + Item(id="cms-l1851-query", text=config["review"]["query"]), + [Item(id=row["chunk_id"], text=row["text"]) for row in retrieval], + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + by_id = {row["chunk_id"]: row["text"] for row in retrieval} + ranked = [ + { + "chunk_id": row["item_id"], + "rank": row["rank"], + "score": row["score"], + "text": by_id[row["item_id"]], + } + for row in sorted(rerank_raw["scores"], key=lambda item: item["rank"]) + ][: config["review"]["top_k"]] + calls.append( + { + "stage": "rerank", + "model": config["models"]["rerank"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / "rerank.json", rerank_raw) + requirements_rows = _select_evidence_rows( + ranked, + ("we require prior authorization", "within the 6 months"), + "requirements", + ) + submission_rows = _select_evidence_rows( + ranked, + ( + "standard written order", + "medical necessity information", + "proof of delivery with face-to-face", + ), + "submission", + ) + outcome_rows = _select_evidence_rows( + ranked, + ( + "didn't document the face-to-face", + "insufficient documentation error", + "mac recoups", + ), + "outcome", + ) + entity_outputs: list[dict[str, Any]] = [] + requirement_labels = ["procedure code", "administrative requirement", "time requirement"] + case_labels = [ + "procedure code", + "submitted document", + "time period", + "documentation gap", + "review conclusion", + "payment action", + ] + entity_inputs = [ + (f"entities_requirement_{index}", str(row["text"]), requirement_labels) + for index, row in enumerate(requirements_rows) + ] + entity_inputs.extend( + (f"entities_case_{index}", str(row["text"]), case_labels) + for index, row in enumerate([*submission_rows, *outcome_rows]) + ) + for stage, text, labels in entity_inputs: + started = time.perf_counter() + response = client.extract( + config["models"]["entities"], + Item(id=f"cms-l1851-{stage}", text=text), + labels=labels, + wait_for_capacity=True, + provision_timeout_s=timeout, + ) + calls.append( + { + "stage": stage, + "model": config["models"]["entities"], + "latency_ms": round((time.perf_counter() - started) * 1000, 1), + } + ) + _write_json(raw_dir / f"{stage.replace('_', '-')}.json", response) + entity_outputs.append(response) + entities = { + "model": config["models"]["entities"], + "entities": [entity for response in entity_outputs for entity in response.get("entities", [])], + } + _write_json(raw_dir / "entities.json", entities) + _require_entity_evidence(entities) + + structured: dict[str, str] = {} + source_scopes: dict[str, dict[str, Any]] = {} + for group in GROUP_FIELDS: + scope = _group_source_scope(ranked, group) + response, call = _extract_gliner2_group(client, config, group, scope) + calls.append(call) + _write_json(raw_dir / f"gliner2-{group}.json", response) + _require_gliner2_group_evidence(response, group) + for canonical_field, field_scope in scope["field_scopes"].items(): + source_text = str(field_scope["text"]).strip() + if canonical_field == "hcpcs_code": + code_match = re.search(r"\bL1851\b", source_text, flags=re.IGNORECASE) + if code_match is None: + raise RuntimeError("The ranked CMS claim scope omitted L1851") + source_text = code_match.group() + structured[canonical_field] = source_text + source_scopes[canonical_field] = { + "group": group, + "chunk_id": field_scope["chunk_id"], + "source_sha256": call["source_fragment_sha256"][canonical_field], + } + _write_json( + raw_dir / "mapped.json", + { + "method": "Exact ranked CMS fragments validated against GLiNER2 source spans", + "data": structured, + "source_scopes": source_scopes, + }, + ) + + review = build_review( + {field: structured[field] for field in REQUIREMENT_FIELDS}, + {field: structured[field] for field in SUBMISSION_FIELDS}, + {field: structured[field] for field in OUTCOME_FIELDS}, + ranked, + ) + + _write_json(run_dir / "review.json", review) + artifact_paths = [run_dir / "parsed.md", run_dir / "review.json", *sorted(raw_dir.glob("*.json"))] + manifest = { + "created_at": datetime.now(UTC).isoformat(), + "endpoint": config["cluster"]["url"], + "sie_server_commit": os.getenv("SIE_SERVER_COMMIT"), + "run_command": os.getenv("SIE_RUN_COMMAND"), + "models": config["models"], + "fixture": {"path": str(DOCUMENT_PATH.relative_to(ROOT)), "sha256": sha256(DOCUMENT_PATH)}, + "artifacts": [{"path": str(path.relative_to(run_dir)), "sha256": sha256(path)} for path in artifact_paths], + "source": review["source"], + "calls": calls, + "pipeline": [ + "parse", + "retrieve", + "rerank", + "entities_requirements", + "entities_case", + *[f"gliner2_{group}" for group in GROUP_FIELDS], + "deterministic_source_mapping", + "deterministic_validation", + ], + "decision_boundary": ( + "This run reproduces one example published by CMS. It does not make a coverage, medical-necessity, " + "diagnosis, treatment, or prospective payment decision." + ), + } + _write_json(run_dir / "manifest.json", manifest) + console.print(f"[green]Wrote[/] {run_dir}") + return run_dir + + +def main() -> None: + parser = argparse.ArgumentParser(description="Reproduce CMS's published L1851 insufficient-documentation example") + parser.add_argument("--run-id", default=datetime.now(UTC).strftime("%Y%m%dT%H%M%SZ")) + args = parser.parse_args() + run(args.run_id) + + +if __name__ == "__main__": + main() diff --git a/examples/prior-authorization-review-agent/pyproject.toml b/examples/prior-authorization-review-agent/pyproject.toml new file mode 100644 index 00000000..4dc7baa1 --- /dev/null +++ b/examples/prior-authorization-review-agent/pyproject.toml @@ -0,0 +1,36 @@ +[project] +name = "prior-authorization-review-agent" +version = "0.1.0" +description = "Reproduce CMS's published L1851 insufficient-documentation example with SIE" +readme = "README.md" +requires-python = ">=3.12,<3.13" +dependencies = [ + "python-dotenv>=1.0", + "pyyaml>=6.0", + "rich>=13.7", + "sie-sdk>=0.6.23", +] + +[project.scripts] +review-pa = "prior_authorization.review:main" +eval-pa = "prior_authorization.evaluate:main" + +[dependency-groups] +dev = [ + "pytest>=9.0", + "ruff>=0.14", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["prior_authorization"] + +[tool.ruff] +line-length = 120 +target-version = "py312" + +[tool.pytest.ini_options] +testpaths = ["tests"] diff --git a/examples/prior-authorization-review-agent/tests/test_review.py b/examples/prior-authorization-review-agent/tests/test_review.py new file mode 100644 index 00000000..b813c141 --- /dev/null +++ b/examples/prior-authorization-review-agent/tests/test_review.py @@ -0,0 +1,362 @@ +import hashlib +import json +from pathlib import Path + +from prior_authorization.evaluate import evaluate_review, evaluate_run +from prior_authorization.review import ( + FIELD_SPECS, + GLINER2_GROUP_LABELS, + GLINER2_REQUIRED_SPANS, + GROUP_FIELDS, + OUTCOME_FIELDS, + REQUIREMENT_FIELDS, + SUBMISSION_FIELDS, + _chunks, + _group_source_scope, + _require_gliner2_group_evidence, + _runtime_model_id, + _source_fragments, + _source_scope, + build_review, +) + +ROOT = Path(__file__).resolve().parents[1] + + +def test_docling_line_wraps_stay_in_complete_cms_statements() -> None: + markdown = """## Billing and Coding Criteria for Lower Limb Orthoses + +We require prior authorization for HCPCS + +codes L1832 and L1851. + + ### What Happens Next for the Published CMS Claim? + +The review contractor completes the claim, and the MAC recoups + +payment. +""" + assert _chunks(markdown) == [ + "## Billing and Coding Criteria for Lower Limb Orthoses", + "We require prior authorization for HCPCS codes L1832 and L1851.", + "### What Happens Next for the Published CMS Claim?", + "The review contractor completes the claim, and the MAC recoups payment.", + ] + + +def test_public_docling_id_translates_only_for_a_direct_local_server() -> None: + local = {"cluster": {"url": "http://localhost:8080"}, "models": {"parse": "docling-project/docling"}} + cloud = {"cluster": {"url": "https://api.superlinked.com"}, "models": {"parse": "docling-project/docling"}} + assert _runtime_model_id(local, "parse") == "docling" + assert _runtime_model_id(cloud, "parse") == "docling-project/docling" + + +def test_docling_bullets_stay_as_distinct_submission_chunks() -> None: + markdown = """### Documentation submitted + +- Standard written order with correct HCPCS coding +- Treating practitioner's medical record that has adequate medical necessity information +- Proof of delivery with face-to-face encounter 7 months ago +""" + assert _chunks(markdown) == [ + "### Documentation submitted", + "- Standard written order with correct HCPCS coding", + "- Treating practitioner's medical record that has adequate medical necessity information", + "- Proof of delivery with face-to-face encounter 7 months ago", + ] + + +def test_joined_docling_bullets_map_to_distinct_source_fragments() -> None: + joined = ( + "- Standard written order with correct HCPCS coding " + "- Treating practitioner's medical record that has adequate medical necessity information " + "- Proof of delivery with face-to-face encounter 7 months ago" + ) + assert _source_fragments(joined)[1:] == [ + "Standard written order with correct HCPCS coding", + "Treating practitioner's medical record that has adequate medical necessity information", + "Proof of delivery with face-to-face encounter 7 months ago", + ] + evidence = [{"chunk_id": "chunk-5", "rank": 1, "score": 0.9, "text": joined}] + assert _source_scope(evidence, "submitted_order")["text"] == "Standard written order with correct HCPCS coding" + assert _source_scope(evidence, "submitted_medical_record")["text"] == ( + "Treating practitioner's medical record that has adequate medical necessity information" + ) + assert _source_scope(evidence, "submitted_proof_of_delivery")["text"] == ( + "Proof of delivery with face-to-face encounter 7 months ago" + ) + + +def requirements_data() -> dict[str, str]: + return { + "hcpcs_code": "L1851", + "authorization_requirement_text": "prior authorization is required", + "face_to_face_requirement_text": "a face-to-face encounter is required", + "written_order_requirement_text": "written order prior to delivery is required", + "face_to_face_window_text": "within the 6 months before prescribing the item", + } + + +def submission_data() -> dict[str, str]: + return { + "submitted_order": "Standard written order with correct HCPCS coding", + "submitted_medical_record": ( + "Treating practitioner's medical record that has adequate medical necessity information" + ), + "submitted_proof_of_delivery": "Proof of delivery with face-to-face encounter 7 months ago", + "documented_face_to_face_age": "7 months ago", + } + + +def outcome_data() -> dict[str, str]: + return { + "missing_documentation": ( + "The doctor didn't document the face-to-face encounter within 6 months of proof of delivery." + ), + "review_conclusion": "The review contractor completes the claim as an insufficient documentation error.", + "payment_action": "The MAC recoups payment.", + } + + +def ranked_evidence() -> list[dict[str, object]]: + return [ + { + "chunk_id": "chunk-0", + "rank": 1, + "score": 0.99, + "text": ( + "We require prior authorization, a face-to-face encounter, and written order prior to delivery for " + "HCPCS codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before " + "prescribing the item." + ), + }, + { + "chunk_id": "chunk-1", + "rank": 2, + "score": 0.98, + "text": ( + "A supplier bills the claim for L1851 and submits a standard written order with correct HCPCS coding, " + "a treating practitioner's medical record with adequate medical necessity information, and proof of " + "delivery with face-to-face encounter 7 months ago. The review contractor completes the claim as an " + "insufficient documentation error, and the MAC recoups payment." + ), + }, + ] + + +def source_scope_evidence() -> list[dict[str, object]]: + return [ + { + "chunk_id": "chunk-0", + "rank": 1, + "score": 0.99, + "text": ( + "We require prior authorization, a face-to-face encounter, and written order prior to delivery for " + "HCPCS codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before " + "prescribing the item." + ), + }, + { + "chunk_id": "chunk-1", + "rank": 2, + "score": 0.98, + "text": ( + "A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with " + "adjustable flexion and extension joint) and submits the following documentation." + ), + }, + { + "chunk_id": "chunk-2", + "rank": 3, + "score": 0.97, + "text": ( + "- Standard written order with correct HCPCS coding\n" + "- Treating practitioner's medical record that has adequate medical necessity information\n" + "- Proof of delivery with face-to-face encounter 7 months ago" + ), + }, + { + "chunk_id": "chunk-3", + "rank": 4, + "score": 0.96, + "text": "The doctor didn’t document the face-to-face encounter within 6 months of proof of delivery.", + }, + { + "chunk_id": "chunk-4", + "rank": 5, + "score": 0.95, + "text": ( + "The review contractor completes the claim as an insufficient documentation error, and the MAC " + "recoups payment." + ), + }, + ] + + +def build_valid_review() -> dict[str, object]: + return build_review(requirements_data(), submission_data(), outcome_data(), ranked_evidence()) + + +def test_gliner2_groups_cover_every_canonical_field() -> None: + canonical_fields = set(REQUIREMENT_FIELDS) | set(SUBMISSION_FIELDS) | set(OUTCOME_FIELDS) + assert set(FIELD_SPECS) == canonical_fields + mapped_fields = {field for fields in GROUP_FIELDS.values() for field in fields} + assert mapped_fields == canonical_fields + assert set(GLINER2_GROUP_LABELS) == set(GROUP_FIELDS) + assert set(GLINER2_REQUIRED_SPANS) == set(GROUP_FIELDS) + + +def test_each_field_gets_the_smallest_exact_ranked_source_scope() -> None: + evidence = source_scope_evidence() + scopes = {field: _source_scope(evidence, field) for field in FIELD_SPECS} + assert scopes["face_to_face_window_text"]["text"] == ( + "Conduct the face-to-face encounter within the 6 months before prescribing the item." + ) + assert scopes["submitted_order"]["text"] == "Standard written order with correct HCPCS coding" + assert scopes["documented_face_to_face_age"]["text"] == ( + "Proof of delivery with face-to-face encounter 7 months ago" + ) + assert scopes["payment_action"]["chunk_id"] == "chunk-4" + + +def test_group_inputs_deduplicate_the_smallest_exact_field_scopes() -> None: + evidence = source_scope_evidence() + requirements = _group_source_scope(evidence, "requirements") + submission = _group_source_scope(evidence, "submission") + outcome = _group_source_scope(evidence, "outcome") + assert len(requirements["text"].split("\n\n")) == 2 + assert len(submission["text"].split("\n\n")) == 4 + assert len(outcome["text"].split("\n\n")) == 2 + assert requirements["chunk_ids"] == ["chunk-0"] + assert submission["chunk_ids"] == ["chunk-1", "chunk-2"] + assert outcome["chunk_ids"] == ["chunk-3", "chunk-4"] + + +def test_gliner2_evidence_gate_accepts_required_exact_spans() -> None: + response = { + "entities": [ + {"text": "prior authorization"}, + {"text": "a face-to-face encounter"}, + {"text": "written order prior to delivery"}, + {"text": "within the 6 months before prescribing the item"}, + ] + } + _require_gliner2_group_evidence(response, "requirements") + + +def test_gliner2_evidence_gate_rejects_a_missing_required_span() -> None: + response = { + "entities": [ + {"text": "within 6 months"}, + {"text": "insufficient documentation error"}, + {"text": "the MAC recoups"}, + ] + } + try: + _require_gliner2_group_evidence(response, "outcome") + except RuntimeError as exc: + assert "payment" in str(exc) + else: + raise AssertionError("Accepted GLiNER2 evidence without the payment span") + + +def test_fixture_preserves_the_published_cms_case() -> None: + source = (ROOT / "fixtures" / "cms-l1851-insufficient-documentation.html").read_text(encoding="utf-8") + assert "Proof of delivery with face-to-face encounter 7 months ago" in source + assert "The doctor didn’t document the face-to-face encounter within 6 months of proof of delivery." in source + assert "The review contractor completes the claim as an insufficient documentation error" in source + assert "the MAC recoups" in source + + +def test_reproduces_cms_route_and_one_month_gap() -> None: + review = build_valid_review() + assert review["route"] == "insufficient_documentation" + assert review["hcpcs_code"] == "L1851" + assert review["required_face_to_face_within_months"] == 6 + assert review["documented_face_to_face_age_months"] == 7 + assert review["overdue_by_months"] == 1 + assert review["payment_action"] == "MAC recoups payment" + + +def test_review_stays_inside_published_example_boundary() -> None: + review = build_valid_review() + assert review["coverage_decision"] is None + assert review["medical_decision"] is None + assert all(check.passed for check in evaluate_review(review)) + + +def test_evaluator_records_its_artifact_in_the_manifest(tmp_path: Path) -> None: + (tmp_path / "review.json").write_text(json.dumps(build_valid_review()), encoding="utf-8") + (tmp_path / "manifest.json").write_text( + json.dumps( + { + "artifacts": [ + {"path": "review.json", "sha256": "preserved"}, + {"path": "evaluation.json", "sha256": "stale"}, + ] + } + ), + encoding="utf-8", + ) + + assert evaluate_run(tmp_path) is True + + manifest = json.loads((tmp_path / "manifest.json").read_text(encoding="utf-8")) + assert [entry["path"] for entry in manifest["artifacts"]] == ["evaluation.json", "review.json"] + evaluation = tmp_path / "evaluation.json" + assert manifest["artifacts"][0]["sha256"] == hashlib.sha256(evaluation.read_bytes()).hexdigest() + assert manifest["artifacts"][1]["sha256"] == "preserved" + + +def test_fails_closed_when_required_window_changes() -> None: + requirements = requirements_data() + requirements["face_to_face_window_text"] = "within 8 months" + try: + build_review(requirements, submission_data(), outcome_data(), ranked_evidence()) + except RuntimeError as exc: + assert "wrong face-to-face window" in str(exc) + else: + raise AssertionError("build_review accepted a requirement that conflicts with the CMS source") + + +def test_fails_closed_when_gliner2_omits_a_field() -> None: + outcome = outcome_data() + del outcome["payment_action"] + try: + build_review(requirements_data(), submission_data(), outcome, ranked_evidence()) + except RuntimeError as exc: + assert "omitted required fields" in str(exc) + else: + raise AssertionError("build_review accepted an incomplete GLiNER2 outcome") + + +def test_fails_closed_without_ranked_payment_action() -> None: + evidence = ranked_evidence() + evidence[1]["text"] = str(evidence[1]["text"]).replace("and the MAC recoups payment.", "") + try: + build_review(requirements_data(), submission_data(), outcome_data(), evidence) + except RuntimeError as exc: + assert "mac recoups payment" in str(exc) + else: + raise AssertionError("build_review accepted ranked evidence without the published payment action") + + +def test_fails_closed_when_submission_age_is_not_seven_months() -> None: + submission = submission_data() + submission["documented_face_to_face_age"] = "5 months ago" + try: + build_review(requirements_data(), submission, outcome_data(), ranked_evidence()) + except RuntimeError as exc: + assert "wrong encounter age" in str(exc) + else: + raise AssertionError("build_review accepted a timing observation that conflicts with the CMS source") + + +def test_verified_manifest_hashes() -> None: + manifest_path = ROOT / "verified-run" / "manifest.json" + manifest = json.loads(manifest_path.read_text(encoding="utf-8")) + fixture = manifest["fixture"] + assert hashlib.sha256((ROOT / fixture["path"]).read_bytes()).hexdigest() == fixture["sha256"] + for entry in manifest["artifacts"]: + artifact = manifest_path.parent / entry["path"] + assert hashlib.sha256(artifact.read_bytes()).hexdigest() == entry["sha256"] diff --git a/examples/prior-authorization-review-agent/uv.lock b/examples/prior-authorization-review-agent/uv.lock new file mode 100644 index 00000000..1d4c7cda --- /dev/null +++ b/examples/prior-authorization-review-agent/uv.lock @@ -0,0 +1,541 @@ +version = 1 +revision = 3 +requires-python = "==3.12.*" + +[[package]] +name = "aiohappyeyeballs" +version = "2.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/f4/eec0465c2f67b2664688d0240b3212d5196fd89e741df67ddb81f8d35658/aiohappyeyeballs-2.7.1.tar.gz", hash = "sha256:065665c041c42a5938ed220bdcd7230f22527fbec085e1853d2402c8a3615d9d", size = 24757, upload-time = "2026-07-01T17:11:55.501Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/43/1947f06babed6b3f1d7f38b0c767f52df66bfb2bc10b468c4a7de9eceff2/aiohappyeyeballs-2.7.1-py3-none-any.whl", hash = "sha256:9243213661e29250eb41368e5daa826fc017156c3b8a11440826b2e3ed376472", size = 15038, upload-time = "2026-07-01T17:11:54.055Z" }, +] + +[[package]] +name = "aiohttp" +version = "3.14.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohappyeyeballs" }, + { name = "aiosignal" }, + { name = "attrs" }, + { name = "frozenlist" }, + { name = "multidict" }, + { name = "propcache" }, + { name = "typing-extensions" }, + { name = "yarl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/d9/22ce5786ac0c1653ae8b6c23bded02c1686d11f0dbb45b31ce128e0df985/aiohttp-3.14.3.tar.gz", hash = "sha256:9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc", size = 7971213, upload-time = "2026-07-23T01:57:27.037Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/d4/eb96299230e20acf2efae207cb8d69051f1f68e357e5ea5e479bf6fb097a/aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:39aded8c7f3b935b54aab1d8d73c70ec0ee2d3ec3b943e0e86611bc150ba47f5", size = 754690, upload-time = "2026-07-23T01:53:47.332Z" }, + { url = "https://files.pythonhosted.org/packages/88/11/e7a70a209eb9a067c0d3212b518a0134e3484f5178c7533878b6b514d469/aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5bcb6ff3fdab1258a192679ff1a05d44f59626430aa05cd1a9d2447423599228", size = 509484, upload-time = "2026-07-23T01:53:51.159Z" }, + { url = "https://files.pythonhosted.org/packages/30/07/4bbc222cc8dbe31d4c3e8a5baad2286e4d42026ac0c570027b89afce6344/aiohttp-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:617105e2c3018ee38d0c8ce5ee3c84f621a6d8b9f723202aacaff28449ca91ee", size = 511949, upload-time = "2026-07-23T01:53:55.083Z" }, + { url = "https://files.pythonhosted.org/packages/54/b9/42e74c46b7b7c794b995bbc1f573fb48950c38b19d8600c62a6804ee2d67/aiohttp-3.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f631fe87a6f30df5fbe6d79640b25e4cffb38c31c7fb6f10871517b84b0f8c1a", size = 1765282, upload-time = "2026-07-23T01:53:59.662Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ed/62bc4d74363ad346d518e0720363a949f63e2e23439a79eb5813d4d29bb3/aiohttp-3.14.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a94dbaae5ae27bd849c93570669bff91e0510f33a80805738e3de72a7be0447b", size = 1741511, upload-time = "2026-07-23T01:54:04.063Z" }, + { url = "https://files.pythonhosted.org/packages/d0/9f/181e8a8bc79e47d13c7fc4540bd7a3b729d9505609c61f392a8dd2fbfe55/aiohttp-3.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8f2f1c4c032c7cedd7d8da6f54c97b70266c6570c3108d3fdffee7188bb70529", size = 1810680, upload-time = "2026-07-23T01:54:09.882Z" }, + { url = "https://files.pythonhosted.org/packages/5c/9a/dec94d6ad694552fe3424e3f1928d7a606a5d9d9433a04e7ecdd9d38ae7f/aiohttp-3.14.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ea05e1f97ceea523942d9b2a7d7c0359d781d683d6b043f5943a602b14da4787", size = 1905646, upload-time = "2026-07-23T01:54:13.475Z" }, + { url = "https://files.pythonhosted.org/packages/52/b7/7cd31f29d6055bd711ae6e669367fba6f5ae9de463910a793e30556a8db7/aiohttp-3.14.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:543906c127fb1d929b95076db19b83fa2d46751006ff1e23b093aa5ac4d8db42", size = 1792122, upload-time = "2026-07-23T01:54:15.752Z" }, + { url = "https://files.pythonhosted.org/packages/66/73/10b1ef93afa61f4963c746257b70ced619cf31a4798671de5fdb2608501d/aiohttp-3.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0a5ff2dfbb9ce645fa5b8ef3e02c6c0b9cc3f6030ff863d0c51fffc50cb5541b", size = 1591127, upload-time = "2026-07-23T01:54:19.489Z" }, + { url = "https://files.pythonhosted.org/packages/49/ed/3b203fa6de1b338c14acdc06bf6ca9b043b7944f005966958c2ced932cde/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:041badb8f84396357c4d3ad26de6afd7a32b112f43d3c63045c0c8278cfd2043", size = 1725210, upload-time = "2026-07-23T01:54:24.129Z" }, + { url = "https://files.pythonhosted.org/packages/28/b7/1c2aab8c706436dcc28598452488ac9cd7c409da815237c28c27d58993e6/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:530125ee1163c4219af35dc3aa1206e541e7b31b6efc1a3f93b70a136f65d427", size = 1764848, upload-time = "2026-07-23T01:54:27.973Z" }, + { url = "https://files.pythonhosted.org/packages/54/50/94c28f08b131c4bf10984ea2c7a536c9920608bb2d6e7f95642c30cc87b7/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8653fd547c93a61aadc612007790f5555cdd18946fa48cf45e26d8ea4ea473d", size = 1777102, upload-time = "2026-07-23T01:54:31.775Z" }, + { url = "https://files.pythonhosted.org/packages/13/d4/e7d09ba7d345fb2d74440fd2fa033c5e079fac05552927705986f41a364f/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:89176250f686cb9853c0fb7ead90e639e915b84a6f43eedc2a4e7ec21f1037f0", size = 1580205, upload-time = "2026-07-23T01:54:34.518Z" }, + { url = "https://files.pythonhosted.org/packages/a3/84/072a91d68e1e1eb587985b54baab94221277f877e8ef274fc213a0ceae28/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3a26434dafe408229ff3403458ca58de24fb51936504decac49ce6755f77e59d", size = 1797219, upload-time = "2026-07-23T01:54:36.995Z" }, + { url = "https://files.pythonhosted.org/packages/e0/eb/aad34e897e668424d6e995da5dff8a4a09af93363d3392488772957a63aa/aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19", size = 1768629, upload-time = "2026-07-23T01:54:40.103Z" }, + { url = "https://files.pythonhosted.org/packages/b6/2b/6bb88ddba0fecd9122aa3ebcad25996cf6c083a4a7040dbb3a4f97972af6/aiohttp-3.14.3-cp312-cp312-win32.whl", hash = "sha256:16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559", size = 451481, upload-time = "2026-07-23T01:54:42.547Z" }, + { url = "https://files.pythonhosted.org/packages/76/9b/f2f8f108da17ecef2cc3efc424e8b7ad3782b1a8360f7b8eae8ced84f6ea/aiohttp-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a", size = 476845, upload-time = "2026-07-23T01:54:44.853Z" }, + { url = "https://files.pythonhosted.org/packages/3e/44/28dac80a8941b604f4da10ce21097614ca1bf905ce93dca28d8d7de9c1e7/aiohttp-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c", size = 448050, upload-time = "2026-07-23T01:54:47.087Z" }, +] + +[[package]] +name = "aiosignal" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "frozenlist" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" }, +] + +[[package]] +name = "anyio" +version = "4.14.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/cc/a381afa6efea9f496eff839d4a6a1aed3bfafc7b3ab4b0d1b243a12573dd/anyio-4.14.2.tar.gz", hash = "sha256:cfa139f3ed1a23ee8f88a145ddb5ac7605b8bbfd8592baacd7ce3d8bb4313c7f", size = 260176, upload-time = "2026-07-12T20:29:07.082Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/35/f2287558c17e29fafc8ef3daf819bb9834061cfa43bff8014f7df7f63bdc/anyio-4.14.2-py3-none-any.whl", hash = "sha256:9f505dda5ac9f0c8309b5e8bd445a8c2bf7246f3ce950121e45ea15bc41d1494", size = 125813, upload-time = "2026-07-12T20:29:05.763Z" }, +] + +[[package]] +name = "attrs" +version = "26.1.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" }, +] + +[[package]] +name = "certifi" +version = "2026.7.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a3/c2/24167ea9858356b47a87a50d39908bfdb72ceeefe0041586e704e5376b3a/certifi-2026.7.22.tar.gz", hash = "sha256:741e2c3b351ddf169a738da9f2c048608ff7f2c5cc02f1ebc6b118bb090d5d55", size = 138112, upload-time = "2026-07-22T03:35:12.644Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/a7/71ac2cff56fec219ed242bb11b8efb69fcc4bec75db06fb7bfe35de520e6/certifi-2026.7.22-py3-none-any.whl", hash = "sha256:62f22742b58a1a33014a2b6b706588a8d7e2a88ae7bd1a6ebe8c992928483775", size = 136983, upload-time = "2026-07-22T03:35:11.276Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz", hash = "sha256:3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad", size = 45875, upload-time = "2025-10-06T05:38:17.865Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1", size = 87782, upload-time = "2025-10-06T05:36:06.649Z" }, + { url = "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b", size = 50594, upload-time = "2025-10-06T05:36:07.69Z" }, + { url = "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4", size = 50448, upload-time = "2025-10-06T05:36:08.78Z" }, + { url = "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383", size = 242411, upload-time = "2025-10-06T05:36:09.801Z" }, + { url = "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4", size = 243014, upload-time = "2025-10-06T05:36:11.394Z" }, + { url = "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8", size = 234909, upload-time = "2025-10-06T05:36:12.598Z" }, + { url = "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b", size = 250049, upload-time = "2025-10-06T05:36:14.065Z" }, + { url = "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52", size = 256485, upload-time = "2025-10-06T05:36:15.39Z" }, + { url = "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29", size = 237619, upload-time = "2025-10-06T05:36:16.558Z" }, + { url = "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3", size = 250320, upload-time = "2025-10-06T05:36:17.821Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143", size = 246820, upload-time = "2025-10-06T05:36:19.046Z" }, + { url = "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608", size = 250518, upload-time = "2025-10-06T05:36:20.763Z" }, + { url = "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa", size = 239096, upload-time = "2025-10-06T05:36:22.129Z" }, + { url = "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl", hash = "sha256:433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf", size = 39985, upload-time = "2025-10-06T05:36:23.661Z" }, + { url = "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746", size = 44591, upload-time = "2025-10-06T05:36:24.958Z" }, + { url = "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd", size = 40102, upload-time = "2025-10-06T05:36:26.333Z" }, + { url = "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl", hash = "sha256:0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d", size = 13409, upload-time = "2025-10-06T05:38:16.721Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "h11" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "certifi" }, + { name = "httpcore" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "idna" +version = "3.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/63/9496c57188a2ee585e0f1db071d75089a11e98aa86eb99d9d7618fc1edce/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848", size = 196711, upload-time = "2026-06-02T14:34:07.794Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1e/5e/d4e9f1a599fb8e573b7b87160658329fbf28d19eac2718f51fc3def3aa5a/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", size = 65455, upload-time = "2026-06-02T14:34:06.319Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/72/34/14ca021ce8e5dfedc35312d08ba8bf51fdd999c576889fc2c24cb97f4f10/iniconfig-2.3.0.tar.gz", hash = "sha256:c76315c77db068650d49c5b56314774a7804df16fee4402c1f19d6d15d8c4730", size = 20503, upload-time = "2025-10-18T21:55:43.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/ff/7841249c247aa650a76b9ee4bbaeae59370dc8bfd2f6c01f3630c35eb134/markdown_it_py-4.2.0.tar.gz", hash = "sha256:04a21681d6fbb623de53f6f364d352309d4094dd4194040a10fd51833e418d49", size = 82454, upload-time = "2026-05-07T12:08:28.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/81/4da04ced5a082363ecfa159c010d200ecbd959ae410c10c0264a38cac0f5/markdown_it_py-4.2.0-py3-none-any.whl", hash = "sha256:9f7ebbcd14fe59494226453aed97c1070d83f8d24b6fc3a3bcf9a38092641c4a", size = 91687, upload-time = "2026-05-07T12:08:27.182Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "msgpack" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/f9/c0a1c127f9049db9155afc316952ea571720dd01833ff5e4d7e8e6352dbb/msgpack-1.2.1.tar.gz", hash = "sha256:04c721c2c7448767e9e3f2520a475663d8ee0f09c31890f6d2bd70fd636a9647", size = 183960, upload-time = "2026-06-18T16:13:52.594Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/dd/9e8cbd8f5582ca4b590336f2b91ee5662f6a6ca562b565abaf696a0f81ff/msgpack-1.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2ef59c659f289eddf8aa6623823f19fa2f40a4029266889eac7a2505dd210c35", size = 83531, upload-time = "2026-06-18T16:12:58.249Z" }, + { url = "https://files.pythonhosted.org/packages/50/2e/ebdb85a8da151397a2790363676b7ed7c125924fe618e4c6d8befb0cc62c/msgpack-1.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d3567748a5107cb40cdf66a275430c2f87c07777698f4bfd25c35f44d533258c", size = 82657, upload-time = "2026-06-18T16:12:59.396Z" }, + { url = "https://files.pythonhosted.org/packages/26/aa/753ad8b007b464e1d8aa0c8e650b9c5f4f725e658fc5ac8a7635c55b7f6e/msgpack-1.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60926b75d00c8e816ef98f3034f484a8bc64242d66839cef4cf7e503142316a0", size = 410634, upload-time = "2026-06-18T16:13:00.383Z" }, + { url = "https://files.pythonhosted.org/packages/6a/fd/6adabd4f6d5e686f97dd02ce7fce3fe4cf672cbac36b8f67ff4040e8ad8b/msgpack-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:020e881a764b20d8d7ca1a54fc01b8175519d108e3c3f194fddc200bda95951a", size = 419989, upload-time = "2026-06-18T16:13:01.776Z" }, + { url = "https://files.pythonhosted.org/packages/5a/cc/85039b7b0eb168aaad7383a23c97e291a11f08351cb45a606ce865e4e3f1/msgpack-1.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4202c74688ca06591f78cb18988228bd4cca2cc75d57b60008372892d2f1e6e6", size = 377544, upload-time = "2026-06-18T16:13:03.637Z" }, + { url = "https://files.pythonhosted.org/packages/ed/bf/35963899493b32030c85fc513b723ae66144ac70c11ebc52e889e16e3d99/msgpack-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8b267ce94efb76fbd1b3373511420074ee3187f0f7811bf394531de13294735a", size = 400842, upload-time = "2026-06-18T16:13:05.012Z" }, + { url = "https://files.pythonhosted.org/packages/a6/df/8e2ac970c8f99264cd9997d1c73df5466bc19da3301d7dc5500862a9b089/msgpack-1.2.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e4f1d0f8f98ade9634e01fb704a408f9336c0a8f1117b369f5db83dc7551d8b1", size = 374108, upload-time = "2026-06-18T16:13:06.232Z" }, + { url = "https://files.pythonhosted.org/packages/17/dd/fa8bd265110dfa51c20cb529f9e6d240a16fafe7e645004c6af2d01353ba/msgpack-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f02cf17a6ca1abe29b5f980644f7551f94d71f2011509b26d8625ce038f0df64", size = 414939, upload-time = "2026-06-18T16:13:07.478Z" }, + { url = "https://files.pythonhosted.org/packages/2e/b9/8377a5ad8953fc0437c70cc98d9ae29f27fe5ac5109fbec0812085865735/msgpack-1.2.1-cp312-cp312-win32.whl", hash = "sha256:0c0d9802354507bcba62af19c17918e3eb437cc25e6f50657d511b5856a77aac", size = 64504, upload-time = "2026-06-18T16:13:08.822Z" }, + { url = "https://files.pythonhosted.org/packages/57/7f/ce1e377df7e62461fefd9eb23bfb93a4a523f40a517b377b8f844d836828/msgpack-1.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:5c24aa15d5963051e1a5c62b12c50cd705992502b5ec1f3bece6046f33c9fc24", size = 71421, upload-time = "2026-06-18T16:13:09.828Z" }, + { url = "https://files.pythonhosted.org/packages/8f/32/ebfe84c9929f08f188d56c7a2fd913406a9ddad76a634697c1c43b8112e6/msgpack-1.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:4227224aaec8f7fbcbfbd4272319347b2bb4030366502600f8c45588c5187b07", size = 64775, upload-time = "2026-06-18T16:13:11.056Z" }, +] + +[[package]] +name = "msgpack-numpy" +version = "0.4.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "msgpack" }, + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/94/61e8aee142733ebfdc400a05bdac6e1763c4514bba3b42743d223f388450/msgpack-numpy-0.4.8.tar.gz", hash = "sha256:c667d3180513422f9c7545be5eec5d296dcbb357e06f72ed39cc683797556e69", size = 10923, upload-time = "2022-06-09T03:43:08.739Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/5d/f25ac7d4fb77cbd53ddc6d05d833c6bf52b12770a44fa9a447eed470ca9a/msgpack_numpy-0.4.8-py2.py3-none-any.whl", hash = "sha256:773c19d4dfbae1b3c7b791083e2caf66983bb19b40901646f61d8731554ae3da", size = 6919, upload-time = "2022-06-09T03:43:06.82Z" }, +] + +[[package]] +name = "multidict" +version = "6.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/c2/c2d94cbe6ac1753f3fc980da97b3d930efe1da3af3c9f5125354436c073d/multidict-6.7.1.tar.gz", hash = "sha256:ec6652a1bee61c53a3e5776b6049172c53b6aaba34f18c9ad04f82712bac623d", size = 102010, upload-time = "2026-01-26T02:46:45.979Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8d/9c/f20e0e2cf80e4b2e4b1c365bf5fe104ee633c751a724246262db8f1a0b13/multidict-6.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:a90f75c956e32891a4eda3639ce6dd86e87105271f43d43442a3aedf3cddf172", size = 76893, upload-time = "2026-01-26T02:43:52.754Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cf/18ef143a81610136d3da8193da9d80bfe1cb548a1e2d1c775f26b23d024a/multidict-6.7.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fccb473e87eaa1382689053e4a4618e7ba7b9b9b8d6adf2027ee474597128cd", size = 45456, upload-time = "2026-01-26T02:43:53.893Z" }, + { url = "https://files.pythonhosted.org/packages/a9/65/1caac9d4cd32e8433908683446eebc953e82d22b03d10d41a5f0fefe991b/multidict-6.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0fa96985700739c4c7853a43c0b3e169360d6855780021bfc6d0f1ce7c123e7", size = 43872, upload-time = "2026-01-26T02:43:55.041Z" }, + { url = "https://files.pythonhosted.org/packages/cf/3b/d6bd75dc4f3ff7c73766e04e705b00ed6dbbaccf670d9e05a12b006f5a21/multidict-6.7.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cb2a55f408c3043e42b40cc8eecd575afa27b7e0b956dfb190de0f8499a57a53", size = 251018, upload-time = "2026-01-26T02:43:56.198Z" }, + { url = "https://files.pythonhosted.org/packages/fd/80/c959c5933adedb9ac15152e4067c702a808ea183a8b64cf8f31af8ad3155/multidict-6.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb0ce7b2a32d09892b3dd6cc44877a0d02a33241fafca5f25c8b6b62374f8b75", size = 258883, upload-time = "2026-01-26T02:43:57.499Z" }, + { url = "https://files.pythonhosted.org/packages/86/85/7ed40adafea3d4f1c8b916e3b5cc3a8e07dfcdcb9cd72800f4ed3ca1b387/multidict-6.7.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c3a32d23520ee37bf327d1e1a656fec76a2edd5c038bf43eddfa0572ec49c60b", size = 242413, upload-time = "2026-01-26T02:43:58.755Z" }, + { url = "https://files.pythonhosted.org/packages/d2/57/b8565ff533e48595503c785f8361ff9a4fde4d67de25c207cd0ba3befd03/multidict-6.7.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9c90fed18bffc0189ba814749fdcc102b536e83a9f738a9003e569acd540a733", size = 268404, upload-time = "2026-01-26T02:44:00.216Z" }, + { url = "https://files.pythonhosted.org/packages/e0/50/9810c5c29350f7258180dfdcb2e52783a0632862eb334c4896ac717cebcb/multidict-6.7.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da62917e6076f512daccfbbde27f46fed1c98fee202f0559adec8ee0de67f71a", size = 269456, upload-time = "2026-01-26T02:44:02.202Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8d/5e5be3ced1d12966fefb5c4ea3b2a5b480afcea36406559442c6e31d4a48/multidict-6.7.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bfde23ef6ed9db7eaee6c37dcec08524cb43903c60b285b172b6c094711b3961", size = 256322, upload-time = "2026-01-26T02:44:03.56Z" }, + { url = "https://files.pythonhosted.org/packages/31/6e/d8a26d81ac166a5592782d208dd90dfdc0a7a218adaa52b45a672b46c122/multidict-6.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3758692429e4e32f1ba0df23219cd0b4fc0a52f476726fff9337d1a57676a582", size = 253955, upload-time = "2026-01-26T02:44:04.845Z" }, + { url = "https://files.pythonhosted.org/packages/59/4c/7c672c8aad41534ba619bcd4ade7a0dc87ed6b8b5c06149b85d3dd03f0cd/multidict-6.7.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:398c1478926eca669f2fd6a5856b6de9c0acf23a2cb59a14c0ba5844fa38077e", size = 251254, upload-time = "2026-01-26T02:44:06.133Z" }, + { url = "https://files.pythonhosted.org/packages/7b/bd/84c24de512cbafbdbc39439f74e967f19570ce7924e3007174a29c348916/multidict-6.7.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c102791b1c4f3ab36ce4101154549105a53dc828f016356b3e3bcae2e3a039d3", size = 252059, upload-time = "2026-01-26T02:44:07.518Z" }, + { url = "https://files.pythonhosted.org/packages/fa/ba/f5449385510825b73d01c2d4087bf6d2fccc20a2d42ac34df93191d3dd03/multidict-6.7.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a088b62bd733e2ad12c50dad01b7d0166c30287c166e137433d3b410add807a6", size = 263588, upload-time = "2026-01-26T02:44:09.382Z" }, + { url = "https://files.pythonhosted.org/packages/d7/11/afc7c677f68f75c84a69fe37184f0f82fce13ce4b92f49f3db280b7e92b3/multidict-6.7.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3d51ff4785d58d3f6c91bdbffcb5e1f7ddfda557727043aa20d20ec4f65e324a", size = 259642, upload-time = "2026-01-26T02:44:10.73Z" }, + { url = "https://files.pythonhosted.org/packages/2b/17/ebb9644da78c4ab36403739e0e6e0e30ebb135b9caf3440825001a0bddcb/multidict-6.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fc5907494fccf3e7d3f94f95c91d6336b092b5fc83811720fae5e2765890dfba", size = 251377, upload-time = "2026-01-26T02:44:12.042Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a4/840f5b97339e27846c46307f2530a2805d9d537d8b8bd416af031cad7fa0/multidict-6.7.1-cp312-cp312-win32.whl", hash = "sha256:28ca5ce2fd9716631133d0e9a9b9a745ad7f60bac2bccafb56aa380fc0b6c511", size = 41887, upload-time = "2026-01-26T02:44:14.245Z" }, + { url = "https://files.pythonhosted.org/packages/80/31/0b2517913687895f5904325c2069d6a3b78f66cc641a86a2baf75a05dcbb/multidict-6.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcee94dfbd638784645b066074b338bc9cc155d4b4bffa4adce1615c5a426c19", size = 46053, upload-time = "2026-01-26T02:44:15.371Z" }, + { url = "https://files.pythonhosted.org/packages/0c/5b/aba28e4ee4006ae4c7df8d327d31025d760ffa992ea23812a601d226e682/multidict-6.7.1-cp312-cp312-win_arm64.whl", hash = "sha256:ba0a9fb644d0c1a2194cf7ffb043bd852cea63a57f66fbd33959f7dae18517bf", size = 43307, upload-time = "2026-01-26T02:44:16.852Z" }, + { url = "https://files.pythonhosted.org/packages/81/08/7036c080d7117f28a4af526d794aab6a84463126db031b007717c1a6676e/multidict-6.7.1-py3-none-any.whl", hash = "sha256:55d97cc6dae627efa6a6e548885712d4864b81110ac76fa4e534c03819fa4a56", size = 12319, upload-time = "2026-01-26T02:46:44.004Z" }, +] + +[[package]] +name = "numpy" +version = "2.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/22/fd/89965aa4ac08c74998539fcbf24fa3540f3e15237fbeb6bcf9c908f4aade/numpy-2.5.1.tar.gz", hash = "sha256:a48a113e6afea91f5608793bafa7ef2ad481fefbda87ec5069f483de61cb9fa3", size = 20755553, upload-time = "2026-07-04T17:08:00.933Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/7b/14687aa674250e5e546f616f486b0d56d3631cd5b2415739141ce40bdcea/numpy-2.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2c889b56fe48b1018f764b0eec8df59ab654e9148aa91faa12596043500de277", size = 16801574, upload-time = "2026-07-04T17:06:12.423Z" }, + { url = "https://files.pythonhosted.org/packages/e1/19/cc5bb2a3f2913d27d6dbb2c78d25921fabaedc6741d4a5a615a11f3c5bf3/numpy-2.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ab451b59c5643c570974c43aef780703ef1d3b4965d2be07afd530615a9358d1", size = 11772250, upload-time = "2026-07-04T17:06:15.726Z" }, + { url = "https://files.pythonhosted.org/packages/42/77/fdf34a71dd30f54979b18603bee915e0aaf825b07afe79acd60b04b691e2/numpy-2.5.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:78798bd5b9ad744056af8efa90e3b9ddaa53272a0848a483084a1cc0a13b2dc0", size = 5331516, upload-time = "2026-07-04T17:06:17.913Z" }, + { url = "https://files.pythonhosted.org/packages/ce/e2/eb7efa015b4cce41e2517bf182a7fce0d7d5b9d9ed76a29bfa0f4fe4505c/numpy-2.5.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:2ae0ca40bcb22d6ba59c1dfd5446f49940b0f2d821fde133f10dda11f816b84e", size = 6664863, upload-time = "2026-07-04T17:06:20.02Z" }, + { url = "https://files.pythonhosted.org/packages/a9/4b/a2b32dd94ee9ffbeecb28152240042a3949db33b1c834d44090b80e1b3b8/numpy-2.5.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61ac47e772e6b8ea489e1d2f441a34c5c3ac17327e7ce294cbdf535795ad4e75", size = 15167977, upload-time = "2026-07-04T17:06:21.621Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a9/6e73d68500f80773f65f0654ea932019d6694329a0eb0ed0533de38df376/numpy-2.5.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:59fda5e192b570217ec2580c96f00e9a7e12ef6866a900eb089b62c1a32545ca", size = 16672469, upload-time = "2026-07-04T17:06:24.064Z" }, + { url = "https://files.pythonhosted.org/packages/24/7d/ad3e59015135f5261c95fd4cafeff159c955febd83a99a1d9250c4233815/numpy-2.5.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f7119ebff1a9829e9f431a4f9d28e703023bb6b9fe7c8f724467dbfc27c94ab3", size = 16527531, upload-time = "2026-07-04T17:06:26.69Z" }, + { url = "https://files.pythonhosted.org/packages/83/d0/a39b2fbcde9cb17a1dac678f254b33a6336298af9df338824c685425d5e8/numpy-2.5.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e824c2acf8862052246be5a44c15da1777940c60d010dd2aab897824d9c430f9", size = 18431940, upload-time = "2026-07-04T17:06:29.521Z" }, + { url = "https://files.pythonhosted.org/packages/04/12/cff070947791c1ed425ff76413189adbdc2fbe215eba7ce7fa454a03c7f8/numpy-2.5.1-cp312-cp312-win32.whl", hash = "sha256:08d60c810432eb83360958dea0999ac4cfb94531ea8efcbf0b7f277c2068aeb2", size = 6066764, upload-time = "2026-07-04T17:06:32.571Z" }, + { url = "https://files.pythonhosted.org/packages/65/66/53f31807a48a750f9d748da273bc3fcedd12b27ff1f3e373bfec55ef2dc0/numpy-2.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:f7d60026c0bdb1380e83bfa7a0419c4577ee4b9a08880afcb6dadeb74c649fa2", size = 12430966, upload-time = "2026-07-04T17:06:34.926Z" }, + { url = "https://files.pythonhosted.org/packages/2b/2a/d1a88066b1c14186f5d3c0d18c94f17b064511982bab0578d49ee9d43c29/numpy-2.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:17a25e09640602e10bc8de0e6fa2b3fd68eedd84ba6d7842dc8f32f9ab87bd0b", size = 10350488, upload-time = "2026-07-04T17:06:37.785Z" }, +] + +[[package]] +name = "packaging" +version = "26.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/f1/e7a6dd94a8d4a5626c03e4e99c87f241ba9e350cd9e6d75123f992427270/packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661", size = 228134, upload-time = "2026-04-24T20:15:23.917Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/b2/87e62e8c3e2f4b32e5fe99e0b86d576da1312593b39f47d8ceef365e95ed/packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e", size = 100195, upload-time = "2026-04-24T20:15:22.081Z" }, +] + +[[package]] +name = "pillow" +version = "12.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1c/3d/bb7fca845737cf9d7dbde16ed1843984665ff2e0a518f5db43e77ec540b9/pillow-12.3.0.tar.gz", hash = "sha256:3b8182a766685eaa002637e28b4ec8d6b18819a0c71f579bf0dbaa5830297cce", size = 47025035, upload-time = "2026-07-01T11:56:38.965Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/bf/fb3ebff8ddcb76aac5a01389251bbbb9519922a9b520d8247c1ca864a25d/pillow-12.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ba09209fbe443b4acccebe845d8a138b89a8f4fbaeedd44953490b5315d5e965", size = 5345969, upload-time = "2026-07-01T11:54:06.397Z" }, + { url = "https://files.pythonhosted.org/packages/d8/66/9a386a92561f402389a4fc70c18838bf6d35eb5eb5c6850b4b2dc64f5048/pillow-12.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ffd0c5368496f41b0944be820fcb7a838aa6e623d250b01acf2643939c3f99d7", size = 4780323, upload-time = "2026-07-01T11:54:09.351Z" }, + { url = "https://files.pythonhosted.org/packages/25/27/ac8f99618ffd3dde21db0f4d4b1d2ab00c0880595bfd17df103f7f39fd0c/pillow-12.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d9c7f76c0673154f044e9d78c8655fb4213f6ca31a836df48b40fe5d187717b9", size = 6266838, upload-time = "2026-07-01T11:54:11.71Z" }, + { url = "https://files.pythonhosted.org/packages/84/21/a35af28dcc61f37ed850a2d64c65c701321dfbf25085e469d5559360cbbf/pillow-12.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:78cb2c6865a35ab8ff8b75fd122f6033b92a62c82801110e48ddd6c936a45d91", size = 6940830, upload-time = "2026-07-01T11:54:13.732Z" }, + { url = "https://files.pythonhosted.org/packages/eb/51/8b08617af3ad95e33ce6d7dd2c99ed6c8298f7fb131636303956be022e25/pillow-12.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e491916b378fba47242221bb9ead245211b70d504f495d105d17b14a24b4907c", size = 6344383, upload-time = "2026-07-01T11:54:15.756Z" }, + { url = "https://files.pythonhosted.org/packages/1d/72/cf78ac9780bb93c28328f408973845a309d4d145041665f734572ced1b52/pillow-12.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0dd2064cbc55aaec028ef5fbb60fa47bb6c3e7918e07ff17935284b227a9d2df", size = 7052934, upload-time = "2026-07-01T11:54:17.721Z" }, + { url = "https://files.pythonhosted.org/packages/20/20/25e0f4dc178a6bc0696793720055519a0de89e7661dae886992decbd2f81/pillow-12.3.0-cp312-cp312-win32.whl", hash = "sha256:dbce0b29841537a2fa4a214c2bbf14de3587c9680caa9b4e217568472490b28f", size = 6472684, upload-time = "2026-07-01T11:54:19.839Z" }, + { url = "https://files.pythonhosted.org/packages/45/89/da2f7971a317f83d807fdd4065c0af40208e59e692cc43d315a71a0e96d1/pillow-12.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:a2b55dd6b2a4c4b7d87ffa56bdb33fdc5fdb9a462173861a7bc097f17d91cb09", size = 7227137, upload-time = "2026-07-01T11:54:22.025Z" }, + { url = "https://files.pythonhosted.org/packages/de/47/4845a0a6c0dbf1db8456bd9fc791f13c5ced7ced20606d08a0aacfd25b49/pillow-12.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:331b624368d4f1d069149002f25f44bc61c8919ce8ddb3c45bdad8f6e2d89510", size = 2568267, upload-time = "2026-07-01T11:54:24.051Z" }, +] + +[[package]] +name = "pluggy" +version = "1.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, +] + +[[package]] +name = "prior-authorization-review-agent" +version = "0.1.0" +source = { editable = "." } +dependencies = [ + { name = "python-dotenv" }, + { name = "pyyaml" }, + { name = "rich" }, + { name = "sie-sdk" }, +] + +[package.dev-dependencies] +dev = [ + { name = "pytest" }, + { name = "ruff" }, +] + +[package.metadata] +requires-dist = [ + { name = "python-dotenv", specifier = ">=1.0" }, + { name = "pyyaml", specifier = ">=6.0" }, + { name = "rich", specifier = ">=13.7" }, + { name = "sie-sdk", specifier = ">=0.6.23" }, +] + +[package.metadata.requires-dev] +dev = [ + { name = "pytest", specifier = ">=9.0" }, + { name = "ruff", specifier = ">=0.14" }, +] + +[[package]] +name = "propcache" +version = "0.5.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/c87281c333769159c50594f22610f77398a47ccbfbbf23074e744e86f87c/propcache-0.5.2.tar.gz", hash = "sha256:01c4fc7480cd0598bb4b57022df55b9ca296da7fc5a8760bd8451a7e63a7d427", size = 50208, upload-time = "2026-05-08T21:02:12.199Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/cb/e27bc2b2737a0bb49962b275efa051e8f1c35a936df7d5139b6b658b7dc9/propcache-0.5.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:806719138ecd720339a12410fb9614ac9b2b2d3a5fdf8235d56981c36f4039ba", size = 95887, upload-time = "2026-05-08T21:00:11.277Z" }, + { url = "https://files.pythonhosted.org/packages/e6/13/b8ae04c59392f8d11c6cd9fb4011d1dc7c86b81225c770280300e259ffe1/propcache-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:db2b80ea58eab4f86b2beec3cc8b39e8ff9276ac20e96b7cce43c8ae84cd6b5a", size = 54654, upload-time = "2026-05-08T21:00:12.604Z" }, + { url = "https://files.pythonhosted.org/packages/2c/7d/49777a3e20b55863d4794384a38acd460c04157b0a00f8602b0d508b8431/propcache-0.5.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e5cbfac9f61484f7e9f3597775500cd3ebe8274e9b050c38f9525c77c97520bf", size = 55190, upload-time = "2026-05-08T21:00:13.935Z" }, + { url = "https://files.pythonhosted.org/packages/44/c7/085d0cd63062e84044e3f05797749c3f8e3938ff3aeb0eb2f69d43fafc91/propcache-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5dbc581d2814337da56222fab8dc5f161cd798a434e49bac27930aaef798e144", size = 59995, upload-time = "2026-05-08T21:00:15.526Z" }, + { url = "https://files.pythonhosted.org/packages/9c/42/32cf8e3009e92b2645cf1e944f701e8ea4e924dffde1ee26db860bcbf7e4/propcache-0.5.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:857187f381f88c8e2fa2fe56ab94879d011b883d5a2ee5a1b60a8cd2a06846d9", size = 63422, upload-time = "2026-05-08T21:00:16.824Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f112433f99fc979431b87a39ef169e3f8df070d99a72792c56d6937ac48b/propcache-0.5.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:178b4a2cdaac1818e2bf1c5a99b94383fa73ea5382e032a48dec07dc5668dc42", size = 64342, upload-time = "2026-05-08T21:00:18.362Z" }, + { url = "https://files.pythonhosted.org/packages/14/15/5574111ae50dd6e879456888c0eadd4c5a869959775854e18e18a6b345f3/propcache-0.5.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f328175a2cde1f0ff2c4ed8ce968b9dcfb55f3a7153f39e2957ed994da13476", size = 61639, upload-time = "2026-05-08T21:00:19.692Z" }, + { url = "https://files.pythonhosted.org/packages/cc/da/4d775080b1490c0ae604acda868bd71aabe3a89ed16f2aa4339eb8a283e7/propcache-0.5.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5671d09a36b06d0fd4a3da0fccbcae360e9b1570924171a15e9e0997f0249fba", size = 61588, upload-time = "2026-05-08T21:00:21.155Z" }, + { url = "https://files.pythonhosted.org/packages/04/ac/f076982cbe2195ee9cf32de5a1e46951d9fb399fc207f390562dd0fd8fb2/propcache-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:80168e2ebe4d3ec6599d10ad8f520304ae1cad9b6c5a95372aef1b66b7bfb53a", size = 60029, upload-time = "2026-05-08T21:00:22.713Z" }, + { url = "https://files.pythonhosted.org/packages/70/60/189be62e0dd898dce3b331e1b8c7a543cd3a405ac0c81fe8ee8a9d5d77e1/propcache-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:45f11346f884bc47444f6e6647131055844134c3175b629f84952e2b5cd62b64", size = 56774, upload-time = "2026-05-08T21:00:24.001Z" }, + { url = "https://files.pythonhosted.org/packages/ea/9e/93377b9c7939c1ffae98f878dee955efadfd638078bc86dbc21f9d52f651/propcache-0.5.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8e778ebd44ef4f66ed60a0416b06b489687db264a9c0b3620362f26489492913", size = 63532, upload-time = "2026-05-08T21:00:25.545Z" }, + { url = "https://files.pythonhosted.org/packages/14/f9/590ef6cfb9b8028d516d287812ece32bb0bc5f11fbb9c8bf6b2e6313fec8/propcache-0.5.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:c0cb9ed24c8964e172768d455a38254c2dd8a552905729ce006cad3d3dda59b1", size = 61592, upload-time = "2026-05-08T21:00:27.186Z" }, + { url = "https://files.pythonhosted.org/packages/b4/5e/70958b3034c297a630bba2f17ca7abc2d5f39a803ad7e370ab79d1ecd022/propcache-0.5.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1d1ad32d9d4355e2be65574fd0bfd3677e7066b009cd5b9b2dee8aa6a6393b33", size = 64788, upload-time = "2026-05-08T21:00:28.8Z" }, + { url = "https://files.pythonhosted.org/packages/12/fd/77fe5936d8c3086ca9048f7f415f122ed82e53884a9ec193646b42deef06/propcache-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c80f4ba3e8f00189165999a742ee526ebeccedf6c3f7beb0c7df821e9772435a", size = 62514, upload-time = "2026-05-08T21:00:30.098Z" }, + { url = "https://files.pythonhosted.org/packages/cf/74/66bd798b5b3be70aa1b391f5cc9d6a0a5532d7fd3b19ec0b213e72e6ad9d/propcache-0.5.2-cp312-cp312-win32.whl", hash = "sha256:8c7972d8f193740d9175f0998ab38717e6cd322d5935c5b0fef8c0d323fd9031", size = 39018, upload-time = "2026-05-08T21:00:31.622Z" }, + { url = "https://files.pythonhosted.org/packages/61/7c/5c0d34aa3024694d6dcb9271cdbdd08c4e47c1c0ad95ec7e7bc74cdea145/propcache-0.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:d9ee8826a7d47863a08ac44e1a5f611a462eefc3a194b492da242128bec75b42", size = 42322, upload-time = "2026-05-08T21:00:32.918Z" }, + { url = "https://files.pythonhosted.org/packages/4d/91/875812f1a3feb20ceba818ef39fbe4d92f1081e04ac815c822496d0d038b/propcache-0.5.2-cp312-cp312-win_arm64.whl", hash = "sha256:2800a4a8ead6b28cccd1ec54b59346f0def7922ee1c7598e8499c733cfbb7c84", size = 38172, upload-time = "2026-05-08T21:00:35.124Z" }, + { url = "https://files.pythonhosted.org/packages/3a/ed/1cdcab6ba3d6ab7feca11fc14f0eeea80755bb53ef4e892079f31b10a25f/propcache-0.5.2-py3-none-any.whl", hash = "sha256:be1ddfcbb376e3de5d2e2db1d58d6d67463e6b4f9f040c000de8e300295465fe", size = 14036, upload-time = "2026-05-08T21:02:10.673Z" }, +] + +[[package]] +name = "pygments" +version = "2.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c3/b2/bc9c9196916376152d655522fdcebac55e66de6603a76a02bca1b6414f6c/pygments-2.20.0.tar.gz", hash = "sha256:6757cd03768053ff99f3039c1a36d6c0aa0b263438fcab17520b30a303a82b5f", size = 4955991, upload-time = "2026-03-29T13:29:33.898Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl", hash = "sha256:81a9e26dd42fd28a23a2d169d86d7ac03b46e2f8b59ed4698fb4785f946d0176", size = 1231151, upload-time = "2026-03-29T13:29:30.038Z" }, +] + +[[package]] +name = "pytest" +version = "9.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "iniconfig" }, + { name = "packaging" }, + { name = "pluggy" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e4/47/b9efed96c114afcfa3c9d3fe98a76a1d14c74a9e266d397cf6eb64be5e01/pytest-9.1.1.tar.gz", hash = "sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313", size = 1636369, upload-time = "2026-06-19T10:58:32.857Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/24/25/1de2678b631f5a49215c6c96fff41ba892b0a34df68d6d80292b1b48aa7f/pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c", size = 386536, upload-time = "2026-06-19T10:58:31.347Z" }, +] + +[[package]] +name = "python-dotenv" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" }, + { url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" }, + { url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" }, + { url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" }, + { url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" }, + { url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" }, + { url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" }, + { url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" }, +] + +[[package]] +name = "rich" +version = "15.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/8f/0722ca900cc807c13a6a0c696dacf35430f72e0ec571c4275d2371fca3e9/rich-15.0.0.tar.gz", hash = "sha256:edd07a4824c6b40189fb7ac9bc4c52536e9780fbbfbddf6f1e2502c31b068c36", size = 230680, upload-time = "2026-04-12T08:24:00.75Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/3b/64d4899d73f91ba49a8c18a8ff3f0ea8f1c1d75481760df8c68ef5235bf5/rich-15.0.0-py3-none-any.whl", hash = "sha256:33bd4ef74232fb73fe9279a257718407f169c09b78a87ad3d296f548e27de0bb", size = 310654, upload-time = "2026-04-12T08:24:02.83Z" }, +] + +[[package]] +name = "ruff" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/94/1e5e4967626faf12fa56999cd6222dff6992ceb086ad7945756baf70c7a7/ruff-0.16.0.tar.gz", hash = "sha256:e460aafd5495ec89efaa6ced2e4a9a581116451e1c88b9d37ef497e0f8e93982", size = 4790557, upload-time = "2026-07-23T19:11:30.981Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/81/1c8818fee7ce1a04cd7d1b3172e0a8f8e4f1dc4feb7fc390e16daa8af323/ruff-0.16.0-py3-none-linux_armv6l.whl", hash = "sha256:e5115729eb08c585e5121978ba5d5b60caeae394ce21b9fb5e6cd33a1c6c9b1e", size = 10754633, upload-time = "2026-07-23T19:10:46.415Z" }, + { url = "https://files.pythonhosted.org/packages/23/df/beaf59c09d68db84304d555f188b276a77132a5d5b0b67a5c762aa143628/ruff-0.16.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3c954b1d580bfa035b41654f7858cc7e71d5fc3ac5b723dd62bd9133830ed522", size = 10969164, upload-time = "2026-07-23T19:10:50.271Z" }, + { url = "https://files.pythonhosted.org/packages/42/ce/741cd197496a1abbf51352710fd15ed995d2a2be87189c1da26a450d6e83/ruff-0.16.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e01c21d10eb1b29f47b7454e1f4056db9a3f0260c646aa88457c610291db9f81", size = 10488846, upload-time = "2026-07-23T19:10:52.639Z" }, + { url = "https://files.pythonhosted.org/packages/52/2a/a2db8e88cade358f5cdcb05674a917751074109315d014eb6352d9a893f7/ruff-0.16.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e364e5ed22ed8dc05082fd78e35308618260907ac2d3c1d637b2e682415b6c9", size = 10889729, upload-time = "2026-07-23T19:10:54.89Z" }, + { url = "https://files.pythonhosted.org/packages/42/65/62a771694ebd63029dc953e27dbad40e1588bd4860ff9fe881018fddaa49/ruff-0.16.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d327b8fc113a1d4421a04f3839d3752057c8dd1ee320223a6f3f52d04ada462a", size = 10568275, upload-time = "2026-07-23T19:10:56.993Z" }, + { url = "https://files.pythonhosted.org/packages/3f/e2/ced249fe8af5f086c5c58cc21cc3356d50f32f7401c5df87050c999620a7/ruff-0.16.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b50c55e263103586b3dcf5f73d479eb8cb5fdb6098fec59a62891dab653717", size = 11385112, upload-time = "2026-07-23T19:10:59.615Z" }, + { url = "https://files.pythonhosted.org/packages/87/0b/05154977a8fd69eeb6c103271f55403bfd8711f5c0f8ed07489d95a504e7/ruff-0.16.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ff4a79ce3ec0172f3241943835de1c4cb4e2dcd07f0f8c2d02603dbbbee4b17", size = 12207008, upload-time = "2026-07-23T19:11:02.154Z" }, + { url = "https://files.pythonhosted.org/packages/fb/29/98225831a3a1eab0e02f4acc6ca6559a98611dcc68b6965ff4b7234627c1/ruff-0.16.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e95c448fca1fb2a18372a9440926c5a6ee789639bb975c72e7ae6d0b04218ab4", size = 11650842, upload-time = "2026-07-23T19:11:04.557Z" }, + { url = "https://files.pythonhosted.org/packages/91/66/6bd3cf90500653d55dc0ffc8507aa8300bd49d0214b2e8cb4d3fef2943ba/ruff-0.16.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f11a8d11010301d0a398a2fdef67691feca7294da6aef55e2150e8fa2cd520b", size = 11400718, upload-time = "2026-07-23T19:11:09.233Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a2/a54eb4eae05d66364050a5d3b8a9c5ef88196531b3cbe7109d873f87f819/ruff-0.16.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:48044c678e9cb8698246c99b14aaccfa6601dea7379eb48a6f8f73f7a6d86cd0", size = 11426177, upload-time = "2026-07-23T19:11:11.994Z" }, + { url = "https://files.pythonhosted.org/packages/1a/be/16e3eea4b2a478a496919f5e36f17c4559e54620bd3bbac5d6affa068006/ruff-0.16.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7aa0959bad8eb8bef50340154fc9b58678dae31fa4293afa38b44b6e552c0213", size = 10856126, upload-time = "2026-07-23T19:11:14.221Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/252eb8b868a16eec7257c14f504f77537e734b2d69c762e639e588e304a3/ruff-0.16.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:28ea2b7df8ebf7f9da6b7d47b230ab48f387c0a29be3b474c4d0740e197bb9af", size = 10571208, upload-time = "2026-07-23T19:11:16.378Z" }, + { url = "https://files.pythonhosted.org/packages/21/09/817a482f542f7570cbb4554b26e896610c7114f539b1d9e2d2145bf6bef6/ruff-0.16.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:33a3dfac8c35f81498dea9181bccc2f4c4bc8f1521a1dd9406e77643e0f0fb09", size = 11063329, upload-time = "2026-07-23T19:11:19.173Z" }, + { url = "https://files.pythonhosted.org/packages/2e/23/9403c180ca1cb9b1f7335f5c3e5305c09d49ea5b345196682a36028bde4a/ruff-0.16.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a5237a0bda500d30d81b8e07a6973a5cbc772864cbf746ae2f4e8a2e01c9f4ed", size = 11489751, upload-time = "2026-07-23T19:11:21.74Z" }, + { url = "https://files.pythonhosted.org/packages/b2/1d/1b2ef7bcde851c78d7f17f1cca13fd6dc695fc4b3d6197941e72cae5b132/ruff-0.16.0-py3-none-win32.whl", hash = "sha256:7fab76fa065c873f41ff744347c6e77bcc3dfec4bcc754dc26b63d23c0f7f5fb", size = 10785885, upload-time = "2026-07-23T19:11:23.947Z" }, + { url = "https://files.pythonhosted.org/packages/b2/a3/d5e4ef7a56be3f928ffb90b94c25ba7d3cb9c7fe0736aeaaedf361770712/ruff-0.16.0-py3-none-win_amd64.whl", hash = "sha256:429c117f022bf481fabd9d551e7a3952b24c65e6ef44337ea09d90bebef14472", size = 11923141, upload-time = "2026-07-23T19:11:26.409Z" }, + { url = "https://files.pythonhosted.org/packages/cb/9a/8415f2657cbe200f41a4531ccededf135505a92d4a012229121f885b26f9/ruff-0.16.0-py3-none-win_arm64.whl", hash = "sha256:14296fedcd2705c77ab8235439278bbb38f285cf7da5528b00b3e330c3d4872d", size = 11273407, upload-time = "2026-07-23T19:11:28.705Z" }, +] + +[[package]] +name = "sie-sdk" +version = "0.6.23" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "httpx" }, + { name = "msgpack" }, + { name = "msgpack-numpy" }, + { name = "numpy" }, + { name = "pillow" }, + { name = "pyyaml" }, + { name = "websockets" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/22/c0/b0fd1ecb9cfd92271a22de027b2d924b16b1d5b526332da38e0a1265373c/sie_sdk-0.6.23.tar.gz", hash = "sha256:7a7455badd364b8bff05d3f36004ad959e524dd9fef3d1bf4148a67eb5132778", size = 197836, upload-time = "2026-07-24T04:05:17.119Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/58/ecf8d19e4a5e8797781433ebaf2e5034610c896d5a5595e7c901df34099e/sie_sdk-0.6.23-py3-none-any.whl", hash = "sha256:9e3d558a3b7b5d60f3d6deeededdd865b37a8ef7505dd922b5d2749e1efe1f0d", size = 130234, upload-time = "2026-07-24T04:05:15.755Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/cc/6253133b5bb138fc3306cebfbda2c520f545d36b5be2c7255cc528bb45d6/typing_extensions-4.16.0.tar.gz", hash = "sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5", size = 113555, upload-time = "2026-07-02T08:40:05.92Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/d3/b8441a820a491ddfc024b0b0cf0393375b75ea13866d9c66727e54c2fc80/typing_extensions-4.16.0-py3-none-any.whl", hash = "sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8", size = 45571, upload-time = "2026-07-02T08:40:04.659Z" }, +] + +[[package]] +name = "websockets" +version = "14.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/54/8359678c726243d19fae38ca14a334e740782336c9f19700858c4eb64a1e/websockets-14.2.tar.gz", hash = "sha256:5059ed9c54945efb321f097084b4c7e52c246f2c869815876a69d1efc4ad6eb5", size = 164394, upload-time = "2025-01-19T21:00:56.431Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/81/04f7a397653dc8bec94ddc071f34833e8b99b13ef1a3804c149d59f92c18/websockets-14.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1f20522e624d7ffbdbe259c6b6a65d73c895045f76a93719aa10cd93b3de100c", size = 163096, upload-time = "2025-01-19T20:59:29.763Z" }, + { url = "https://files.pythonhosted.org/packages/ec/c5/de30e88557e4d70988ed4d2eabd73fd3e1e52456b9f3a4e9564d86353b6d/websockets-14.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:647b573f7d3ada919fd60e64d533409a79dcf1ea21daeb4542d1d996519ca967", size = 160758, upload-time = "2025-01-19T20:59:32.095Z" }, + { url = "https://files.pythonhosted.org/packages/e5/8c/d130d668781f2c77d106c007b6c6c1d9db68239107c41ba109f09e6c218a/websockets-14.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6af99a38e49f66be5a64b1e890208ad026cda49355661549c507152113049990", size = 160995, upload-time = "2025-01-19T20:59:33.527Z" }, + { url = "https://files.pythonhosted.org/packages/a6/bc/f6678a0ff17246df4f06765e22fc9d98d1b11a258cc50c5968b33d6742a1/websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:091ab63dfc8cea748cc22c1db2814eadb77ccbf82829bac6b2fbe3401d548eda", size = 170815, upload-time = "2025-01-19T20:59:35.837Z" }, + { url = "https://files.pythonhosted.org/packages/d8/b2/8070cb970c2e4122a6ef38bc5b203415fd46460e025652e1ee3f2f43a9a3/websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b374e8953ad477d17e4851cdc66d83fdc2db88d9e73abf755c94510ebddceb95", size = 169759, upload-time = "2025-01-19T20:59:38.216Z" }, + { url = "https://files.pythonhosted.org/packages/81/da/72f7caabd94652e6eb7e92ed2d3da818626e70b4f2b15a854ef60bf501ec/websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a39d7eceeea35db85b85e1169011bb4321c32e673920ae9c1b6e0978590012a3", size = 170178, upload-time = "2025-01-19T20:59:40.423Z" }, + { url = "https://files.pythonhosted.org/packages/31/e0/812725b6deca8afd3a08a2e81b3c4c120c17f68c9b84522a520b816cda58/websockets-14.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0a6f3efd47ffd0d12080594f434faf1cd2549b31e54870b8470b28cc1d3817d9", size = 170453, upload-time = "2025-01-19T20:59:41.996Z" }, + { url = "https://files.pythonhosted.org/packages/66/d3/8275dbc231e5ba9bb0c4f93144394b4194402a7a0c8ffaca5307a58ab5e3/websockets-14.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:065ce275e7c4ffb42cb738dd6b20726ac26ac9ad0a2a48e33ca632351a737267", size = 169830, upload-time = "2025-01-19T20:59:44.669Z" }, + { url = "https://files.pythonhosted.org/packages/a3/ae/e7d1a56755ae15ad5a94e80dd490ad09e345365199600b2629b18ee37bc7/websockets-14.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e9d0e53530ba7b8b5e389c02282f9d2aa47581514bd6049d3a7cffe1385cf5fe", size = 169824, upload-time = "2025-01-19T20:59:46.932Z" }, + { url = "https://files.pythonhosted.org/packages/b6/32/88ccdd63cb261e77b882e706108d072e4f1c839ed723bf91a3e1f216bf60/websockets-14.2-cp312-cp312-win32.whl", hash = "sha256:20e6dd0984d7ca3037afcb4494e48c74ffb51e8013cac71cf607fffe11df7205", size = 163981, upload-time = "2025-01-19T20:59:49.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/7d/32cdb77990b3bdc34a306e0a0f73a1275221e9a66d869f6ff833c95b56ef/websockets-14.2-cp312-cp312-win_amd64.whl", hash = "sha256:44bba1a956c2c9d268bdcdf234d5e5ff4c9b6dc3e300545cbe99af59dda9dcce", size = 164421, upload-time = "2025-01-19T20:59:50.674Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c8/d529f8a32ce40d98309f4470780631e971a5a842b60aec864833b3615786/websockets-14.2-py3-none-any.whl", hash = "sha256:7a6ceec4ea84469f15cf15807a747e9efe57e369c384fa86e022b3bea679b79b", size = 157416, upload-time = "2025-01-19T21:00:54.843Z" }, +] + +[[package]] +name = "yarl" +version = "1.24.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna" }, + { name = "multidict" }, + { name = "propcache" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/31/33/ebe9e3d1f86c7a0b51094c0a146392045ca1631d2664889539dec8088a33/yarl-1.24.5.tar.gz", hash = "sha256:e81b83143bee16329c23db3c1b2d82b29892fcbcb849186d2f6e98a5abe9a57f", size = 228679, upload-time = "2026-07-20T02:07:45.435Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1b/84/71d051c850b5af41d168c679d9eb67eb7c55283ac4ee131673edf134bc4e/yarl-1.24.5-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d693396e5aea78db03decd60aec9ece16c9b40ba00a587f089615ff4e718a81d", size = 136035, upload-time = "2026-07-20T02:05:25.489Z" }, + { url = "https://files.pythonhosted.org/packages/03/4d/8ad27f9a1b7e69313cca5d695b925b48efe51208d3490e0844bae97cabc0/yarl-1.24.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3363fcc96e665878946ad7a106b9a13eac0541766a690ef287c0232ac768b6ec", size = 97642, upload-time = "2026-07-20T02:05:27.429Z" }, + { url = "https://files.pythonhosted.org/packages/ea/b4/05b4131c407006cd1e410e9c6539f16a0945724677e5364447313c15ea3e/yarl-1.24.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9d399bdcfb4a0f659b9b3788bbc89babe63d9a6a65aacdf4d4e7065ff2e6316c", size = 97323, upload-time = "2026-07-20T02:05:29.441Z" }, + { url = "https://files.pythonhosted.org/packages/20/16/e618c875c73e0e39611f20a581b3d5e8d59b8857bf001bee3263044c6deb/yarl-1.24.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90333fd89b43c0d08ac85f3f1447593fc2c66de18c3d6378d7125ea118dc7a54", size = 107741, upload-time = "2026-07-20T02:05:31.367Z" }, + { url = "https://files.pythonhosted.org/packages/d9/9a/c4defeaf3ed33fcb346aacf9c6e971a8d4e2bde04a0310e79abb208e7965/yarl-1.24.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:665b0a2c463cc9423dd647e0bfd9f4ccc9b50f768c55304d5e9f80b177c1de12", size = 103570, upload-time = "2026-07-20T02:05:33.303Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e7/0e0e0de5865ebd5914537ef486f36c727a59865c3ac0cf5ff1b32aececbf/yarl-1.24.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e006d3a974c4ee19512e5f058abedb6eef36a5e553c14812bdeba1758d812e6d", size = 115815, upload-time = "2026-07-20T02:05:35.292Z" }, + { url = "https://files.pythonhosted.org/packages/2b/27/ca56b700cb170aba25a3893b75355b213935657dc5714d2383354a270e62/yarl-1.24.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e7d42c531243450ef0d4d9c172e7ed6ef052640f195629065041b5add4e058d1", size = 116025, upload-time = "2026-07-20T02:05:37.503Z" }, + { url = "https://files.pythonhosted.org/packages/d6/d0/d56c859b8222116f5d68459199f48359e0bf121b6f65a69bf329b3602ba0/yarl-1.24.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f08c7513ecef5aad65687bfdf6bc601ae9fccd04a42904501f8f7141abad9eb9", size = 109835, upload-time = "2026-07-20T02:05:39.506Z" }, + { url = "https://files.pythonhosted.org/packages/70/a2/3a35557e4d1a79425040eba202ccaf08bdc8717680fc77e2498a1ad2e0a5/yarl-1.24.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6c95b17fe34ed802f17e205112e6e10db92275c34fee290aa9bdc55a9c724027", size = 108884, upload-time = "2026-07-20T02:05:41.584Z" }, + { url = "https://files.pythonhosted.org/packages/e4/35/ef4c26356b7913c68983bac2d72a4212b3347af551cb8d250b99b5ed7b7f/yarl-1.24.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:56b149b22de33b23b0c6077ab9518c6dcb538ad462e1830e68d06591ccf6e38b", size = 107308, upload-time = "2026-07-20T02:05:43.697Z" }, + { url = "https://files.pythonhosted.org/packages/d5/91/ff0dc66c2ccf3e0153ab97ff61eabab4400e6a5264af427ab30cd69f1857/yarl-1.24.5-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a8fe66b8f300da93798025a785a5b90b42f3810dc2b72283ff84a41aaaebc293", size = 103646, upload-time = "2026-07-20T02:05:45.895Z" }, + { url = "https://files.pythonhosted.org/packages/74/f0/33b9271c7f881766359d58266fa0811d2e5210ed860e28da7dc6d7786344/yarl-1.24.5-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:377fe3732edbaf78ee74efdf2c9f49f6e99f20e7f9d2649fda3eb4badd77d76e", size = 115305, upload-time = "2026-07-20T02:05:47.832Z" }, + { url = "https://files.pythonhosted.org/packages/ef/65/fd79fb1868c4a80db8661091de525bf430f63c3bea1b20e8b6a84fc7d359/yarl-1.24.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e8ffa78582120024f476a611d7befc123cee59e47e8309d470cf667d806e613b", size = 108404, upload-time = "2026-07-20T02:05:49.604Z" }, + { url = "https://files.pythonhosted.org/packages/ff/ba/dbabe6b262f17a816c70cfc09558dbf03ece3ec76684d02f911a3d3a189c/yarl-1.24.5-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:daba5e594f06114e37db186efd2dd916609071e59daca901a0a2e71f02b142ce", size = 115940, upload-time = "2026-07-20T02:05:51.741Z" }, + { url = "https://files.pythonhosted.org/packages/a5/43/fab2d1dad9d340a268cdde63756a123d069723efff6a372d123fa74a9517/yarl-1.24.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:65be18ec59496c13908f02a2472751d9ef840b4f3fb5726f129306bf6a2a7bba", size = 110006, upload-time = "2026-07-20T02:05:53.554Z" }, + { url = "https://files.pythonhosted.org/packages/c4/27/41eb51bbd1b8d89546b83897cfb0164f1e109304fd408dbb151b639eec0f/yarl-1.24.5-cp312-cp312-win_amd64.whl", hash = "sha256:a929d878fec099030c292803b31e5d5540a7b6a31e6a3cc76cb4685fc2a2f51b", size = 97618, upload-time = "2026-07-20T02:05:55.57Z" }, + { url = "https://files.pythonhosted.org/packages/3c/25/b2553764b3d65db711d8f45416351ec4f420847558eb669edcbcaadf5780/yarl-1.24.5-cp312-cp312-win_arm64.whl", hash = "sha256:7ce27823052e2013b597e0c738b13e7e36b8ccb9400df8959417b052ab0fd92c", size = 93018, upload-time = "2026-07-20T02:05:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/61/02/962c1cbfc401a30c1d034dc67ff395f64b52302c6d62de556c1fca99acc0/yarl-1.24.5-py3-none-any.whl", hash = "sha256:a33700d13d9b7d84fd10947b09ff69fb9a792e519c8cb9764a3ca70baa6c23a7", size = 58612, upload-time = "2026-07-20T02:07:43.461Z" }, +] diff --git a/examples/prior-authorization-review-agent/verified-run/evaluation.json b/examples/prior-authorization-review-agent/verified-run/evaluation.json new file mode 100644 index 00000000..7523e09c --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/evaluation.json @@ -0,0 +1,55 @@ +{ + "passed": true, + "checks": [ + { + "name": "published-cms-example-scope", + "passed": true, + "detail": "Reproduction of CMS's published L1851 insufficient-documentation example" + }, + { + "name": "hcpcs-code", + "passed": true, + "detail": "L1851" + }, + { + "name": "insufficient-documentation-route", + "passed": true, + "detail": "insufficient_documentation" + }, + { + "name": "six-month-requirement", + "passed": true, + "detail": "6" + }, + { + "name": "seven-month-observation", + "passed": true, + "detail": "7" + }, + { + "name": "one-month-gap", + "passed": true, + "detail": "1" + }, + { + "name": "missing-timely-face-to-face", + "passed": true, + "detail": "['face-to-face encounter within 6 months of proof of delivery']" + }, + { + "name": "published-payment-action", + "passed": true, + "detail": "insufficient documentation error; MAC recoups payment" + }, + { + "name": "ranked-source-evidence", + "passed": true, + "detail": "['chunk-10', 'chunk-3', 'chunk-9', 'chunk-4', 'chunk-2', 'chunk-8', 'chunk-5', 'chunk-7', 'chunk-0', 'chunk-1', 'chunk-6']" + }, + { + "name": "no-new-coverage-or-medical-decision", + "passed": true, + "detail": "coverage=None; medical=None" + } + ] +} diff --git a/examples/prior-authorization-review-agent/verified-run/manifest.json b/examples/prior-authorization-review-agent/verified-run/manifest.json new file mode 100644 index 00000000..cbd167dc --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/manifest.json @@ -0,0 +1,203 @@ +{ + "created_at": "2026-07-25T02:35:39.667778+00:00", + "endpoint": "http://127.0.0.1:8080", + "sie_server_commit": "4b5ea9ccd5d5fc07c56edfea790080b05e17f0d2", + "run_command": "Modal exact-source reference examples against public SIE main at 4b5ea9c", + "models": { + "parse": "docling-project/docling", + "retrieve": "BAAI/bge-m3", + "rerank": "Qwen/Qwen3-Reranker-4B", + "entities": "urchade/gliner_multi-v2.1", + "extract": "fastino/gliner2-large-v1" + }, + "fixture": { + "path": "fixtures/cms-l1851-insufficient-documentation.html", + "sha256": "aec2408ff0e00b9960bf9e7879a7213942d32e8980da801a2c71acef4755cf91" + }, + "artifacts": [ + { + "path": "evaluation.json", + "sha256": "436124fe249e3a44392458003815cfa46fbe12f9e9a0bc559439ff383e02b9dd" + }, + { + "path": "parsed.md", + "sha256": "918cd788c0e8736afa5d6a2745fd09617738260ad7b1c2321539a1c36529adb4" + }, + { + "path": "raw/entities-case-0.json", + "sha256": "7cc13bed69de37886d91ab709db0eb09213450bb1d177014e0a503024cfd01ff" + }, + { + "path": "raw/entities-case-1.json", + "sha256": "842d45572b3a3e2bd84e9f60eb75c5c7227725d8d58de993ab03db37b82f8d9a" + }, + { + "path": "raw/entities-case-2.json", + "sha256": "9df72fcaacc8c68f9eed13f58982eb42a044073122cdd8dcb30400500cb9982e" + }, + { + "path": "raw/entities-case-3.json", + "sha256": "f06147d7c35393adf4dff19b2600488334768120f98d72ed4d16b6f2e25cd9a9" + }, + { + "path": "raw/entities-case-4.json", + "sha256": "d97c6eac7c79d1fa503b09d6bce5204308de232d31176bd206c928711565dc44" + }, + { + "path": "raw/entities-requirement-0.json", + "sha256": "0c4ba08af8b389a288b44621514d81c0eb858070ee65a7a8c23a71a884f7a1b2" + }, + { + "path": "raw/entities.json", + "sha256": "f8022cf263c93c00dfbc976d88718f07eaf742faa62600d3d6fcaa6e990472cf" + }, + { + "path": "raw/gliner2-outcome.json", + "sha256": "c9ec5d4ff68870786a01c63c06146881433e2f3c62a952e4d013d27655e5003f" + }, + { + "path": "raw/gliner2-requirements.json", + "sha256": "809de1f98b358d9b6a6d094ef6e9754b32bfa28d94a8d7c2ae3312368754d3f2" + }, + { + "path": "raw/gliner2-submission.json", + "sha256": "16ffc2a78032eaa3df46f105d8eb9156f471865b85a5133df9e89e5a97ed5008" + }, + { + "path": "raw/mapped.json", + "sha256": "05e9962150bafe564ccece4600ddd8b4560acf967a19bc0f55073f77503c4b85" + }, + { + "path": "raw/parse.json", + "sha256": "9fc49a18e11c8ad7bfbff26dbafbdeee4dfa09901d8986c0655121c6e8fb315f" + }, + { + "path": "raw/rerank.json", + "sha256": "515be530e03bd31a476cfcbcf48bd2bc8625931d301997d501d3e4347236849c" + }, + { + "path": "raw/retrieve.json", + "sha256": "50ee8a23ae7e74cf9ad49c81729191b4264652b89f254f00db4524e1f18a9cbd" + }, + { + "path": "review.json", + "sha256": "02629e2ffd8ac0afe4f4c29e278a2b2a59f01619e030e011c84de90171eeccb5" + } + ], + "source": { + "publisher": "Centers for Medicare & Medicaid Services", + "title": "Lower Limb Orthoses", + "url": "https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses", + "page_last_modified": "2026-02-11" + }, + "calls": [ + { + "stage": "parse", + "model": "docling", + "configured_model": "docling-project/docling", + "latency_ms": 35066.1 + }, + { + "stage": "retrieve", + "model": "BAAI/bge-m3", + "latency_ms": 6515.2 + }, + { + "stage": "rerank", + "model": "Qwen/Qwen3-Reranker-4B", + "latency_ms": 10605.6 + }, + { + "stage": "entities_requirement_0", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 11180.6 + }, + { + "stage": "entities_case_0", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 168.2 + }, + { + "stage": "entities_case_1", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 109.9 + }, + { + "stage": "entities_case_2", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 376.7 + }, + { + "stage": "entities_case_3", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 27.3 + }, + { + "stage": "entities_case_4", + "model": "urchade/gliner_multi-v2.1", + "latency_ms": 29.5 + }, + { + "stage": "gliner2_requirements", + "model": "fastino/gliner2-large-v1", + "latency_ms": 10098.2, + "source_chunk_ids": [ + "chunk-2" + ], + "source_sha256": "265596236fcf3915a13ad19f5dd77510f4dfbc4420e247a53c27264b8c01deba", + "source_fragment_sha256": { + "authorization_requirement_text": "cadcff3f63a5a778d6202dbb1714b06ef62dde0c6922626758a63bce6a795971", + "face_to_face_requirement_text": "cadcff3f63a5a778d6202dbb1714b06ef62dde0c6922626758a63bce6a795971", + "written_order_requirement_text": "cadcff3f63a5a778d6202dbb1714b06ef62dde0c6922626758a63bce6a795971", + "face_to_face_window_text": "19a4544d06404af9e8a66fb0446b572bc8a96330edf46a179f3a28388671dbfa" + } + }, + { + "stage": "gliner2_submission", + "model": "fastino/gliner2-large-v1", + "latency_ms": 56.4, + "source_chunk_ids": [ + "chunk-4", + "chunk-5", + "chunk-6", + "chunk-7" + ], + "source_sha256": "04f3867101459e32634db86d8544769b47401fba268fcef222fcccf5d0a2d94d", + "source_fragment_sha256": { + "hcpcs_code": "9a893928eede6acd46e1f8029609142962206042b4ceb88d901e159e1518e3bf", + "submitted_order": "c1865491ea7917e6f48951997f384e73385781a08a63e07eaafd42c4afda2718", + "submitted_medical_record": "25ad16851d4271981f91a66ae07a096b13f8d2ea8982523c55cf2ffb6c61c355", + "submitted_proof_of_delivery": "02ea6561a2f2593960d9b67bc0c32a73dde6d1ea65bb32c91a77c33169335ed7", + "documented_face_to_face_age": "02ea6561a2f2593960d9b67bc0c32a73dde6d1ea65bb32c91a77c33169335ed7" + } + }, + { + "stage": "gliner2_outcome", + "model": "fastino/gliner2-large-v1", + "latency_ms": 49.6, + "source_chunk_ids": [ + "chunk-9", + "chunk-10" + ], + "source_sha256": "f91fe9b5ccf451ef886f1014dde5f3fd5eb24996a862de9f22ce3023b14e324f", + "source_fragment_sha256": { + "missing_documentation": "fb6503169e482f7076387a6f06abf2e86cb4382d03e2190ab67e5d244a3adce2", + "review_conclusion": "0ddc7dda57a2fcbf6b01a6f411888c1fa23404bc6d8a5c8c0f5b3276f025b89d", + "payment_action": "0ddc7dda57a2fcbf6b01a6f411888c1fa23404bc6d8a5c8c0f5b3276f025b89d" + } + } + ], + "pipeline": [ + "parse", + "retrieve", + "rerank", + "entities_requirements", + "entities_case", + "gliner2_requirements", + "gliner2_submission", + "gliner2_outcome", + "deterministic_source_mapping", + "deterministic_validation" + ], + "decision_boundary": "This run reproduces one example published by CMS. It does not make a coverage, medical-necessity, diagnosis, treatment, or prospective payment decision." +} diff --git a/examples/prior-authorization-review-agent/verified-run/parsed.md b/examples/prior-authorization-review-agent/verified-run/parsed.md new file mode 100644 index 00000000..27d70e8c --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/parsed.md @@ -0,0 +1,37 @@ +# Lower Limb Orthoses + +Source: + +https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses + +Page Last Modified: 02/11/2026 04:18 PM + +## Billing & Coding Criteria + +We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS + +codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item. + +## Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses + +A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable + +flexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without + +varus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review + +contractor's request: + +- Standard written order with correct HCPCS coding +- Treating practitioner's medical record that has adequate medical necessity information +- Proof of delivery with face-to-face encounter 7 months ago + +### What Documentation Was Missing? + +The doctor didn't document the face-to-face encounter within 6 months of proof of delivery. + +### What Happens Next? + +The review contractor completes the claim as an insufficient documentation error, and the MAC recoups + +payment. \ No newline at end of file diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities-case-0.json b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-0.json new file mode 100644 index 00000000..6a109e06 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-0.json @@ -0,0 +1,8 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-entities_case_0", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities-case-1.json b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-1.json new file mode 100644 index 00000000..5f393751 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-1.json @@ -0,0 +1,8 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-entities_case_1", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities-case-2.json b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-2.json new file mode 100644 index 00000000..90cc0ecd --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-2.json @@ -0,0 +1,17 @@ +{ + "entities": [ + { + "text": "7 months ago", + "label": "time period", + "score": 0.73681640625, + "start": 48, + "end": 60, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-entities_case_2", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities-case-3.json b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-3.json new file mode 100644 index 00000000..eda67689 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-3.json @@ -0,0 +1,17 @@ +{ + "entities": [ + { + "text": "6 months", + "label": "time period", + "score": 0.8623046875, + "start": 61, + "end": 69, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-entities_case_3", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities-case-4.json b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-4.json new file mode 100644 index 00000000..01939bd4 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities-case-4.json @@ -0,0 +1,8 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-entities_case_4", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities-requirement-0.json b/examples/prior-authorization-review-agent/verified-run/raw/entities-requirement-0.json new file mode 100644 index 00000000..08578cc4 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities-requirement-0.json @@ -0,0 +1,33 @@ +{ + "entities": [ + { + "text": "prior authorization", + "label": "administrative requirement", + "score": 0.560546875, + "start": 11, + "end": 30, + "bbox": null + }, + { + "text": "L1832", + "label": "procedure code", + "score": 0.7470703125, + "start": 110, + "end": 115, + "bbox": null + }, + { + "text": "L1851", + "label": "procedure code", + "score": 0.80517578125, + "start": 120, + "end": 125, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-entities_requirement_0", + "model": "urchade/gliner_multi-v2.1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/entities.json b/examples/prior-authorization-review-agent/verified-run/raw/entities.json new file mode 100644 index 00000000..77fb9002 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/entities.json @@ -0,0 +1,45 @@ +{ + "model": "urchade/gliner_multi-v2.1", + "entities": [ + { + "text": "prior authorization", + "label": "administrative requirement", + "score": 0.560546875, + "start": 11, + "end": 30, + "bbox": null + }, + { + "text": "L1832", + "label": "procedure code", + "score": 0.7470703125, + "start": 110, + "end": 115, + "bbox": null + }, + { + "text": "L1851", + "label": "procedure code", + "score": 0.80517578125, + "start": 120, + "end": 125, + "bbox": null + }, + { + "text": "7 months ago", + "label": "time period", + "score": 0.73681640625, + "start": 48, + "end": 60, + "bbox": null + }, + { + "text": "6 months", + "label": "time period", + "score": 0.8623046875, + "start": 61, + "end": 69, + "bbox": null + } + ] +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/gliner2-outcome.json b/examples/prior-authorization-review-agent/verified-run/raw/gliner2-outcome.json new file mode 100644 index 00000000..dbf1b3cb --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/gliner2-outcome.json @@ -0,0 +1,65 @@ +{ + "entities": [ + { + "text": "doctor", + "label": "organization", + "score": 0.5498046875, + "start": 4, + "end": 10, + "bbox": null + }, + { + "text": "face-to-face encounter", + "label": "missing documentation", + "score": 0.92626953125, + "start": 31, + "end": 53, + "bbox": null + }, + { + "text": "6 months", + "label": "time period", + "score": 0.99267578125, + "start": 61, + "end": 69, + "bbox": null + }, + { + "text": "review contractor", + "label": "organization", + "score": 0.85546875, + "start": 97, + "end": 114, + "bbox": null + }, + { + "text": "insufficient documentation error", + "label": "claim result", + "score": 0.92919921875, + "start": 141, + "end": 173, + "bbox": null + }, + { + "text": "MAC", + "label": "organization", + "score": 0.97216796875, + "start": 183, + "end": 186, + "bbox": null + }, + { + "text": "recoups payment", + "label": "payment action", + "score": 0.9326171875, + "start": 187, + "end": 202, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-outcome", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/gliner2-requirements.json b/examples/prior-authorization-review-agent/verified-run/raw/gliner2-requirements.json new file mode 100644 index 00000000..add31c9e --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/gliner2-requirements.json @@ -0,0 +1,57 @@ +{ + "entities": [ + { + "text": "prior authorization", + "label": "administrative requirement", + "score": 0.97314453125, + "start": 11, + "end": 30, + "bbox": null + }, + { + "text": "written order", + "label": "administrative requirement", + "score": 0.92724609375, + "start": 62, + "end": 75, + "bbox": null + }, + { + "text": "HCPCS codes L1832", + "label": "procedure code", + "score": 0.82421875, + "start": 98, + "end": 115, + "bbox": null + }, + { + "text": "L1851", + "label": "procedure code", + "score": 0.72802734375, + "start": 120, + "end": 125, + "bbox": null + }, + { + "text": "face-to-face encounter", + "label": "administrative requirement", + "score": 0.9580078125, + "start": 140, + "end": 162, + "bbox": null + }, + { + "text": "6 months", + "label": "time requirement", + "score": 0.86474609375, + "start": 174, + "end": 182, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-requirements", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/gliner2-submission.json b/examples/prior-authorization-review-agent/verified-run/raw/gliner2-submission.json new file mode 100644 index 00000000..3a430bbc --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/gliner2-submission.json @@ -0,0 +1,57 @@ +{ + "entities": [ + { + "text": "L1851", + "label": "procedure code", + "score": 0.978515625, + "start": 31, + "end": 36, + "bbox": null + }, + { + "text": "HCPCS coding", + "label": "standard written order", + "score": 0.6884765625, + "start": 385, + "end": 397, + "bbox": null + }, + { + "text": "practitioner's medical record", + "label": "medical record", + "score": 0.65869140625, + "start": 408, + "end": 437, + "bbox": null + }, + { + "text": "Proof of delivery", + "label": "proof of delivery", + "score": 0.7314453125, + "start": 487, + "end": 504, + "bbox": null + }, + { + "text": "face-to-face encounter", + "label": "proof of delivery", + "score": 0.62646484375, + "start": 510, + "end": 532, + "bbox": null + }, + { + "text": "7 months ago", + "label": "time period", + "score": 0.9765625, + "start": 533, + "end": 545, + "bbox": null + } + ], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-submission", + "model": "fastino/gliner2-large-v1" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/mapped.json b/examples/prior-authorization-review-agent/verified-run/raw/mapped.json new file mode 100644 index 00000000..da419cd6 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/mapped.json @@ -0,0 +1,79 @@ +{ + "method": "Exact ranked CMS fragments validated against GLiNER2 source spans", + "data": { + "authorization_requirement_text": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS codes L1832 and L1851.", + "face_to_face_requirement_text": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS codes L1832 and L1851.", + "written_order_requirement_text": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS codes L1832 and L1851.", + "face_to_face_window_text": "Conduct the face-to-face encounter within the 6 months before prescribing the item.", + "hcpcs_code": "L1851", + "submitted_order": "Standard written order with correct HCPCS coding", + "submitted_medical_record": "Treating practitioner's medical record that has adequate medical necessity information", + "submitted_proof_of_delivery": "Proof of delivery with face-to-face encounter 7 months ago", + "documented_face_to_face_age": "Proof of delivery with face-to-face encounter 7 months ago", + "missing_documentation": "The doctor didn't document the face-to-face encounter within 6 months of proof of delivery.", + "review_conclusion": "The review contractor completes the claim as an insufficient documentation error, and the MAC recoups payment.", + "payment_action": "The review contractor completes the claim as an insufficient documentation error, and the MAC recoups payment." + }, + "source_scopes": { + "authorization_requirement_text": { + "group": "requirements", + "chunk_id": "chunk-2", + "source_sha256": "cadcff3f63a5a778d6202dbb1714b06ef62dde0c6922626758a63bce6a795971" + }, + "face_to_face_requirement_text": { + "group": "requirements", + "chunk_id": "chunk-2", + "source_sha256": "cadcff3f63a5a778d6202dbb1714b06ef62dde0c6922626758a63bce6a795971" + }, + "written_order_requirement_text": { + "group": "requirements", + "chunk_id": "chunk-2", + "source_sha256": "cadcff3f63a5a778d6202dbb1714b06ef62dde0c6922626758a63bce6a795971" + }, + "face_to_face_window_text": { + "group": "requirements", + "chunk_id": "chunk-2", + "source_sha256": "19a4544d06404af9e8a66fb0446b572bc8a96330edf46a179f3a28388671dbfa" + }, + "hcpcs_code": { + "group": "submission", + "chunk_id": "chunk-4", + "source_sha256": "9a893928eede6acd46e1f8029609142962206042b4ceb88d901e159e1518e3bf" + }, + "submitted_order": { + "group": "submission", + "chunk_id": "chunk-5", + "source_sha256": "c1865491ea7917e6f48951997f384e73385781a08a63e07eaafd42c4afda2718" + }, + "submitted_medical_record": { + "group": "submission", + "chunk_id": "chunk-6", + "source_sha256": "25ad16851d4271981f91a66ae07a096b13f8d2ea8982523c55cf2ffb6c61c355" + }, + "submitted_proof_of_delivery": { + "group": "submission", + "chunk_id": "chunk-7", + "source_sha256": "02ea6561a2f2593960d9b67bc0c32a73dde6d1ea65bb32c91a77c33169335ed7" + }, + "documented_face_to_face_age": { + "group": "submission", + "chunk_id": "chunk-7", + "source_sha256": "02ea6561a2f2593960d9b67bc0c32a73dde6d1ea65bb32c91a77c33169335ed7" + }, + "missing_documentation": { + "group": "outcome", + "chunk_id": "chunk-9", + "source_sha256": "fb6503169e482f7076387a6f06abf2e86cb4382d03e2190ab67e5d244a3adce2" + }, + "review_conclusion": { + "group": "outcome", + "chunk_id": "chunk-10", + "source_sha256": "0ddc7dda57a2fcbf6b01a6f411888c1fa23404bc6d8a5c8c0f5b3276f025b89d" + }, + "payment_action": { + "group": "outcome", + "chunk_id": "chunk-10", + "source_sha256": "0ddc7dda57a2fcbf6b01a6f411888c1fa23404bc6d8a5c8c0f5b3276f025b89d" + } + } +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/parse.json b/examples/prior-authorization-review-agent/verified-run/raw/parse.json new file mode 100644 index 00000000..458686f2 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/parse.json @@ -0,0 +1,405 @@ +{ + "entities": [], + "relations": [], + "classifications": [], + "objects": [], + "id": "cms-l1851-published-example", + "data": { + "text": "Lower Limb Orthoses\n\nSource:\n\nhttps://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses\n\nPage Last Modified: 02/11/2026 04:18 PM\n\nBilling & Coding Criteria\n\nWe require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS\n\ncodes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item.\n\nExample of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses\n\nA supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable\n\nflexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without\n\nvarus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review\n\ncontractor's request:\n\n- Standard written order with correct HCPCS coding\n- Treating practitioner's medical record that has adequate medical necessity information\n- Proof of delivery with face-to-face encounter 7 months ago\n\nWhat Documentation Was Missing?\n\nThe doctor didn't document the face-to-face encounter within 6 months of proof of delivery.\n\nWhat Happens Next?\n\nThe review contractor completes the claim as an insufficient documentation error, and the MAC recoups\n\npayment.", + "markdown": "# Lower Limb Orthoses\n\nSource:\n\nhttps://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses\n\nPage Last Modified: 02/11/2026 04:18 PM\n\n## Billing & Coding Criteria\n\nWe require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS\n\ncodes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item.\n\n## Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses\n\nA supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable\n\nflexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without\n\nvarus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review\n\ncontractor's request:\n\n- Standard written order with correct HCPCS coding\n- Treating practitioner's medical record that has adequate medical necessity information\n- Proof of delivery with face-to-face encounter 7 months ago\n\n### What Documentation Was Missing?\n\nThe doctor didn't document the face-to-face encounter within 6 months of proof of delivery.\n\n### What Happens Next?\n\nThe review contractor completes the claim as an insufficient documentation error, and the MAC recoups\n\npayment.", + "document": { + "schema_name": "DoclingDocument", + "version": "1.10.0", + "name": "document", + "origin": { + "mimetype": "text/html", + "binary_hash": 3202530953731100561, + "filename": "document.html" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "content_layer": "furniture", + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + } + ], + "content_layer": "body", + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/texts/9" + }, + "children": [ + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + } + ], + "content_layer": "body", + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "title", + "prov": [], + "orig": "Lower Limb Orthoses | CMS", + "text": "Lower Limb Orthoses | CMS" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "content_layer": "furniture", + "label": "text", + "prov": [], + "orig": "Centers for Medicare & Medicaid Services", + "text": "Centers for Medicare & Medicaid Services" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/9" + } + ], + "content_layer": "body", + "label": "title", + "prov": [], + "orig": "Lower Limb Orthoses", + "text": "Lower Limb Orthoses" + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/texts/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Source:", + "text": "Source:" + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses", + "text": "https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/2" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "Page Last Modified: 02/11/2026 04:18 PM", + "text": "Page Last Modified: 02/11/2026 04:18 PM" + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/2" + }, + "children": [ + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "Billing & Coding Criteria", + "text": "Billing & Coding Criteria", + "level": 1 + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS", + "text": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS" + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item.", + "text": "codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/2" + }, + "children": [ + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/groups/0" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/19" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses", + "text": "Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable", + "text": "A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable" + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "flexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without", + "text": "flexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without" + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "varus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review", + "text": "varus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review" + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "contractor's request:", + "text": "contractor's request:" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [], + "orig": "Standard written order with correct HCPCS coding", + "text": "Standard written order with correct HCPCS coding", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [], + "orig": "Treating practitioner\u2019s medical record that has adequate medical necessity information", + "text": "Treating practitioner's medical record that has adequate medical necessity information", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "content_layer": "body", + "label": "list_item", + "prov": [], + "orig": "Proof of delivery with face-to-face encounter 7 months ago", + "text": "Proof of delivery with face-to-face encounter 7 months ago", + "enumerated": false, + "marker": "" + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/9" + }, + "children": [ + { + "$ref": "#/texts/18" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "What Documentation Was Missing?", + "text": "What Documentation Was Missing?", + "level": 2 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "The doctor didn't document the face-to-face encounter within 6 months of proof of delivery.", + "text": "The doctor didn't document the face-to-face encounter within 6 months of proof of delivery." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/9" + }, + "children": [ + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + } + ], + "content_layer": "body", + "label": "section_header", + "prov": [], + "orig": "What Happens Next?", + "text": "What Happens Next?", + "level": 2 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "The review contractor completes the claim as an insufficient documentation error, and the MAC recoups", + "text": "The review contractor completes the claim as an insufficient documentation error, and the MAC recoups" + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "content_layer": "body", + "label": "text", + "prov": [], + "orig": "payment.", + "text": "payment." + } + ], + "pictures": [], + "tables": [], + "key_value_items": [], + "form_items": [], + "pages": {} + } + }, + "model": "docling" +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/rerank.json b/examples/prior-authorization-review-agent/verified-run/raw/rerank.json new file mode 100644 index 00000000..f9953838 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/rerank.json @@ -0,0 +1,64 @@ +{ + "model": "Qwen/Qwen3-Reranker-4B", + "scores": [ + { + "item_id": "chunk-10", + "score": 0.9765625, + "rank": 0 + }, + { + "item_id": "chunk-3", + "score": 0.8671875, + "rank": 1 + }, + { + "item_id": "chunk-9", + "score": 0.6796875, + "rank": 2 + }, + { + "item_id": "chunk-4", + "score": 0.65234375, + "rank": 3 + }, + { + "item_id": "chunk-2", + "score": 0.59375, + "rank": 4 + }, + { + "item_id": "chunk-8", + "score": 0.173828125, + "rank": 5 + }, + { + "item_id": "chunk-5", + "score": 0.1005859375, + "rank": 6 + }, + { + "item_id": "chunk-7", + "score": 0.0419921875, + "rank": 7 + }, + { + "item_id": "chunk-0", + "score": 0.004364013671875, + "rank": 8 + }, + { + "item_id": "chunk-1", + "score": 0.0023956298828125, + "rank": 9 + }, + { + "item_id": "chunk-6", + "score": 0.0012054443359375, + "rank": 10 + } + ], + "query_id": "cms-l1851-query", + "usage": { + "input_tokens": 1434 + } +} diff --git a/examples/prior-authorization-review-agent/verified-run/raw/retrieve.json b/examples/prior-authorization-review-agent/verified-run/raw/retrieve.json new file mode 100644 index 00000000..9dcf051e --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/raw/retrieve.json @@ -0,0 +1,12505 @@ +{ + "query": { + "id": "cms-l1851-query", + "dense": [ + -0.0302734375, + 0.0067138671875, + -0.0140380859375, + -0.0169677734375, + 0.0140380859375, + -0.0361328125, + -0.016357421875, + -0.009033203125, + -0.041748046875, + 0.0286865234375, + 0.042236328125, + -0.01287841796875, + 0.01446533203125, + 0.014404296875, + -0.045166015625, + 0.0140380859375, + 0.0294189453125, + 0.0172119140625, + -0.0030517578125, + -0.00151824951171875, + 0.03466796875, + -0.0025787353515625, + 0.058349609375, + 0.01318359375, + 0.001617431640625, + 0.0225830078125, + -0.055908203125, + -0.0220947265625, + -0.0028533935546875, + -0.053466796875, + -0.033935546875, + 0.02001953125, + 0.025146484375, + 0.00323486328125, + 0.00106048583984375, + -0.050537109375, + -0.0087890625, + 0.00640869140625, + -0.04833984375, + -0.001007080078125, + 0.0172119140625, + -0.0034332275390625, + 0.0167236328125, + -0.01092529296875, + 0.033447265625, + -0.01287841796875, + 0.006683349609375, + -0.0322265625, + 0.0155029296875, + -0.012939453125, + -0.00787353515625, + 0.0086669921875, + 0.0125732421875, + -0.0089111328125, + 0.06494140625, + -0.0079345703125, + -0.0185546875, + -0.03173828125, + -0.04296875, + -0.002227783203125, + -0.04541015625, + -0.012451171875, + -0.0206298828125, + -0.0164794921875, + 0.015869140625, + 0.049072265625, + 0.0137939453125, + -0.0274658203125, + 0.01556396484375, + -0.0341796875, + 0.01068115234375, + -0.0185546875, + 0.0322265625, + -0.033935546875, + -0.06201171875, + -0.005645751953125, + 0.039794921875, + 0.00048828125, + 0.050537109375, + 0.022216796875, + -0.00823974609375, + -0.04248046875, + 0.00946044921875, + 0.0198974609375, + -0.01519775390625, + -0.0225830078125, + -0.0283203125, + 0.025390625, + 0.024658203125, + -0.01177978515625, + 0.01458740234375, + -0.005828857421875, + 0.00872802734375, + -0.019287109375, + 0.0166015625, + -0.05126953125, + -0.01519775390625, + 0.015869140625, + 0.031982421875, + 0.016357421875, + 0.0233154296875, + 0.00482177734375, + 0.06591796875, + -0.0225830078125, + -0.0001659393310546875, + 0.009765625, + 0.02685546875, + 0.032470703125, + -0.00286865234375, + 0.007080078125, + -0.003265380859375, + 0.0272216796875, + 0.031005859375, + -0.035400390625, + -0.004730224609375, + -0.0242919921875, + 0.001983642578125, + -0.05126953125, + -0.003082275390625, + -0.016845703125, + 0.037841796875, + 0.0098876953125, + 0.002777099609375, + -0.035888671875, + -0.03857421875, + -0.06982421875, + 0.0341796875, + 0.0137939453125, + -0.0213623046875, + 0.052734375, + -0.0184326171875, + 0.03466796875, + -0.0029296875, + -0.0013427734375, + -0.064453125, + 0.0303955078125, + 0.0034637451171875, + 0.00086212158203125, + 0.044677734375, + -0.0152587890625, + 0.049072265625, + -0.0126953125, + -0.04833984375, + -0.0234375, + -0.007415771484375, + -0.002960205078125, + -0.00112152099609375, + -0.0211181640625, + -0.004638671875, + 0.0106201171875, + -0.00360107421875, + -0.027587890625, + 0.032470703125, + -0.060546875, + 0.05078125, + -0.05029296875, + 0.003204345703125, + -0.0245361328125, + 0.030029296875, + 0.001708984375, + 0.005401611328125, + 0.08642578125, + 0.00335693359375, + 0.0101318359375, + 0.045166015625, + -0.0016632080078125, + -0.01141357421875, + 0.0322265625, + -0.0267333984375, + -0.0113525390625, + 0.0113525390625, + -0.03173828125, + 0.004638671875, + -0.033447265625, + -0.011474609375, + 0.01300048828125, + 0.052734375, + 0.016357421875, + -0.033447265625, + -0.017333984375, + -0.06787109375, + -0.0084228515625, + -0.01031494140625, + -0.0211181640625, + 0.0147705078125, + -0.031005859375, + -0.0042724609375, + -0.052001953125, + 0.00897216796875, + 0.045166015625, + 0.016357421875, + -0.0245361328125, + -0.02880859375, + 0.019287109375, + 0.00138092041015625, + 0.026611328125, + 0.0299072265625, + 0.026611328125, + 0.012451171875, + -0.032470703125, + -0.022216796875, + 0.0157470703125, + 0.026123046875, + 0.041748046875, + -0.007354736328125, + -0.005706787109375, + -0.01385498046875, + 0.0093994140625, + -0.00124359130859375, + -0.0093994140625, + 0.00060272216796875, + 0.0267333984375, + 0.02392578125, + 0.062255859375, + 0.00049591064453125, + -0.006866455078125, + 0.00872802734375, + 0.006622314453125, + -0.01068115234375, + -0.005157470703125, + 0.0020599365234375, + -0.01226806640625, + -0.039306640625, + -0.025390625, + 0.0732421875, + 0.0264892578125, + 0.0037078857421875, + 0.048583984375, + 0.021484375, + -0.05322265625, + -0.00640869140625, + 0.01324462890625, + -0.0203857421875, + 0.00872802734375, + 0.04736328125, + 0.03564453125, + 0.046142578125, + 0.0439453125, + 0.004974365234375, + 0.0322265625, + -0.01513671875, + -0.00701904296875, + -0.0225830078125, + 0.0091552734375, + -0.019775390625, + -0.043212890625, + 0.0203857421875, + 0.0179443359375, + -0.035400390625, + -0.01263427734375, + -0.0011138916015625, + 0.0006256103515625, + -0.030517578125, + -0.01458740234375, + 0.011962890625, + 0.0128173828125, + -0.00628662109375, + 0.00848388671875, + 0.05810546875, + 0.02978515625, + 0.041259765625, + 0.0181884765625, + 0.0177001953125, + 0.0242919921875, + 0.02685546875, + 0.005828857421875, + -0.01416015625, + -0.0341796875, + 0.0211181640625, + -0.00640869140625, + -0.004150390625, + -0.060791015625, + -0.0478515625, + 0.023681640625, + 0.061279296875, + 0.0303955078125, + 0.0281982421875, + -0.0218505859375, + 0.0517578125, + -0.0032501220703125, + 0.01104736328125, + 0.034423828125, + 0.004150390625, + -0.02978515625, + 0.006927490234375, + -0.01031494140625, + -0.0361328125, + -0.09423828125, + 0.02734375, + -0.0206298828125, + 0.012451171875, + 0.002349853515625, + 0.10009765625, + 0.00921630859375, + -0.041015625, + -0.05029296875, + -0.046875, + -0.12890625, + -0.0164794921875, + -0.045166015625, + -0.036376953125, + -0.006683349609375, + 0.015869140625, + -0.013671875, + -0.01348876953125, + -0.04052734375, + 0.007781982421875, + 0.01409912109375, + -0.052001953125, + 0.007049560546875, + -0.01385498046875, + -0.0118408203125, + -0.031982421875, + -0.031005859375, + -0.00616455078125, + 0.0067138671875, + -0.04736328125, + -0.01904296875, + -0.0303955078125, + -0.0306396484375, + 0.0064697265625, + -0.011962890625, + 0.005950927734375, + 0.0235595703125, + 0.054931640625, + -0.059814453125, + 0.01495361328125, + -0.00482177734375, + 0.0164794921875, + -0.00897216796875, + 0.01171875, + -0.028076171875, + 0.00079345703125, + 0.08935546875, + -0.016357421875, + 0.03564453125, + 0.00160980224609375, + 0.019287109375, + 0.026123046875, + 0.0196533203125, + -0.0079345703125, + 0.03466796875, + -0.045166015625, + 0.04833984375, + -0.01165771484375, + -0.012451171875, + 0.0279541015625, + 0.00012302398681640625, + 0.00885009765625, + -0.01116943359375, + -0.0286865234375, + -0.036865234375, + -0.0101318359375, + 0.006134033203125, + 0.0111083984375, + -0.07373046875, + 0.0517578125, + -0.02392578125, + -0.0732421875, + -0.000911712646484375, + -0.0284423828125, + -0.039306640625, + -0.0206298828125, + -0.048583984375, + -0.002197265625, + -0.0027008056640625, + -0.0517578125, + -0.01055908203125, + 0.005828857421875, + 0.03955078125, + -0.0225830078125, + 0.00311279296875, + 0.035400390625, + -0.0203857421875, + -0.01953125, + -0.0517578125, + -0.0947265625, + -0.048583984375, + -0.004913330078125, + -0.022705078125, + -0.01116943359375, + -0.02392578125, + -0.036865234375, + 0.01513671875, + 0.0625, + 0.006591796875, + 0.189453125, + -0.0196533203125, + -0.01519775390625, + -0.00421142578125, + 0.039794921875, + -0.03369140625, + -0.0166015625, + 0.01251220703125, + -0.004150390625, + -0.051513671875, + -0.00109100341796875, + -0.0284423828125, + 0.0277099609375, + -0.0137939453125, + -0.020263671875, + -0.03955078125, + -0.041259765625, + -0.01806640625, + 0.0986328125, + -0.025146484375, + 0.0103759765625, + -0.0380859375, + 0.00787353515625, + 0.023681640625, + -0.05908203125, + -0.03125, + -0.01190185546875, + 0.053466796875, + -0.03125, + 0.057861328125, + -0.01190185546875, + 0.0152587890625, + 0.04248046875, + 0.009033203125, + -0.041015625, + -0.003875732421875, + -0.0128173828125, + 0.03076171875, + -0.0164794921875, + 0.03466796875, + 0.033935546875, + -0.01055908203125, + 0.0098876953125, + -0.015625, + -0.0140380859375, + -0.02001953125, + 0.00830078125, + 0.031982421875, + -0.004547119140625, + 0.006134033203125, + 0.005767822265625, + -0.036376953125, + 0.00019550323486328125, + 0.01324462890625, + -0.00994873046875, + -0.00787353515625, + -0.025390625, + 0.01031494140625, + -0.03759765625, + 0.0166015625, + 0.0164794921875, + 0.0245361328125, + -0.01165771484375, + 0.02392578125, + -0.01446533203125, + 0.0260009765625, + -0.019775390625, + -0.0439453125, + 0.01031494140625, + -0.01171875, + -0.017822265625, + 0.0023193359375, + 0.01019287109375, + -0.00897216796875, + 0.031494140625, + -0.0306396484375, + -0.0027618408203125, + 0.034912109375, + -0.0205078125, + 0.056640625, + -0.0120849609375, + 0.018310546875, + -0.01953125, + 0.012451171875, + 0.021240234375, + 0.0341796875, + -0.021240234375, + 0.07568359375, + -0.00909423828125, + -0.02001953125, + -0.057861328125, + 0.00102996826171875, + -0.0089111328125, + 0.01171875, + -0.0050048828125, + 0.046630859375, + 0.01031494140625, + -0.0213623046875, + -0.0034027099609375, + -0.031005859375, + -0.048828125, + 0.00213623046875, + 0.0093994140625, + -0.03564453125, + 0.033935546875, + -0.0137939453125, + 0.046630859375, + -0.0225830078125, + -0.04443359375, + 0.01214599609375, + -0.017578125, + 0.029052734375, + -0.030517578125, + -0.04248046875, + 0.050048828125, + 0.06201171875, + 0.00726318359375, + 0.016357421875, + 0.041259765625, + -0.00738525390625, + 0.000949859619140625, + -0.006683349609375, + 0.0093994140625, + -0.01031494140625, + -0.0211181640625, + 0.029052734375, + 0.006866455078125, + -0.09716796875, + 0.0024566650390625, + -0.0281982421875, + -0.0302734375, + -0.006866455078125, + -0.009765625, + 0.0181884765625, + 0.0133056640625, + 0.00604248046875, + -0.06494140625, + -0.0291748046875, + -0.0283203125, + 0.0012054443359375, + -0.064453125, + 0.01495361328125, + -0.02294921875, + 0.018798828125, + 0.00885009765625, + -0.024169921875, + -0.03076171875, + -0.001556396484375, + -0.0096435546875, + 0.01556396484375, + -0.00286865234375, + 0.00738525390625, + 0.01446533203125, + -0.0439453125, + 0.0091552734375, + -0.0079345703125, + 0.0213623046875, + -0.0017242431640625, + 0.03857421875, + -0.02587890625, + 0.02490234375, + 0.0216064453125, + 0.029541015625, + 0.05322265625, + 0.0264892578125, + -0.0015106201171875, + 0.0322265625, + 0.041748046875, + 0.043212890625, + -0.0244140625, + 0.0260009765625, + 0.002655029296875, + 0.00823974609375, + 0.07861328125, + 0.0189208984375, + 0.0264892578125, + -0.0439453125, + 0.01092529296875, + 0.01092529296875, + 0.011474609375, + 0.0157470703125, + 0.0164794921875, + -0.0634765625, + -0.0015411376953125, + -0.0089111328125, + -0.031982421875, + -0.0693359375, + -0.047607421875, + 0.0341796875, + -0.00396728515625, + -0.01165771484375, + 0.080078125, + 0.00872802734375, + -0.00110626220703125, + 0.047119140625, + -0.0147705078125, + 0.01190185546875, + 0.044189453125, + -0.0128173828125, + 0.0203857421875, + -0.005889892578125, + -0.025146484375, + -0.00555419921875, + -0.039794921875, + 0.05029296875, + 0.01470947265625, + 0.0230712890625, + 0.00946044921875, + -0.0218505859375, + -0.0181884765625, + 0.0040283203125, + 0.01287841796875, + -0.01422119140625, + -0.026123046875, + 0.0272216796875, + 0.01153564453125, + 0.06640625, + 0.02294921875, + 0.06298828125, + -0.0089111328125, + -0.0361328125, + 0.0169677734375, + 0.002227783203125, + -0.01904296875, + -0.0084228515625, + 0.0185546875, + 0.0181884765625, + -0.01446533203125, + 0.06201171875, + -0.00885009765625, + 0.0027008056640625, + -0.0260009765625, + 0.032470703125, + -0.0703125, + -0.006256103515625, + -0.0291748046875, + 0.0810546875, + 0.0150146484375, + -0.01373291015625, + -0.00787353515625, + 0.059814453125, + -0.03466796875, + -0.00762939453125, + 0.0026397705078125, + -0.0211181640625, + -0.026611328125, + 0.0458984375, + 0.032470703125, + 0.062255859375, + 0.045654296875, + 0.0211181640625, + -0.0260009765625, + 0.00921630859375, + -0.03564453125, + 0.03564453125, + 0.000518798828125, + -0.12158203125, + -0.00885009765625, + -0.0296630859375, + -0.0225830078125, + -0.00811767578125, + -0.00244140625, + -0.004302978515625, + 0.00482177734375, + -0.0098876953125, + -0.049072265625, + -0.002960205078125, + -0.037841796875, + -0.0235595703125, + 0.01446533203125, + 0.047607421875, + -0.0220947265625, + 0.0036773681640625, + -0.0213623046875, + -0.02197265625, + 0.013427734375, + -0.01470947265625, + -0.002044677734375, + 0.013671875, + 0.01513671875, + 0.019287109375, + 0.01531982421875, + 0.0026397705078125, + 0.048828125, + -0.00168609619140625, + 0.0244140625, + 0.06591796875, + 0.00186920166015625, + 0.00830078125, + -0.01373291015625, + 0.0213623046875, + -0.0107421875, + 0.00106048583984375, + 0.020263671875, + -0.04443359375, + 0.006256103515625, + -0.041015625, + 0.01385498046875, + -0.0133056640625, + 0.0096435546875, + 0.01055908203125, + -0.003082275390625, + -0.0380859375, + -0.054931640625, + 0.02392578125, + -0.0306396484375, + 0.0096435546875, + -0.00799560546875, + -0.01483154296875, + 0.047607421875, + -0.016357421875, + -0.04248046875, + 0.00113677978515625, + 0.014892578125, + -0.050048828125, + 0.0093994140625, + 0.00103759765625, + 0.0283203125, + -0.003692626953125, + -0.0033416748046875, + -0.0306396484375, + 0.00738525390625, + -0.004791259765625, + -0.006927490234375, + -0.01226806640625, + -0.0022735595703125, + 0.07958984375, + 0.000579833984375, + 0.006683349609375, + 0.0068359375, + -0.064453125, + -0.0111083984375, + -0.0211181640625, + -0.0311279296875, + 0.0537109375, + -0.0164794921875, + 0.0257568359375, + -0.01348876953125, + 0.05908203125, + 0.017333984375, + -0.0205078125, + -0.0546875, + -0.011962890625, + 0.004364013671875, + -0.002655029296875, + -0.078125, + -0.00860595703125, + -0.00885009765625, + -0.0084228515625, + 0.01092529296875, + -0.0244140625, + -0.005950927734375, + -0.024169921875, + -0.03759765625, + -0.0205078125, + 0.0084228515625, + -0.00640869140625, + 0.06298828125, + -0.0169677734375, + -0.002044677734375, + -0.03173828125, + 0.043212890625, + -0.0257568359375, + 0.001251220703125, + 0.01904296875, + 0.0233154296875, + -0.0164794921875, + 0.002044677734375, + -0.005157470703125, + -0.0264892578125, + -0.0157470703125, + -0.0145263671875, + -0.032470703125, + 0.016845703125, + -0.0252685546875, + 0.004425048828125, + -0.000186920166015625, + -0.01287841796875, + 0.00482177734375, + 0.036865234375, + -0.033447265625, + -0.01483154296875, + -0.00194549560546875, + -0.00421142578125, + 0.035400390625, + 0.037109375, + -0.0299072265625, + -0.0111083984375, + 0.01385498046875, + 0.048583984375, + -0.02197265625, + 0.052978515625, + -0.0302734375, + -0.041259765625, + -0.13671875, + 0.01165771484375, + 0.0164794921875, + -0.0296630859375, + -0.0279541015625, + -0.034912109375, + -0.024169921875, + 0.022216796875, + -0.0184326171875, + -0.0093994140625, + -0.00061798095703125, + 0.046142578125, + 0.0361328125, + -0.021484375, + -0.0311279296875, + 0.0220947265625, + 0.0106201171875, + 0.0084228515625, + -0.01953125, + -0.015380859375, + -0.0169677734375, + 0.008056640625, + 0.0050048828125, + 0.027587890625, + -0.0166015625, + 0.013427734375, + -0.004547119140625, + -0.06298828125, + -0.0203857421875, + 0.031005859375, + -0.016357421875, + 0.0245361328125, + 0.05078125, + 0.05908203125, + 0.00848388671875, + -0.0172119140625, + 0.033447265625, + -0.013427734375, + -0.047607421875, + -0.03857421875, + -0.0169677734375, + 0.0361328125, + -0.00048828125, + -0.00457763671875, + 0.0380859375, + -0.01361083984375, + -0.004791259765625, + -0.0023040771484375, + -0.068359375, + -0.01177978515625, + -0.06884765625, + -0.00128936767578125, + -0.04736328125, + -0.02978515625, + 0.01953125, + -0.007415771484375, + -0.00799560546875, + -0.009765625, + -0.043701171875, + 0.07421875, + 0.007171630859375, + 0.0220947265625, + -0.0235595703125, + -0.06982421875, + -0.06787109375, + -0.00909423828125, + 0.0034332275390625, + 0.0027618408203125, + 0.00390625, + 0.00848388671875, + 0.0030364990234375, + -0.007354736328125, + 0.019287109375, + -0.0810546875, + -0.02880859375, + 0.003265380859375, + 0.0263671875, + 0.03759765625, + 0.0036468505859375, + -0.0028533935546875, + -0.017822265625, + 0.0128173828125, + -0.01483154296875, + -0.0113525390625, + 0.0537109375, + -0.0040283203125, + 0.01373291015625, + -0.0184326171875, + -0.0361328125, + -0.00689697265625, + -0.038330078125, + -0.006866455078125, + -0.015380859375, + 0.0185546875, + 0.007171630859375, + 0.03466796875, + -0.03271484375, + 0.04296875, + -0.01141357421875, + -0.0174560546875, + -0.052734375, + -0.01116943359375, + 0.020263671875, + 0.0284423828125, + -0.0123291015625, + 0.046875, + 0.00787353515625, + 0.0096435546875, + 0.0021514892578125, + -0.0291748046875, + 0.018310546875, + 0.005584716796875, + 0.004425048828125, + 0.01422119140625, + -0.12109375, + 0.0034027099609375, + 0.0038909912109375, + 0.041259765625, + -0.0306396484375, + 0.0439453125, + 0.047607421875, + 0.0299072265625, + 0.00787353515625, + -0.044677734375, + 0.032958984375, + -0.0037078857421875, + 0.06884765625, + 0.0128173828125, + -0.01434326171875, + 0.005767822265625, + 0.06640625, + 0.06005859375, + -0.015625, + -0.0125732421875, + -0.0084228515625, + 0.025146484375, + -0.0216064453125, + 0.044189453125, + -0.0654296875, + -0.044189453125, + -0.0032958984375, + -0.00238037109375, + 0.01104736328125, + -0.0103759765625, + -0.014404296875, + 0.0038299560546875, + -0.0001373291015625, + -0.01116943359375, + 0.0159912109375, + -0.0230712890625, + -0.017822265625, + 0.01470947265625, + 0.031494140625, + 0.046142578125, + 0.038330078125, + 0.030029296875, + 0.022216796875, + 0.0693359375, + -0.031982421875, + 0.02880859375, + -0.0157470703125, + -0.046630859375, + 0.0004673004150390625, + -0.057861328125, + -0.026123046875, + 0.031494140625, + -0.0032196044921875, + 0.006103515625, + 0.031005859375, + 0.016357421875, + -0.00958251953125, + 0.0162353515625, + -0.01531982421875, + 0.03515625, + 0.0003108978271484375, + -0.02294921875, + 0.01373291015625, + -0.05908203125, + 0.02734375, + -0.0050048828125, + 0.0283203125, + 0.0306396484375, + -0.0191650390625, + 0.01068115234375, + -0.01519775390625, + 0.0228271484375, + 0.0260009765625, + 0.030029296875, + -0.0283203125, + 0.00201416015625, + -0.00098419189453125, + -0.002349853515625, + -0.01116943359375, + 0.058837890625, + -0.006439208984375, + 0.05810546875, + 0.036865234375, + 0.00958251953125, + 0.00011968612670898438, + 0.07666015625, + 0.034423828125, + -0.0361328125, + -0.0181884765625, + 0.06396484375, + -0.033203125, + -0.0157470703125, + -0.0002956390380859375, + -0.0615234375, + -0.06640625, + 0.00830078125, + -0.01904296875, + -0.0098876953125, + 0.01165771484375, + -0.012451171875, + -0.0093994140625, + -0.0003910064697265625, + 0.022216796875, + 0.0218505859375, + 0.0284423828125, + -0.0137939453125, + -0.002838134765625, + 0.010009765625, + 0.0252685546875, + 0.0191650390625, + 0.0003948211669921875, + -0.04931640625, + -0.0225830078125, + 0.009521484375, + -0.029541015625, + 0.036376953125, + 0.0185546875, + -0.0027618408203125, + -0.03076171875, + -0.000598907470703125, + 0.033447265625, + -0.0185546875, + -0.00113677978515625, + 0.0033721923828125, + -0.009521484375, + 0.0245361328125, + 0.07861328125, + -0.01806640625, + -0.03173828125, + -0.0157470703125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 829.1572609999989, + "queue_ms": 0.16427299999577372, + "tokenization_ms": 0.025731000000916993, + "inference_ms": 828.5055480000026, + "postprocessing_ms": null + } + }, + "chunks": [ + { + "id": "chunk-0", + "dense": [ + -0.004180908203125, + -0.0034332275390625, + -0.026123046875, + 0.01611328125, + -0.0301513671875, + -0.0274658203125, + -0.00799560546875, + 0.0194091796875, + -0.006591796875, + 0.040283203125, + 0.0042724609375, + 0.006561279296875, + 0.025390625, + 0.01043701171875, + 0.015625, + -0.0169677734375, + 0.0031890869140625, + -0.03857421875, + 0.0206298828125, + -0.0208740234375, + -0.0267333984375, + -0.007781982421875, + 0.0152587890625, + 0.01251220703125, + 0.0125732421875, + 0.00750732421875, + 0.0103759765625, + -0.0013580322265625, + 0.005950927734375, + 0.0283203125, + 0.01068115234375, + 0.02392578125, + 0.05859375, + -0.040283203125, + 0.010009765625, + -0.06396484375, + 0.006072998046875, + -0.03662109375, + -0.06591796875, + 0.036376953125, + -0.0026397705078125, + -0.005523681640625, + -0.00160980224609375, + -0.0205078125, + -0.0081787109375, + -0.005218505859375, + -0.00020313262939453125, + -0.0164794921875, + 0.0277099609375, + -0.06201171875, + 0.01904296875, + -0.028076171875, + 0.01397705078125, + -0.035400390625, + 0.0203857421875, + 0.049072265625, + -0.011962890625, + -0.06005859375, + -0.056396484375, + -0.0015106201171875, + -0.005462646484375, + 0.0015716552734375, + -0.0174560546875, + -0.0294189453125, + 0.05517578125, + 0.07763671875, + 0.049072265625, + -0.0142822265625, + -0.01116943359375, + -0.0281982421875, + -0.00188446044921875, + 0.08154296875, + 0.0186767578125, + -0.04638671875, + -0.037353515625, + 0.0301513671875, + -0.0003147125244140625, + 0.00250244140625, + 0.007781982421875, + 0.0220947265625, + -0.0011444091796875, + 0.036865234375, + 0.00439453125, + 0.00136566162109375, + -0.0311279296875, + 0.05419921875, + 0.03076171875, + -0.0194091796875, + 0.0081787109375, + -0.0390625, + -0.0167236328125, + -0.03759765625, + -0.020751953125, + -0.0218505859375, + 0.005157470703125, + -0.0341796875, + 0.03369140625, + -0.011474609375, + 0.076171875, + 0.021240234375, + 0.042724609375, + -0.02294921875, + 0.041748046875, + -0.01708984375, + 0.00811767578125, + -0.04541015625, + -0.024169921875, + -0.0203857421875, + 0.0250244140625, + -0.002899169921875, + -0.0283203125, + 0.0185546875, + 0.04150390625, + -0.0213623046875, + 0.0040283203125, + -0.01251220703125, + 0.0023193359375, + -0.0576171875, + -0.014892578125, + -0.072265625, + 0.0130615234375, + -0.007598876953125, + 0.08203125, + -0.0267333984375, + 0.02197265625, + 0.004150390625, + 0.0189208984375, + -0.02880859375, + 0.026123046875, + 0.0035247802734375, + -0.00543212890625, + -0.0181884765625, + -0.013427734375, + 0.0098876953125, + 0.00482177734375, + -0.053955078125, + 0.0169677734375, + -0.032470703125, + 0.002410888671875, + -0.0247802734375, + 0.0206298828125, + -0.01318359375, + -0.0220947265625, + 0.01239013671875, + 0.041748046875, + -0.01409912109375, + 0.01531982421875, + 0.040283203125, + 0.0036468505859375, + -0.02392578125, + -0.025146484375, + 0.005950927734375, + 0.0167236328125, + -0.04248046875, + 0.0057373046875, + -0.0218505859375, + -0.03076171875, + -0.00147247314453125, + -0.01007080078125, + -0.00787353515625, + -0.052490234375, + 0.04248046875, + -0.0218505859375, + -0.0218505859375, + 0.047607421875, + -0.0086669921875, + 0.0169677734375, + 0.0206298828125, + -0.01019287109375, + -0.0169677734375, + 0.024169921875, + -0.0184326171875, + -0.0269775390625, + -0.0164794921875, + -0.0162353515625, + 0.022705078125, + 0.058837890625, + 0.0267333984375, + -0.017333984375, + -0.0198974609375, + -0.007537841796875, + -0.045166015625, + -0.0022125244140625, + -0.0255126953125, + 0.01409912109375, + -0.0081787109375, + -0.050048828125, + -0.0021820068359375, + 0.0181884765625, + -0.01226806640625, + 0.0152587890625, + 0.03466796875, + -0.01470947265625, + -0.02392578125, + -0.0036468505859375, + 0.000873565673828125, + 0.0014801025390625, + 0.0024261474609375, + -0.0283203125, + 0.00482177734375, + -0.0260009765625, + 0.00946044921875, + 0.016357421875, + -0.0019683837890625, + -0.047607421875, + -0.00299072265625, + 0.00909423828125, + 0.034423828125, + 0.00958251953125, + -0.01300048828125, + -0.0301513671875, + 0.044921875, + -0.037353515625, + 0.007049560546875, + -0.006134033203125, + -0.00836181640625, + -0.002197265625, + -0.0103759765625, + 0.0057373046875, + -0.00738525390625, + -0.0498046875, + 0.03662109375, + -0.006103515625, + -0.0213623046875, + 0.0341796875, + -0.0146484375, + 0.048828125, + 0.007598876953125, + 0.04345703125, + -0.00738525390625, + -0.0010986328125, + 0.00164031982421875, + 0.0224609375, + 2.3365020751953125e-05, + 0.05126953125, + 0.0137939453125, + -0.042236328125, + 0.03271484375, + 0.02294921875, + 0.035888671875, + -0.0169677734375, + -0.054931640625, + 0.0322265625, + 0.0211181640625, + -0.0206298828125, + 0.0255126953125, + 0.02490234375, + 0.030517578125, + -0.02392578125, + 0.02490234375, + 0.02978515625, + 0.0194091796875, + -0.0152587890625, + 0.04541015625, + 0.005218505859375, + -0.017578125, + -0.01068115234375, + -0.034912109375, + -0.01190185546875, + -0.0615234375, + -0.01104736328125, + 0.025146484375, + -0.0269775390625, + 0.0230712890625, + 0.007049560546875, + 0.0191650390625, + 0.01220703125, + -0.044921875, + 0.032958984375, + 0.0277099609375, + 0.0021209716796875, + -0.0255126953125, + 0.0164794921875, + 0.0244140625, + -0.004425048828125, + 0.03515625, + -0.021484375, + -0.029296875, + 0.03369140625, + 0.0303955078125, + 0.0235595703125, + 0.034912109375, + 0.037841796875, + -0.000934600830078125, + 0.051025390625, + -0.009765625, + -0.053955078125, + -0.0159912109375, + -0.0439453125, + -0.05419921875, + 0.02490234375, + 0.03466796875, + 0.08837890625, + -0.023193359375, + 0.017333984375, + -0.0019378662109375, + 0.0233154296875, + -0.1650390625, + -0.019775390625, + -0.036376953125, + -0.0439453125, + 0.0140380859375, + -0.007659912109375, + -0.0267333984375, + -0.02197265625, + -0.0286865234375, + -0.015869140625, + 0.033447265625, + -0.056396484375, + -0.0126953125, + 0.05517578125, + -0.003936767578125, + -0.0084228515625, + 0.006378173828125, + -0.0264892578125, + -0.0198974609375, + -0.043701171875, + -0.037841796875, + -0.01165771484375, + 0.0498046875, + 0.0036468505859375, + -0.01177978515625, + -0.029296875, + 0.0615234375, + 0.017822265625, + -0.04296875, + 0.0179443359375, + -0.01495361328125, + 0.014404296875, + 0.01287841796875, + -0.025390625, + 0.036376953125, + -0.0322265625, + -0.0126953125, + -0.0341796875, + -0.00823974609375, + -0.015625, + 0.056396484375, + 0.037841796875, + -0.00567626953125, + -0.00933837890625, + 0.03955078125, + -0.04638671875, + 0.01068115234375, + -0.007171630859375, + -0.0306396484375, + 0.006866455078125, + -0.0177001953125, + -0.00946044921875, + -0.0247802734375, + 0.002288818359375, + -0.042724609375, + -0.0191650390625, + -0.0025177001953125, + 0.046630859375, + -0.00286865234375, + 0.005523681640625, + -0.0152587890625, + -0.02294921875, + 0.021484375, + -0.02197265625, + -0.053955078125, + -0.0205078125, + 0.01470947265625, + -0.0771484375, + -0.000858306884765625, + -0.0625, + 0.01123046875, + 0.013671875, + 0.0654296875, + -0.02490234375, + -0.0140380859375, + 0.0439453125, + -0.0035247802734375, + -0.032958984375, + 0.0201416015625, + -0.109375, + -0.042236328125, + 0.0341796875, + -0.055908203125, + 0.01519775390625, + -0.028564453125, + -0.0128173828125, + 0.03955078125, + 0.0380859375, + 0.08349609375, + 0.2236328125, + 0.01953125, + -0.021484375, + -0.04345703125, + 0.0277099609375, + -0.056640625, + 0.00897216796875, + -7.390975952148438e-05, + 0.00823974609375, + -0.035400390625, + -0.003570556640625, + 6.818771362304688e-05, + 0.01953125, + -0.021484375, + 0.018310546875, + -0.0322265625, + -0.07666015625, + 0.00074005126953125, + 0.07568359375, + 0.01055908203125, + 0.03466796875, + 0.02001953125, + 0.052001953125, + -0.021728515625, + -0.0439453125, + -0.0189208984375, + 0.01251220703125, + 0.00112152099609375, + -0.0201416015625, + 0.0260009765625, + -0.010009765625, + 0.0042724609375, + 0.018798828125, + -0.0169677734375, + -0.007049560546875, + -0.0260009765625, + 0.0096435546875, + -0.011962890625, + 0.0194091796875, + 0.068359375, + 0.0283203125, + -0.005645751953125, + 0.0185546875, + 0.033935546875, + 0.0277099609375, + -0.01708984375, + 0.03271484375, + 0.0185546875, + -0.000934600830078125, + 0.031494140625, + -0.005615234375, + -0.025146484375, + -0.0072021484375, + -0.021240234375, + 0.00167083740234375, + -0.022705078125, + -0.004852294921875, + -0.046142578125, + -0.03662109375, + 0.058349609375, + 0.000274658203125, + 0.013427734375, + -0.049560546875, + 0.002166748046875, + -0.025390625, + 0.03662109375, + -0.020751953125, + -0.01226806640625, + 0.00927734375, + 0.03466796875, + 0.01025390625, + -0.01348876953125, + 0.041259765625, + 0.006683349609375, + 0.05615234375, + -0.0390625, + 0.005828857421875, + 0.076171875, + -0.0084228515625, + 0.023193359375, + -0.00848388671875, + -0.0120849609375, + -0.0194091796875, + -0.00750732421875, + 0.001220703125, + -0.052734375, + -0.03662109375, + 0.05712890625, + -0.0172119140625, + -0.00970458984375, + -0.027099609375, + -0.00872802734375, + -0.0260009765625, + 0.044189453125, + -0.0257568359375, + 0.0050048828125, + 0.01953125, + -0.00787353515625, + -0.05419921875, + -0.00885009765625, + -0.06982421875, + 0.0003986358642578125, + -0.017333984375, + -0.04736328125, + 0.039794921875, + -0.0004138946533203125, + -0.00677490234375, + -0.0045166015625, + -0.021484375, + 0.0286865234375, + -0.017578125, + 0.04736328125, + 0.00946044921875, + -0.036865234375, + -0.01409912109375, + -0.004180908203125, + 0.01611328125, + 0.06689453125, + 0.0198974609375, + 0.016357421875, + -0.052734375, + 0.0595703125, + -0.032958984375, + 0.07275390625, + -0.0205078125, + 0.0250244140625, + -0.01336669921875, + -0.016357421875, + -0.021484375, + 0.0030517578125, + -0.037353515625, + -0.0211181640625, + -0.041748046875, + -0.00160980224609375, + 0.004669189453125, + 0.028564453125, + -0.0869140625, + -0.015380859375, + 0.00445556640625, + 0.0152587890625, + -0.03466796875, + 0.00689697265625, + -0.017578125, + 0.003814697265625, + -0.016845703125, + 0.0024871826171875, + 0.005035400390625, + -0.0380859375, + -0.00634765625, + 0.015380859375, + 0.0311279296875, + 0.039794921875, + 0.01519775390625, + -0.06884765625, + -0.0079345703125, + -0.03857421875, + -0.003021240234375, + 0.0267333984375, + 0.02685546875, + -0.028564453125, + 0.017333984375, + -0.007049560546875, + -0.01397705078125, + 0.06298828125, + 0.01123046875, + 0.01116943359375, + 0.00958251953125, + 0.04248046875, + 0.0032958984375, + -0.0291748046875, + 0.01324462890625, + 0.01531982421875, + -0.03173828125, + 0.08203125, + -0.0167236328125, + -0.030029296875, + -0.042236328125, + 0.017333984375, + -0.005035400390625, + 0.007080078125, + 0.032958984375, + -0.0137939453125, + -0.00885009765625, + 0.0267333984375, + -0.0096435546875, + -0.027099609375, + -0.047119140625, + -0.0152587890625, + -0.00518798828125, + 0.0030670166015625, + -0.04736328125, + 0.087890625, + 0.00341796875, + -0.035400390625, + 0.038818359375, + 0.042236328125, + -0.0022125244140625, + -0.02294921875, + 0.00531005859375, + -0.0224609375, + -0.0546875, + 0.017822265625, + 0.033935546875, + 0.046630859375, + -0.01019287109375, + -0.03662109375, + 4.5299530029296875e-05, + 0.037109375, + -0.033447265625, + 0.0498046875, + 0.00592041015625, + -0.01123046875, + -0.0164794921875, + 0.0126953125, + 0.007537841796875, + -0.017578125, + 0.0869140625, + 0.08740234375, + -0.041259765625, + 0.00421142578125, + -0.019775390625, + 0.00897216796875, + 0.034912109375, + -0.03369140625, + -0.0203857421875, + 0.03076171875, + 0.000522613525390625, + 0.00433349609375, + 0.0311279296875, + 0.0159912109375, + 0.0026702880859375, + 0.0185546875, + 0.0224609375, + 0.0255126953125, + 0.000152587890625, + 0.01434326171875, + 0.0250244140625, + 0.047119140625, + -0.00958251953125, + -0.0478515625, + 0.044921875, + -0.0177001953125, + 0.037353515625, + -0.0245361328125, + -0.0130615234375, + 0.037353515625, + -0.024169921875, + -0.030517578125, + 0.040283203125, + 0.0037384033203125, + -0.0140380859375, + 0.000629425048828125, + 0.03369140625, + -0.01397705078125, + -0.006378173828125, + 0.0174560546875, + -0.044189453125, + 0.0081787109375, + -0.05078125, + -0.000522613525390625, + -0.035400390625, + 0.049560546875, + 0.032958984375, + -0.01373291015625, + -0.0306396484375, + -0.0205078125, + -0.004547119140625, + 0.01300048828125, + -0.035400390625, + -0.04345703125, + -0.021240234375, + 0.01043701171875, + -0.052978515625, + -0.05126953125, + 0.037109375, + 0.0062255859375, + -0.0235595703125, + 0.048583984375, + -0.007537841796875, + -0.030029296875, + -0.0267333984375, + 0.0142822265625, + -0.0040283203125, + -0.0213623046875, + -0.0294189453125, + 0.0186767578125, + 0.05517578125, + -0.033935546875, + -0.007537841796875, + -0.0260009765625, + 0.01220703125, + -4.553794860839844e-05, + -0.03173828125, + 0.048828125, + -0.0390625, + -0.00933837890625, + -0.021240234375, + -0.0017547607421875, + -0.053955078125, + 0.0130615234375, + -0.030517578125, + 0.03857421875, + -0.00634765625, + -0.05712890625, + 0.00775146484375, + -0.017333984375, + 0.01507568359375, + -0.01275634765625, + -0.006744384765625, + 0.007476806640625, + 0.0033111572265625, + -0.03466796875, + -0.01275634765625, + 0.03271484375, + 0.01519775390625, + 0.0130615234375, + 0.03173828125, + -0.033935546875, + -0.025634765625, + -0.00286865234375, + 0.01708984375, + -0.0009765625, + -0.00537109375, + -0.0169677734375, + -0.07421875, + 0.0203857421875, + 0.0218505859375, + 0.0203857421875, + -0.03955078125, + -0.0224609375, + -0.035400390625, + -0.03515625, + -0.015380859375, + -0.028076171875, + 0.03515625, + -0.011962890625, + -0.0030364990234375, + 0.04638671875, + 0.029296875, + -0.01953125, + -0.01116943359375, + -0.0311279296875, + 0.0177001953125, + 9.489059448242188e-05, + 0.002899169921875, + 0.00162506103515625, + 0.0072021484375, + -0.00531005859375, + -0.0245361328125, + -0.0047607421875, + -0.01507568359375, + 0.0189208984375, + -0.001708984375, + -0.04638671875, + -0.0162353515625, + 0.03271484375, + 0.02734375, + 0.0009613037109375, + 0.017578125, + 0.026123046875, + -0.04638671875, + -0.008544921875, + -0.05712890625, + 0.00055694580078125, + 0.03125, + 0.0038909912109375, + -0.0218505859375, + -0.054931640625, + 0.00848388671875, + 0.01165771484375, + 0.034912109375, + 0.03662109375, + 0.0115966796875, + 0.00183868408203125, + -0.033935546875, + 0.037841796875, + -0.01116943359375, + 0.0322265625, + 0.0634765625, + -0.030517578125, + -0.01116943359375, + 0.004119873046875, + -0.0155029296875, + -0.0380859375, + -0.006134033203125, + -0.0152587890625, + 0.01116943359375, + 0.01275634765625, + 0.015869140625, + 0.05615234375, + -0.036376953125, + 0.01434326171875, + -0.01312255859375, + -0.005279541015625, + -0.1328125, + -0.0181884765625, + -0.01153564453125, + -0.005035400390625, + -0.060302734375, + -0.013671875, + 0.0028228759765625, + -0.016845703125, + 0.0028076171875, + -0.036376953125, + -0.017578125, + -0.051513671875, + 0.064453125, + 0.01611328125, + 0.03076171875, + 0.005615234375, + 0.00014781951904296875, + -0.01531982421875, + -0.0157470703125, + 0.09521484375, + -0.01953125, + 0.0037384033203125, + 0.03466796875, + 0.031005859375, + -0.04638671875, + 0.005035400390625, + 0.04296875, + -0.01611328125, + -0.0244140625, + 0.0233154296875, + -0.0361328125, + -0.04296875, + 0.01507568359375, + 0.03955078125, + 0.044677734375, + 0.005035400390625, + -0.00144195556640625, + -0.038818359375, + -0.03857421875, + -0.00335693359375, + -0.0032806396484375, + 0.0033416748046875, + -0.00750732421875, + 0.0595703125, + -0.01416015625, + 0.0185546875, + 0.0186767578125, + -0.0361328125, + -0.019287109375, + 0.015625, + -0.00885009765625, + 0.0169677734375, + -0.0198974609375, + 0.044677734375, + 0.00750732421875, + -0.044921875, + -0.017578125, + 0.02001953125, + -0.006988525390625, + 0.03466796875, + -0.006103515625, + 0.0038909912109375, + -0.01312255859375, + -0.0022125244140625, + -0.047607421875, + 0.03515625, + 0.022705078125, + 0.02685546875, + -0.031494140625, + 0.03515625, + -0.011474609375, + -0.02294921875, + 0.027587890625, + -0.03173828125, + -0.021728515625, + 0.003753662109375, + 0.037353515625, + 0.007171630859375, + 0.0026702880859375, + -0.0218505859375, + -0.045166015625, + 0.005035400390625, + -0.04248046875, + 0.0286865234375, + 0.0849609375, + -0.0016326904296875, + 0.000499725341796875, + -0.02294921875, + 0.0194091796875, + 0.0220947265625, + -0.04736328125, + -0.0164794921875, + -0.001373291015625, + 0.0289306640625, + 0.0238037109375, + 0.030517578125, + -0.01336669921875, + -0.0184326171875, + 0.00113677978515625, + 0.00823974609375, + -0.001983642578125, + -0.0341796875, + 0.00194549560546875, + 0.004730224609375, + -0.000858306884765625, + 0.035400390625, + -0.050048828125, + -0.0264892578125, + -0.04833984375, + -0.003021240234375, + -0.0341796875, + 0.01129150390625, + 0.02001953125, + -0.00537109375, + -0.09423828125, + 0.01953125, + -0.0279541015625, + 0.004119873046875, + 0.0185546875, + -0.0010223388671875, + -0.00186920166015625, + -0.034912109375, + -0.00153350830078125, + -0.053466796875, + 0.01275634765625, + 0.03515625, + 0.061279296875, + 0.06591796875, + 0.02978515625, + 0.01416015625, + -0.00144195556640625, + -0.002349853515625, + -0.003875732421875, + -0.007171630859375, + 0.01611328125, + 0.029541015625, + -0.000881195068359375, + 0.0390625, + -0.040283203125, + -0.0213623046875, + -0.07373046875, + -0.0120849609375, + -0.01556396484375, + -0.055908203125, + 0.0068359375, + -0.00579833984375, + 0.03076171875, + -0.0235595703125, + -0.03125, + 0.0003223419189453125, + -7.152557373046875e-05, + 0.00014019012451171875, + 0.0086669921875, + 0.025146484375, + -0.005828857421875, + 0.002838134765625, + -0.000598907470703125, + 0.019775390625, + -0.0135498046875, + 0.07568359375, + -0.0301513671875, + -0.0361328125, + -0.049072265625, + -0.029296875, + -0.00927734375, + 0.072265625, + 0.01019287109375, + -0.01611328125, + -0.03564453125, + 0.0179443359375, + 0.0021209716796875, + 0.011962890625, + -0.0186767578125, + 0.032958984375, + 0.0023956298828125, + 0.031494140625, + 0.00634765625, + 0.0235595703125, + 0.0244140625, + 0.009521484375, + 0.046630859375, + -0.0172119140625, + 0.01300048828125, + 0.0107421875, + -0.0341796875, + -0.013427734375, + 0.024169921875, + 0.000858306884765625, + -0.0244140625, + 0.004638671875, + -0.00067138671875, + 0.017578125, + -0.06298828125, + 0.0286865234375, + 0.020751953125, + 0.027587890625, + -0.00701904296875, + 0.02880859375, + 0.00738525390625, + 0.047607421875, + -0.01092529296875, + -0.0322265625, + 0.0091552734375, + 0.0230712890625, + 0.0179443359375, + 0.0294189453125, + 0.0096435546875, + -0.056396484375, + 0.03271484375, + -0.0260009765625, + 0.0174560546875, + -0.0169677734375, + -0.003173828125, + 0.0322265625, + 0.02294921875, + 0.025146484375, + 0.051513671875, + 0.01116943359375, + 0.0255126953125, + -0.0140380859375, + 0.0255126953125, + 0.031494140625, + -0.0224609375, + -0.0130615234375, + 0.0181884765625, + -0.0034637451171875, + 0.033935546875, + 0.0076904296875, + -0.0164794921875, + 0.04296875, + 0.02294921875, + 0.01336669921875, + -0.013427734375, + 0.000431060791015625, + 0.004119873046875, + -0.01312255859375, + -0.00408935546875, + -0.007781982421875, + -0.02685546875, + -0.042724609375, + 0.0595703125, + -0.031005859375, + -0.008056640625, + -0.046630859375 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 17.291784000001087, + "queue_ms": 1.426719000001242, + "tokenization_ms": 0.028110000002357083, + "inference_ms": 15.666430999999648, + "postprocessing_ms": null + } + }, + { + "id": "chunk-1", + "dense": [ + -0.035888671875, + -0.01019287109375, + -0.048095703125, + 0.038818359375, + 0.0014495849609375, + -0.006134033203125, + -0.00750732421875, + -0.003509521484375, + -0.0186767578125, + 0.044677734375, + 0.0194091796875, + 0.007415771484375, + 0.0234375, + 0.00125885009765625, + -0.00823974609375, + -0.0419921875, + -0.01153564453125, + -0.005096435546875, + -0.004547119140625, + -0.020263671875, + -0.0361328125, + -0.012451171875, + -0.0380859375, + 0.0419921875, + -0.00130462646484375, + 0.01373291015625, + 0.0169677734375, + -0.037109375, + -0.022705078125, + 0.0205078125, + 0.0098876953125, + 0.0155029296875, + 0.0218505859375, + -0.033203125, + -0.005126953125, + -0.0311279296875, + 0.00101470947265625, + 0.046142578125, + -0.08251953125, + 0.0191650390625, + -0.040283203125, + 0.00848388671875, + 0.000812530517578125, + -0.034912109375, + 0.061279296875, + -0.015625, + 0.002960205078125, + -0.034423828125, + -0.04541015625, + 0.046875, + 0.032958984375, + -0.0140380859375, + 0.016845703125, + -0.044921875, + 0.029541015625, + 0.044189453125, + -0.0537109375, + -0.00171661376953125, + -0.0966796875, + 0.00396728515625, + 0.00921630859375, + 0.0419921875, + -0.046875, + 0.006683349609375, + 0.033447265625, + -0.0091552734375, + 0.00421142578125, + -0.020263671875, + -0.00107574462890625, + -0.0162353515625, + 0.007659912109375, + -0.012451171875, + -0.03564453125, + 0.010986328125, + -0.078125, + 0.0380859375, + 0.0234375, + -0.0634765625, + -0.03466796875, + -0.042236328125, + 0.015380859375, + -0.04736328125, + 0.025390625, + -0.04638671875, + -0.053955078125, + 0.045166015625, + -0.001983642578125, + 0.0419921875, + -0.0135498046875, + 0.00157928466796875, + 0.01336669921875, + 0.010986328125, + -0.005615234375, + 0.004425048828125, + -0.0123291015625, + 0.0220947265625, + -0.00811767578125, + 0.00177001953125, + 0.00121307373046875, + 0.04736328125, + 0.0380859375, + 0.033203125, + 0.0255126953125, + 0.003143310546875, + -0.018310546875, + -0.030517578125, + 0.00086212158203125, + 0.042236328125, + 0.0106201171875, + -0.0205078125, + -0.0206298828125, + 0.04833984375, + -0.0274658203125, + 0.03759765625, + 0.027587890625, + -0.039794921875, + -0.023681640625, + -0.00201416015625, + 0.0059814453125, + -0.01458740234375, + 0.07373046875, + 0.019775390625, + 0.0185546875, + -0.06640625, + 0.0289306640625, + -0.0216064453125, + 0.0198974609375, + -0.007232666015625, + 0.0006103515625, + 0.015869140625, + 0.00946044921875, + 0.0126953125, + -0.00604248046875, + 0.046875, + -0.00133514404296875, + -0.025390625, + -0.0009765625, + 0.009521484375, + -0.03515625, + -0.08740234375, + -0.003936767578125, + -0.0098876953125, + 0.0093994140625, + -0.027587890625, + 0.020263671875, + -0.02880859375, + 0.039794921875, + 0.001861572265625, + -0.0155029296875, + -0.044677734375, + 0.00665283203125, + 0.0186767578125, + 0.043701171875, + -0.0223388671875, + -0.007568359375, + -0.00121307373046875, + -0.03955078125, + 0.041748046875, + -0.00726318359375, + 0.017333984375, + -0.00189971923828125, + 0.045166015625, + 0.00726318359375, + -0.00927734375, + 0.0284423828125, + 0.010498046875, + 0.032958984375, + 0.0311279296875, + 0.008056640625, + -0.02587890625, + 0.00921630859375, + -0.016845703125, + 0.0556640625, + 0.006927490234375, + -0.000621795654296875, + 0.015869140625, + 0.060546875, + 0.01141357421875, + 0.00011539459228515625, + -0.07861328125, + -0.035400390625, + 0.022705078125, + -0.02197265625, + -0.035888671875, + -0.0125732421875, + 0.0045166015625, + 0.02392578125, + -0.0125732421875, + 0.01068115234375, + 0.0537109375, + 0.00701904296875, + 0.0201416015625, + -0.037841796875, + 0.0223388671875, + 0.0224609375, + 0.0167236328125, + 0.01068115234375, + -0.051025390625, + 0.005859375, + -0.00189971923828125, + -0.02587890625, + 0.00994873046875, + -0.00616455078125, + -0.04638671875, + -0.049560546875, + -0.026123046875, + -0.051025390625, + 0.01348876953125, + 0.01446533203125, + 0.00994873046875, + -0.006134033203125, + 0.022705078125, + 0.012939453125, + -0.00115203857421875, + -0.0517578125, + 0.01458740234375, + 0.014404296875, + -0.0079345703125, + -0.03662109375, + -0.01409912109375, + 0.0556640625, + 0.0169677734375, + 0.0068359375, + 0.00531005859375, + 0.029052734375, + -0.011962890625, + 0.03759765625, + 0.0263671875, + 0.037841796875, + -0.0361328125, + -0.036376953125, + -0.02099609375, + -0.03173828125, + 0.010986328125, + -0.017333984375, + 0.01416015625, + 0.062255859375, + 0.00946044921875, + 0.0069580078125, + -0.038818359375, + -0.00830078125, + -0.0177001953125, + 0.02783203125, + 0.024658203125, + -0.016357421875, + -0.0062255859375, + -0.0537109375, + 0.025390625, + 0.0003223419189453125, + -0.05908203125, + 0.0146484375, + -0.01171875, + -0.0052490234375, + 0.0179443359375, + 0.0299072265625, + 0.01708984375, + 0.01171875, + 0.015380859375, + -0.032470703125, + -0.00848388671875, + 0.02490234375, + -0.00823974609375, + 0.0172119140625, + 0.048095703125, + 0.025390625, + -0.0311279296875, + -0.003082275390625, + -0.044677734375, + 0.01190185546875, + 0.0137939453125, + -0.0191650390625, + -0.0032501220703125, + 0.0024871826171875, + 0.0322265625, + -0.032470703125, + 0.07568359375, + -0.0181884765625, + -0.07666015625, + 0.08349609375, + -0.0281982421875, + 0.029052734375, + 0.049560546875, + 0.05810546875, + -0.0196533203125, + 0.038818359375, + -0.01153564453125, + 0.000823974609375, + -0.025634765625, + 0.036376953125, + -0.053955078125, + 0.0106201171875, + 0.029052734375, + 0.08642578125, + -0.00099945068359375, + -0.06591796875, + -0.038818359375, + 0.02197265625, + -0.1357421875, + -0.0037384033203125, + -0.020263671875, + 0.046875, + 0.00897216796875, + -0.001617431640625, + -0.0086669921875, + 0.0255126953125, + -0.01275634765625, + 0.038818359375, + -0.00823974609375, + -0.0693359375, + 0.000629425048828125, + -0.05419921875, + -0.00885009765625, + -0.01556396484375, + -0.008056640625, + -0.006866455078125, + 0.044677734375, + -0.025634765625, + -0.0218505859375, + -0.0390625, + 0.054931640625, + -0.044921875, + -0.001495361328125, + 0.016357421875, + 0.002716064453125, + 0.0185546875, + -0.06103515625, + 0.00946044921875, + -0.0291748046875, + 0.02587890625, + 0.000476837158203125, + 0.0113525390625, + -0.005584716796875, + 0.0009613037109375, + 0.04541015625, + -0.0177001953125, + 0.00750732421875, + 0.004058837890625, + 0.039306640625, + 0.01190185546875, + -0.0189208984375, + 0.06787109375, + 0.0159912109375, + -0.031494140625, + -0.003753662109375, + -0.0205078125, + -0.01806640625, + -0.0126953125, + -0.042724609375, + -0.039306640625, + -0.02880859375, + 0.001007080078125, + -0.05029296875, + 0.0517578125, + -0.0147705078125, + 0.025390625, + 0.0115966796875, + 0.046142578125, + -0.0118408203125, + -0.05517578125, + -0.026123046875, + 0.021240234375, + -0.03955078125, + 0.0130615234375, + 0.0245361328125, + -0.01611328125, + 0.0247802734375, + -0.00732421875, + 0.029541015625, + -0.0255126953125, + -0.000675201416015625, + 0.0244140625, + -0.038330078125, + -0.01904296875, + 0.0223388671875, + 0.01007080078125, + -0.038818359375, + -0.087890625, + -0.048095703125, + -0.018798828125, + -0.0146484375, + 0.02978515625, + -0.0186767578125, + -0.02197265625, + 0.01348876953125, + 0.0032806396484375, + 0.05419921875, + 0.212890625, + -0.04052734375, + 0.01220703125, + -0.0274658203125, + 0.07177734375, + -0.003509521484375, + 0.00634765625, + 0.0303955078125, + -0.0274658203125, + -0.02490234375, + 0.035888671875, + 0.0225830078125, + -0.007659912109375, + -0.017822265625, + 0.02685546875, + -0.01409912109375, + -0.04833984375, + -0.0172119140625, + 0.09765625, + 0.00927734375, + 0.025146484375, + -0.05517578125, + 0.072265625, + 0.00135040283203125, + -0.0091552734375, + -0.0120849609375, + 0.0091552734375, + 0.0146484375, + 0.0007476806640625, + 0.038818359375, + 0.00830078125, + -0.004302978515625, + 0.07763671875, + -0.0177001953125, + 0.01007080078125, + -0.02734375, + 0.0118408203125, + -0.018798828125, + 0.042724609375, + 0.03173828125, + -0.0223388671875, + -0.043701171875, + -0.032958984375, + -0.00189971923828125, + 0.004852294921875, + -0.041259765625, + 0.00787353515625, + 0.0072021484375, + -0.02978515625, + -0.02197265625, + -0.0179443359375, + -0.030517578125, + -0.02490234375, + 0.0068359375, + -0.03271484375, + -0.0654296875, + -0.01171875, + -0.0179443359375, + -0.03369140625, + 0.03515625, + 0.0439453125, + -0.01556396484375, + -0.043701171875, + 0.05322265625, + 0.013427734375, + -0.0019683837890625, + -0.0537109375, + -0.0263671875, + 0.0223388671875, + 0.025390625, + 0.00732421875, + 0.028076171875, + -0.01068115234375, + -0.010498046875, + -0.000865936279296875, + -0.025146484375, + 0.034912109375, + 0.0233154296875, + 0.004852294921875, + -0.0172119140625, + -0.032470703125, + -0.038818359375, + -0.0211181640625, + -0.0213623046875, + 0.01055908203125, + -0.041015625, + -0.0089111328125, + 0.03466796875, + -0.00823974609375, + -0.03759765625, + -0.004486083984375, + -0.015625, + -0.038818359375, + -0.00182342529296875, + -0.0162353515625, + 0.027587890625, + 0.0157470703125, + 0.0052490234375, + -0.0732421875, + -0.04541015625, + 0.037841796875, + 0.036376953125, + -0.0146484375, + -0.045166015625, + 0.038330078125, + -0.0289306640625, + 0.0098876953125, + 0.00011444091796875, + -0.005401611328125, + -0.0172119140625, + -0.0224609375, + 0.037353515625, + 0.022705078125, + 0.00848388671875, + 0.0125732421875, + 0.023193359375, + -0.0106201171875, + -0.00173187255859375, + -0.00171661376953125, + 0.0003414154052734375, + 0.0155029296875, + 0.029052734375, + 0.0087890625, + 0.017822265625, + -0.0267333984375, + -0.005950927734375, + 0.00341796875, + -0.027099609375, + -0.030517578125, + 0.034423828125, + 0.00439453125, + -0.01611328125, + -0.02734375, + 0.035400390625, + 0.0234375, + -0.033203125, + 0.052734375, + 0.0108642578125, + 0.004058837890625, + -0.03271484375, + 0.0025482177734375, + 0.01068115234375, + -0.0299072265625, + 0.0093994140625, + -0.0252685546875, + 0.003448486328125, + 0.02978515625, + -0.04248046875, + -0.0233154296875, + 0.057861328125, + -0.003631591796875, + 0.000698089599609375, + -0.011962890625, + -0.051025390625, + -0.0211181640625, + -0.0179443359375, + -0.016357421875, + -0.01025390625, + 0.03173828125, + -0.0081787109375, + 0.01416015625, + 0.022705078125, + 0.00927734375, + 0.0732421875, + 0.0284423828125, + 0.0224609375, + 0.0169677734375, + 0.0220947265625, + -0.04638671875, + -0.0228271484375, + -0.0167236328125, + -0.040771484375, + -0.052734375, + 0.057861328125, + -0.0140380859375, + -0.0498046875, + -0.009033203125, + 0.0240478515625, + 0.030517578125, + -0.0213623046875, + 0.01068115234375, + -0.033935546875, + -0.053955078125, + 0.002166748046875, + -0.0026092529296875, + -0.0267333984375, + -0.031005859375, + -0.0135498046875, + 0.05078125, + -0.01055908203125, + -0.0224609375, + 0.0908203125, + -0.005279541015625, + -0.0233154296875, + -0.032470703125, + -0.01220703125, + 0.001708984375, + -0.0027313232421875, + -0.00140380859375, + -0.0419921875, + 0.0208740234375, + 0.00994873046875, + 0.00567626953125, + -0.05322265625, + -0.0024261474609375, + 0.026611328125, + -0.02197265625, + 0.043212890625, + -0.00640869140625, + 0.0030975341796875, + 0.0223388671875, + 0.01519775390625, + -0.07080078125, + -0.007293701171875, + 0.03662109375, + 0.0029754638671875, + 0.040283203125, + 0.029541015625, + 0.006195068359375, + -0.02587890625, + 0.0038299560546875, + 0.00341796875, + 0.02783203125, + -0.036376953125, + 0.0087890625, + -0.0213623046875, + 0.05615234375, + -0.028564453125, + 0.00494384765625, + -0.021728515625, + 0.00567626953125, + -0.015380859375, + 0.0091552734375, + -0.014892578125, + 0.07666015625, + 0.01300048828125, + 0.0291748046875, + 0.0517578125, + 0.03369140625, + -0.0198974609375, + 0.03076171875, + -0.01165771484375, + -0.0115966796875, + 0.0732421875, + -0.01031494140625, + 0.04541015625, + 0.0115966796875, + -0.009765625, + 0.024658203125, + 0.028564453125, + -0.0205078125, + -0.026123046875, + 0.0091552734375, + -0.041748046875, + 0.0220947265625, + -0.01129150390625, + -0.0281982421875, + -0.01385498046875, + -0.037353515625, + 0.0277099609375, + 0.022705078125, + 0.0262451171875, + 0.004425048828125, + 0.01348876953125, + -0.02880859375, + -0.041015625, + 0.025146484375, + -0.0289306640625, + -0.0191650390625, + -0.049560546875, + 0.036865234375, + -0.00084686279296875, + -0.0281982421875, + -0.0673828125, + 0.025146484375, + -0.017333984375, + 0.032470703125, + 0.033447265625, + 0.0211181640625, + 0.0069580078125, + -0.0087890625, + 0.0125732421875, + 0.049560546875, + 0.000858306884765625, + -0.01019287109375, + 0.03173828125, + 0.010986328125, + -0.0025177001953125, + -0.004791259765625, + -0.041015625, + -0.00567626953125, + -0.02783203125, + -0.061279296875, + 0.005126953125, + -0.0234375, + -0.032958984375, + -0.041748046875, + 0.01068115234375, + 0.00787353515625, + -0.00885009765625, + -0.000972747802734375, + 0.01104736328125, + -0.0277099609375, + -0.0439453125, + -0.0115966796875, + -2.5987625122070312e-05, + 0.0004425048828125, + -0.026611328125, + 0.0390625, + 0.060791015625, + -0.016357421875, + -0.04736328125, + 0.00970458984375, + 0.0267333984375, + -0.005035400390625, + -0.016357421875, + 0.02978515625, + 0.0186767578125, + 0.038818359375, + -0.005218505859375, + 0.0303955078125, + -0.0185546875, + -0.007476806640625, + -0.006011962890625, + 0.0120849609375, + 0.003936767578125, + 0.0137939453125, + 0.0152587890625, + -0.03466796875, + 0.00762939453125, + -0.048828125, + -0.005584716796875, + 0.007598876953125, + 0.004852294921875, + 0.0263671875, + -0.0015106201171875, + 0.036376953125, + 0.011962890625, + 0.0419921875, + -0.06103515625, + -0.00531005859375, + -0.04638671875, + 0.01025390625, + -0.015380859375, + -0.00311279296875, + -0.0732421875, + -0.009765625, + -0.04541015625, + -0.003173828125, + -0.0164794921875, + -0.0284423828125, + 0.03955078125, + -0.04541015625, + -0.03466796875, + -0.02734375, + 0.00201416015625, + 0.005584716796875, + 0.04541015625, + 0.026611328125, + -0.000263214111328125, + -0.0302734375, + 0.0169677734375, + 0.031005859375, + 0.02197265625, + 0.016845703125, + -0.0113525390625, + 0.04833984375, + -2.6226043701171875e-05, + 0.0206298828125, + -0.030517578125, + -0.028076171875, + 0.029541015625, + -0.0208740234375, + 0.03271484375, + -0.02880859375, + 0.022705078125, + 0.004669189453125, + -0.041748046875, + 0.0419921875, + 0.0157470703125, + -0.042724609375, + -0.0234375, + -0.0263671875, + -0.016845703125, + 0.0224609375, + 0.03466796875, + -0.05615234375, + -0.0028533935546875, + 0.07470703125, + 0.05078125, + -0.037353515625, + -0.00176239013671875, + -0.033203125, + -0.0291748046875, + -0.146484375, + 0.0179443359375, + -0.00750732421875, + -0.01092529296875, + -0.0196533203125, + -0.001220703125, + -0.029541015625, + -0.04248046875, + -0.038818359375, + -0.0269775390625, + -0.0224609375, + 0.0322265625, + 0.044677734375, + -0.01312255859375, + -0.0303955078125, + 0.01556396484375, + -0.039306640625, + -0.00347900390625, + -0.0220947265625, + 0.0068359375, + -0.0146484375, + -0.034912109375, + -0.00775146484375, + 0.032470703125, + 0.0191650390625, + -0.0203857421875, + -0.01446533203125, + -0.00799560546875, + -0.03369140625, + -0.042724609375, + -0.005218505859375, + -0.01141357421875, + -0.00323486328125, + 0.03955078125, + 0.010986328125, + 0.0478515625, + 0.0003604888916015625, + 0.01513671875, + 0.033203125, + 0.027587890625, + 0.007110595703125, + 0.0201416015625, + -0.0201416015625, + -0.0206298828125, + 0.00567626953125, + 0.0194091796875, + 0.0023651123046875, + -0.00125885009765625, + -0.020263671875, + 0.029541015625, + -0.041015625, + 0.004913330078125, + -0.025390625, + 0.021728515625, + 0.01312255859375, + -0.00921630859375, + 0.016845703125, + 0.032470703125, + -0.042724609375, + 0.00135040283203125, + -0.0125732421875, + 0.031494140625, + -0.0135498046875, + -0.05615234375, + 0.0185546875, + 0.034423828125, + -0.039794921875, + -0.02685546875, + 0.016357421875, + 0.0203857421875, + 0.00185394287109375, + 0.00543212890625, + -0.0234375, + -0.041259765625, + 0.0211181640625, + 0.029541015625, + 0.037841796875, + 0.005126953125, + -0.005157470703125, + -0.00689697265625, + -0.037109375, + 0.003570556640625, + 0.01263427734375, + 0.0220947265625, + 0.055419921875, + 0.011962890625, + -0.027099609375, + 0.041748046875, + -0.0498046875, + 0.003753662109375, + -0.050537109375, + -0.05322265625, + -0.03759765625, + 0.0576171875, + 0.0076904296875, + 0.007781982421875, + -0.0020599365234375, + 0.031494140625, + 0.021728515625, + -0.01025390625, + 0.0283203125, + -0.01385498046875, + -0.03955078125, + 0.0025634765625, + -0.006927490234375, + 0.0177001953125, + 0.007598876953125, + -0.0247802734375, + 0.037353515625, + 0.007781982421875, + 0.00634765625, + 0.005157470703125, + 0.0086669921875, + -0.0157470703125, + -0.07421875, + -0.040771484375, + -0.0001468658447265625, + -0.01226806640625, + -0.0177001953125, + 0.0184326171875, + 0.0137939453125, + 0.01220703125, + -0.005859375, + -0.03271484375, + 0.05615234375, + 0.027099609375, + 0.00848388671875, + 0.0159912109375, + 0.0140380859375, + -0.007110595703125, + 0.024169921875, + 0.00994873046875, + -0.0164794921875, + -0.00139617919921875, + 0.035888671875, + -0.046875, + -0.0283203125, + 0.06005859375, + -0.04833984375, + -0.033935546875, + 0.0016632080078125, + -0.0118408203125, + 0.0079345703125, + -0.0025482177734375, + 0.00098419189453125, + -0.03466796875, + 0.009033203125, + 0.005279541015625, + -0.00543212890625, + -0.049072265625, + 0.0101318359375, + 0.0191650390625, + -0.0087890625, + 0.0284423828125, + -0.0006103515625, + 0.009765625, + -0.026123046875, + 0.056884765625, + 0.0244140625, + 0.037109375, + 0.0137939453125, + -0.056396484375, + -0.0001659393310546875, + -0.034912109375, + 0.0123291015625, + -0.0230712890625, + -0.0247802734375, + 0.00543212890625, + 0.006683349609375, + 0.03759765625, + 0.01019287109375, + 0.0081787109375, + -0.01141357421875, + 0.041748046875, + 0.01904296875, + -0.05712890625, + 0.02734375, + -0.00058746337890625, + 0.05029296875, + 0.0289306640625, + 0.0002803802490234375, + 0.052490234375, + 0.0189208984375, + 0.049072265625, + 0.0439453125, + 0.05078125, + -0.01806640625, + 0.00701904296875, + 0.03466796875, + 0.0198974609375, + 0.029296875, + 0.00372314453125, + 0.0208740234375, + 0.0162353515625, + 0.038330078125, + 0.0322265625, + 0.005035400390625, + 0.0712890625, + -0.01708984375, + 0.037109375, + 0.0048828125, + -0.0181884765625, + -0.042724609375, + -0.01708984375, + -0.0498046875, + -0.004302978515625, + 0.0069580078125, + -0.03125, + -0.0556640625, + 0.0537109375, + -0.0361328125, + 0.0269775390625, + -0.006500244140625, + -0.00860595703125, + -0.0166015625, + 0.0322265625, + 0.02197265625, + 0.03515625, + 0.033203125, + 0.005340576171875, + 0.004241943359375, + 0.031494140625, + -0.025146484375, + -0.041259765625, + -0.0303955078125, + 0.049560546875, + -0.023193359375, + 0.00628662109375, + -0.0137939453125, + -0.0303955078125, + 0.02734375, + -0.04052734375, + -0.03662109375, + -0.0130615234375, + 0.026611328125, + -0.0296630859375, + -0.032958984375, + -0.006866455078125, + -0.0615234375, + -0.034423828125, + 0.04345703125, + 0.01104736328125, + 0.05322265625, + 0.033203125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 507.4487529999985, + "queue_ms": 0.07402100000319933, + "tokenization_ms": 0.02607100000062701, + "inference_ms": 507.21563799999814, + "postprocessing_ms": null + } + }, + { + "id": "chunk-2", + "dense": [ + 0.00921630859375, + 0.0029754638671875, + -0.01470947265625, + -0.004425048828125, + -0.0284423828125, + -0.054931640625, + -0.034912109375, + -0.0400390625, + -0.00469970703125, + 0.0233154296875, + -0.01422119140625, + -3.886222839355469e-05, + 0.0198974609375, + 0.015380859375, + -0.00994873046875, + 0.01904296875, + -0.01361083984375, + -0.04345703125, + -0.00299072265625, + -0.056396484375, + -0.0181884765625, + 0.00384521484375, + -0.0159912109375, + 0.017822265625, + 0.0020751953125, + 0.00665283203125, + -0.0289306640625, + -0.00799560546875, + 0.02783203125, + 0.01220703125, + -0.01513671875, + -0.0264892578125, + 0.0194091796875, + -0.0194091796875, + 0.051513671875, + -0.036376953125, + 0.0093994140625, + -0.0206298828125, + -0.05419921875, + -0.002197265625, + -0.06689453125, + -0.020263671875, + 0.0020751953125, + 0.01495361328125, + -0.0218505859375, + -0.0419921875, + -0.004425048828125, + -0.0260009765625, + 0.00616455078125, + -0.01434326171875, + 0.027099609375, + -0.029296875, + 0.004241943359375, + -0.0172119140625, + -0.00860595703125, + 0.010498046875, + 0.0159912109375, + -0.0234375, + -0.047607421875, + -0.056396484375, + -0.01806640625, + 0.001007080078125, + -0.05908203125, + -9.775161743164062e-05, + -0.006134033203125, + 0.01953125, + 0.01495361328125, + 0.04541015625, + -0.007720947265625, + -0.021484375, + 0.0145263671875, + 0.017822265625, + 0.0294189453125, + -0.017333984375, + -0.0693359375, + 0.01361083984375, + 0.01806640625, + -0.0135498046875, + 0.01239013671875, + 0.0400390625, + 0.005462646484375, + -0.00897216796875, + 0.00689697265625, + -0.0027313232421875, + -0.00051116943359375, + 0.004608154296875, + -0.044189453125, + 0.07763671875, + 0.00083160400390625, + -0.016845703125, + 0.0172119140625, + -0.0015716552734375, + 0.0086669921875, + -0.03662109375, + 0.000751495361328125, + -0.03173828125, + -0.0185546875, + -0.027587890625, + 0.01611328125, + 0.00848388671875, + -0.034423828125, + 0.0016937255859375, + 0.07275390625, + -0.0361328125, + -0.0047607421875, + 0.049072265625, + 0.0027618408203125, + 0.037353515625, + 0.039306640625, + -0.028076171875, + 0.0198974609375, + 0.031494140625, + 0.02880859375, + -0.041259765625, + 0.0128173828125, + -0.0262451171875, + -0.0113525390625, + -0.036865234375, + -0.00616455078125, + -0.026611328125, + 0.0308837890625, + 0.03564453125, + 0.0157470703125, + -0.0301513671875, + -0.04345703125, + -0.037841796875, + 0.049072265625, + 0.054443359375, + -0.006805419921875, + 0.03271484375, + 0.0179443359375, + 0.0084228515625, + -0.0751953125, + 0.0093994140625, + -0.033447265625, + -0.000522613525390625, + -0.007781982421875, + 0.036865234375, + 0.000881195068359375, + -0.056640625, + 0.016357421875, + 0.0220947265625, + 0.0027618408203125, + -0.021240234375, + 0.059814453125, + -0.02587890625, + 0.006500244140625, + -0.034423828125, + -0.0126953125, + -0.0159912109375, + 0.036376953125, + -0.01055908203125, + 0.0010986328125, + -0.01507568359375, + 0.032958984375, + -0.060302734375, + -0.0233154296875, + 0.022216796875, + -0.0019073486328125, + 0.0302734375, + -0.01416015625, + 0.01470947265625, + 0.01324462890625, + -0.01220703125, + 0.054931640625, + -0.01513671875, + 0.0224609375, + 0.0220947265625, + -0.024169921875, + -0.01031494140625, + 0.01483154296875, + 0.0296630859375, + -0.018798828125, + -0.015869140625, + -0.056884765625, + 0.0205078125, + 0.0654296875, + -0.00469970703125, + -0.0172119140625, + -0.028076171875, + -0.051513671875, + 0.04541015625, + 0.0086669921875, + 0.0004825592041015625, + 0.01043701171875, + 0.004852294921875, + 0.0216064453125, + -0.0108642578125, + 0.01373291015625, + 0.0302734375, + 0.0157470703125, + -0.036865234375, + 0.0042724609375, + 0.00168609619140625, + 0.041748046875, + -0.01220703125, + 0.0021209716796875, + -0.01092529296875, + 0.002197265625, + -0.037109375, + -0.0233154296875, + 0.038330078125, + 0.037353515625, + -0.036376953125, + -0.0203857421875, + 0.010009765625, + -0.00077056884765625, + 0.00421142578125, + 0.0240478515625, + -0.06640625, + -0.033447265625, + 0.0135498046875, + 0.0035247802734375, + 0.0289306640625, + 0.007415771484375, + 0.01141357421875, + -0.009765625, + -0.01141357421875, + 0.000247955322265625, + -0.009521484375, + 0.004180908203125, + 0.03515625, + -0.00909423828125, + -0.01025390625, + -0.0045166015625, + -0.0184326171875, + -0.01385498046875, + 0.0133056640625, + 0.041015625, + -0.032470703125, + 0.039306640625, + 0.009521484375, + 0.0030059814453125, + 0.00982666015625, + 0.0009002685546875, + -0.00921630859375, + -0.030029296875, + 0.05419921875, + 0.01239013671875, + 0.0262451171875, + 0.004669189453125, + -0.00604248046875, + 0.062255859375, + 0.03515625, + 0.005859375, + 0.0027923583984375, + -0.0089111328125, + -0.006500244140625, + -0.020263671875, + -0.0206298828125, + 0.0238037109375, + 0.047607421875, + -0.05859375, + 0.05126953125, + -0.0123291015625, + 0.000904083251953125, + -0.00787353515625, + 0.0035858154296875, + 0.0032958984375, + -0.012939453125, + 0.024658203125, + 0.0634765625, + 0.0301513671875, + 0.0179443359375, + 0.01025390625, + -0.01373291015625, + -0.039794921875, + -0.03271484375, + 0.030029296875, + 0.01434326171875, + 0.021484375, + -0.06103515625, + -0.0145263671875, + 0.00384521484375, + 0.00347900390625, + -2.8014183044433594e-05, + 0.017578125, + 0.0157470703125, + 0.034423828125, + 0.004608154296875, + -0.00555419921875, + -0.01324462890625, + 0.0245361328125, + -0.01177978515625, + 0.0177001953125, + -0.036376953125, + -0.06982421875, + -0.056640625, + 0.0218505859375, + 0.0264892578125, + 0.0166015625, + 0.046630859375, + 0.057373046875, + 0.033203125, + -0.039306640625, + -0.025146484375, + 0.0126953125, + -0.1728515625, + -0.0198974609375, + -0.0419921875, + -0.034423828125, + -0.0172119140625, + -0.00811767578125, + -0.05517578125, + -0.02294921875, + -0.02392578125, + 0.01318359375, + 0.0203857421875, + -0.04443359375, + 0.0159912109375, + 0.018798828125, + -0.00885009765625, + 0.01416015625, + -0.04052734375, + 0.00335693359375, + 0.004180908203125, + -0.0478515625, + -0.0556640625, + -0.0751953125, + 0.06689453125, + -0.03173828125, + -0.02783203125, + 0.00762939453125, + -0.00115203857421875, + 0.005859375, + -0.0625, + -0.0250244140625, + 0.0146484375, + -0.00604248046875, + 0.009033203125, + 0.002838134765625, + 0.0086669921875, + -0.00103759765625, + -0.00013637542724609375, + -0.046875, + 0.0120849609375, + 0.01434326171875, + 0.039306640625, + 0.050537109375, + -0.0185546875, + -0.006011962890625, + 0.0208740234375, + -0.01470947265625, + -0.00128936767578125, + 0.0179443359375, + -0.031982421875, + 0.0238037109375, + 0.0234375, + 0.0299072265625, + -0.039306640625, + -0.005950927734375, + -0.052001953125, + 0.0238037109375, + 0.04443359375, + 0.003509521484375, + -0.04931640625, + 0.01531982421875, + -0.01263427734375, + -0.05322265625, + 0.00640869140625, + -0.04248046875, + -0.00439453125, + -0.04345703125, + -0.0179443359375, + 0.00811767578125, + 0.01708984375, + -0.033447265625, + 0.043212890625, + -0.01312255859375, + 0.0281982421875, + 0.000682830810546875, + 0.046630859375, + 0.0308837890625, + -0.0177001953125, + -0.05029296875, + -0.033447265625, + -0.09912109375, + -0.08154296875, + 0.00179290771484375, + -0.052490234375, + -0.019775390625, + -0.043701171875, + -0.050048828125, + -0.0086669921875, + 0.08349609375, + 0.041259765625, + 0.2392578125, + 0.00885009765625, + 0.0022430419921875, + 0.0152587890625, + 0.0517578125, + 0.0220947265625, + 0.0264892578125, + 0.038818359375, + -0.0146484375, + -0.0284423828125, + 0.0198974609375, + -0.025146484375, + -0.0012054443359375, + -0.0113525390625, + 0.0042724609375, + 0.0164794921875, + -0.08203125, + -0.022705078125, + 0.05908203125, + 0.02099609375, + 0.00201416015625, + 0.0014190673828125, + 0.0125732421875, + -0.040771484375, + -0.07861328125, + 0.01531982421875, + 0.00021457672119140625, + 0.05029296875, + 0.00020599365234375, + 0.01531982421875, + -0.0262451171875, + -0.00799560546875, + 0.05029296875, + -0.007415771484375, + 0.01031494140625, + 0.04296875, + 0.0125732421875, + 0.0003452301025390625, + 0.000621795654296875, + 0.041748046875, + -0.010498046875, + 0.002197265625, + -0.01324462890625, + -0.04833984375, + 0.017333984375, + 0.004608154296875, + 0.00665283203125, + 0.0238037109375, + 0.037353515625, + -0.043212890625, + 0.01708984375, + -0.0419921875, + -0.0196533203125, + 0.0096435546875, + 0.0164794921875, + 0.00836181640625, + -0.012939453125, + -0.01055908203125, + -0.05078125, + 0.050537109375, + 0.01239013671875, + 0.00927734375, + -0.016845703125, + 0.043212890625, + -0.026611328125, + 0.020263671875, + -0.01202392578125, + -0.026611328125, + -0.043212890625, + 0.041748046875, + 0.0107421875, + 0.0172119140625, + -0.0260009765625, + 0.0010223388671875, + 0.0556640625, + -0.0230712890625, + -0.0019683837890625, + 0.00616455078125, + 0.01324462890625, + 0.0634765625, + -0.0277099609375, + 0.0050048828125, + -0.039794921875, + 0.0211181640625, + 0.01531982421875, + -0.0020751953125, + 0.049560546875, + 0.0223388671875, + -0.01287841796875, + 0.0111083984375, + -0.0194091796875, + 0.0264892578125, + -0.031982421875, + 0.03564453125, + -0.047119140625, + -0.029052734375, + 0.0125732421875, + -0.006439208984375, + -0.033935546875, + 0.011474609375, + -0.0157470703125, + -0.01177978515625, + -0.0096435546875, + -0.03466796875, + 0.03857421875, + -0.0159912109375, + 0.0091552734375, + 0.00335693359375, + -0.0274658203125, + 0.056640625, + -0.076171875, + -0.01312255859375, + -0.01483154296875, + -0.001312255859375, + 0.0047607421875, + 0.0419921875, + 0.006500244140625, + 0.022216796875, + 0.07421875, + 0.0281982421875, + 0.038818359375, + 0.043212890625, + -0.015625, + 0.03466796875, + -0.01251220703125, + -0.0302734375, + -0.035888671875, + -0.0252685546875, + -0.03564453125, + -0.00555419921875, + -0.01300048828125, + -0.01300048828125, + -0.0634765625, + 0.05029296875, + 0.00138092041015625, + 0.01556396484375, + 0.0089111328125, + -0.0302734375, + -0.005523681640625, + -0.007415771484375, + -0.00872802734375, + 0.012939453125, + -0.044189453125, + 0.0218505859375, + 0.0250244140625, + -0.005279541015625, + -0.03515625, + -0.0147705078125, + 0.004058837890625, + 0.039794921875, + -0.005615234375, + 0.027587890625, + 0.07275390625, + -0.08740234375, + -0.033447265625, + -0.07666015625, + 0.004852294921875, + 5.91278076171875e-05, + 0.01019287109375, + -0.0206298828125, + -0.004180908203125, + 0.052001953125, + 0.002197265625, + 0.07177734375, + -0.00135040283203125, + -0.0125732421875, + -0.0174560546875, + 0.0216064453125, + -0.0021514892578125, + 0.03076171875, + -0.0059814453125, + 0.0048828125, + -0.00604248046875, + 0.01324462890625, + 0.0081787109375, + 0.00823974609375, + -0.0299072265625, + 0.0025634765625, + 0.01092529296875, + -0.038818359375, + -0.01611328125, + 0.0283203125, + -0.03759765625, + 0.0289306640625, + 0.01806640625, + -0.007720947265625, + -0.0191650390625, + -0.0272216796875, + 0.037353515625, + -0.027587890625, + -0.052734375, + 0.0849609375, + -0.01239013671875, + -0.039306640625, + 0.0302734375, + 0.0133056640625, + 0.0673828125, + 0.0205078125, + -0.000720977783203125, + 0.00732421875, + -0.0027008056640625, + 0.033447265625, + -0.006744384765625, + -0.01904296875, + -0.049072265625, + 0.00860595703125, + -0.015869140625, + 0.03759765625, + -0.05078125, + 0.04248046875, + -0.0166015625, + -0.00469970703125, + -0.01055908203125, + -0.000522613525390625, + 0.0238037109375, + -0.004608154296875, + 0.05419921875, + 0.0634765625, + -0.00384521484375, + 0.039794921875, + -0.03662109375, + 0.0133056640625, + 0.0277099609375, + -0.00665283203125, + 0.007415771484375, + 0.00860595703125, + 0.049072265625, + -0.04052734375, + -0.0400390625, + -0.002349853515625, + -0.001922607421875, + -0.0203857421875, + 0.04931640625, + -0.004241943359375, + 0.03125, + 0.022216796875, + 0.06298828125, + 0.000904083251953125, + -0.0245361328125, + -0.027587890625, + 0.027587890625, + -0.0159912109375, + -0.0218505859375, + 0.0133056640625, + 0.004669189453125, + -0.00152587890625, + 0.01019287109375, + -0.0301513671875, + 0.0400390625, + 0.05517578125, + 0.0093994140625, + -0.02392578125, + 0.024658203125, + -0.036376953125, + 0.0361328125, + -0.0264892578125, + -0.022705078125, + 0.005859375, + -0.041259765625, + 0.006103515625, + -0.02294921875, + 0.013427734375, + 0.035400390625, + 0.004608154296875, + 0.0019073486328125, + -0.08740234375, + 0.00162506103515625, + -0.004669189453125, + -0.0016632080078125, + -0.0286865234375, + 0.025146484375, + -0.0034027099609375, + 0.0179443359375, + -0.004791259765625, + 0.0024261474609375, + 0.0113525390625, + -0.01373291015625, + 0.052734375, + 0.03271484375, + -0.030517578125, + 0.0030059814453125, + -0.021484375, + 0.000743865966796875, + 0.0011138916015625, + 0.019775390625, + 0.027099609375, + 0.010009765625, + 0.03369140625, + 0.0311279296875, + -0.01025390625, + 0.00970458984375, + 0.04296875, + -0.01220703125, + 0.046875, + -0.005157470703125, + -0.0167236328125, + -0.0034332275390625, + 0.030029296875, + -0.043701171875, + 0.01318359375, + 0.005615234375, + -0.0111083984375, + -0.034423828125, + -0.033447265625, + 0.05419921875, + -0.006317138671875, + -0.0233154296875, + -0.01300048828125, + 0.0096435546875, + 0.00543212890625, + -0.01483154296875, + -0.0634765625, + -0.029541015625, + -0.0223388671875, + 0.004638671875, + 0.0020599365234375, + 0.0013275146484375, + -0.00555419921875, + -0.00299072265625, + -0.01318359375, + -0.02392578125, + -0.022705078125, + 0.0032196044921875, + -0.008056640625, + -0.0257568359375, + 0.0206298828125, + -0.024658203125, + -0.0556640625, + 0.01019287109375, + 0.0208740234375, + -0.007110595703125, + -0.01446533203125, + -0.061279296875, + -0.0135498046875, + 0.0184326171875, + 0.01092529296875, + 0.044921875, + -0.013427734375, + 0.1123046875, + -0.00994873046875, + -0.054931640625, + -0.0189208984375, + 0.039794921875, + -0.01287841796875, + 0.01361083984375, + -0.049560546875, + -0.0302734375, + -0.01220703125, + -0.041748046875, + -0.01116943359375, + -0.022705078125, + -0.004608154296875, + 0.0030517578125, + -0.043701171875, + 0.01531982421875, + -0.01190185546875, + -0.01202392578125, + 0.07666015625, + 0.0040283203125, + -0.00390625, + -0.05615234375, + 0.01055908203125, + 0.00128936767578125, + -0.033203125, + 0.02685546875, + 0.02294921875, + -0.0458984375, + -0.03662109375, + 0.0137939453125, + -0.01446533203125, + 0.0245361328125, + 0.0257568359375, + -0.00054931640625, + -0.0150146484375, + -0.027099609375, + 0.0252685546875, + 0.0108642578125, + 0.01177978515625, + 0.03564453125, + -0.004302978515625, + -0.017578125, + -0.0301513671875, + -0.0247802734375, + -0.007049560546875, + 0.040771484375, + -0.000453948974609375, + -0.030517578125, + 0.01470947265625, + 0.020263671875, + 0.0269775390625, + -0.0185546875, + 0.01361083984375, + -0.029296875, + 0.0125732421875, + -0.150390625, + 0.02587890625, + -0.003143310546875, + -0.038330078125, + -0.02880859375, + -0.00970458984375, + -0.025390625, + 0.028076171875, + -0.02880859375, + 0.0145263671875, + -0.032470703125, + -0.006195068359375, + 0.022216796875, + -0.03125, + -0.003204345703125, + 0.025146484375, + -0.032958984375, + -0.02880859375, + 0.0238037109375, + 0.04248046875, + 0.010498046875, + -0.001495361328125, + 0.033935546875, + 0.01092529296875, + -0.000736236572265625, + 0.0247802734375, + -0.0162353515625, + -0.04931640625, + -0.0281982421875, + -0.01904296875, + -0.0272216796875, + -0.00860595703125, + 0.0167236328125, + 0.06640625, + 0.006591796875, + -0.0245361328125, + 0.017822265625, + -0.0296630859375, + -0.04052734375, + -0.0162353515625, + 0.0089111328125, + 0.014404296875, + 0.0034332275390625, + 0.01409912109375, + 0.01263427734375, + 0.00390625, + -0.047119140625, + 0.00787353515625, + 0.001739501953125, + -0.0191650390625, + -0.0015411376953125, + -0.02783203125, + -0.0189208984375, + -0.004241943359375, + 0.0186767578125, + -0.0018157958984375, + -0.0235595703125, + -0.032958984375, + -0.041259765625, + 0.0286865234375, + -0.0252685546875, + 0.044677734375, + -0.0240478515625, + -0.0152587890625, + -0.044677734375, + -0.0035247802734375, + -0.03515625, + -0.005126953125, + 0.0191650390625, + -0.00439453125, + 0.000659942626953125, + -0.0108642578125, + 0.000820159912109375, + -0.01202392578125, + -0.0191650390625, + 0.0086669921875, + 0.039794921875, + 0.0025482177734375, + 0.0140380859375, + 0.01019287109375, + -0.0220947265625, + -0.03271484375, + 0.00885009765625, + 0.00093841552734375, + 0.0537109375, + 0.037109375, + -0.0072021484375, + -0.050537109375, + -0.029541015625, + 0.01031494140625, + -0.059326171875, + -0.0302734375, + -0.0098876953125, + 0.00836181640625, + 0.02099609375, + 0.0004825592041015625, + -0.0159912109375, + 0.0010986328125, + 0.007415771484375, + -0.0186767578125, + -0.05126953125, + -0.040771484375, + 0.00165557861328125, + 0.01611328125, + 0.00836181640625, + 0.0272216796875, + 0.0264892578125, + 0.019287109375, + 0.016845703125, + -0.0260009765625, + 0.027099609375, + -0.0081787109375, + -0.020263671875, + -0.0016632080078125, + -0.07958984375, + -0.0164794921875, + -0.050048828125, + 0.0712890625, + 0.025146484375, + -0.0322265625, + 0.0308837890625, + 0.0064697265625, + 0.03466796875, + -0.03759765625, + -0.0035400390625, + 0.007720947265625, + 0.060546875, + -0.0135498046875, + -0.0020904541015625, + 0.0036773681640625, + 0.0093994140625, + 0.033447265625, + 0.00164794921875, + -0.0022430419921875, + 0.01025390625, + 0.05029296875, + -0.021484375, + 0.0390625, + -0.05615234375, + -0.02685546875, + -0.01507568359375, + 0.005950927734375, + -0.0252685546875, + -0.064453125, + 0.01806640625, + -0.0186767578125, + 0.039794921875, + 0.061279296875, + 0.03515625, + -0.01092529296875, + -0.033935546875, + -0.0196533203125, + 0.054931640625, + 0.01446533203125, + 0.025390625, + -0.00250244140625, + 0.024658203125, + 0.05078125, + 0.01080322265625, + 0.03271484375, + -0.021484375, + -0.021240234375, + -0.0272216796875, + -0.041748046875, + 0.009765625, + 0.0986328125, + -0.01611328125, + 0.029052734375, + 0.0380859375, + 0.027099609375, + -0.017333984375, + 0.026611328125, + -0.0284423828125, + 0.0147705078125, + 0.012939453125, + 0.033203125, + -0.0247802734375, + -0.01239013671875, + 0.0098876953125, + 0.036376953125, + 0.0299072265625, + 0.033447265625, + 0.003326416015625, + 0.01263427734375, + -0.00433349609375, + 0.033203125, + -0.00982666015625, + 0.01416015625, + -0.0247802734375, + -0.00075531005859375, + 0.022216796875, + -0.00160980224609375, + 0.02587890625, + -0.00080108642578125, + 0.006103515625, + -0.0284423828125, + 0.0159912109375, + 0.01373291015625, + 0.03955078125, + 0.059814453125, + 0.01385498046875, + -0.031494140625, + -0.021240234375, + 0.0040283203125, + -0.08203125, + 0.0111083984375, + 0.01287841796875, + -0.034912109375, + -0.033447265625, + 0.004547119140625, + -0.01123046875, + -0.0194091796875, + -0.00982666015625, + -0.04296875, + 0.0537109375, + -0.0086669921875, + 0.0289306640625, + 0.061279296875, + 0.0308837890625, + 0.0235595703125, + 0.0244140625, + 0.005279541015625, + -0.01324462890625, + 0.01171875, + -0.00830078125, + -0.04931640625, + 0.0016632080078125, + 0.005096435546875, + -0.0089111328125, + 0.033447265625, + -0.00677490234375, + -0.0106201171875, + -0.01025390625, + -0.00799560546875, + 0.010498046875, + -0.00347900390625, + 0.00823974609375, + 0.0269775390625, + -0.042236328125, + -0.01239013671875, + 0.059326171875, + 0.01019287109375, + 0.022705078125, + 0.0220947265625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 17.09563000000003, + "queue_ms": 1.5441620000018474, + "tokenization_ms": 0.017890999998826373, + "inference_ms": 15.401804999996216, + "postprocessing_ms": null + } + }, + { + "id": "chunk-3", + "dense": [ + -0.0115966796875, + 0.017333984375, + -0.035888671875, + 0.0142822265625, + -0.00628662109375, + 0.00982666015625, + 0.0030975341796875, + 0.031005859375, + -0.064453125, + 0.0257568359375, + 0.048828125, + 0.002197265625, + 0.007171630859375, + 0.0189208984375, + 0.0159912109375, + -0.036376953125, + 0.0223388671875, + -0.00157928466796875, + -0.0245361328125, + 0.008544921875, + -0.037109375, + -0.0107421875, + 0.042724609375, + 0.033203125, + -0.01806640625, + 0.01190185546875, + 0.0003719329833984375, + -0.004974365234375, + 0.0257568359375, + -0.0419921875, + -0.00640869140625, + 0.00457763671875, + 0.0751953125, + -0.0164794921875, + -0.048828125, + -0.04736328125, + -0.00225830078125, + 0.007476806640625, + -0.0673828125, + 0.037109375, + 0.025634765625, + 0.01190185546875, + 0.006103515625, + -0.02197265625, + 0.021728515625, + -0.01104736328125, + 0.0137939453125, + -0.003662109375, + 0.0135498046875, + -0.032470703125, + -0.007354736328125, + -0.0244140625, + 0.0546875, + -0.06640625, + -0.02978515625, + 0.0069580078125, + -0.029296875, + -0.0252685546875, + -0.06396484375, + 0.02587890625, + -0.0289306640625, + 0.0252685546875, + -0.057373046875, + -0.0279541015625, + 0.056640625, + 0.07568359375, + 0.0118408203125, + -0.029052734375, + -0.0036773681640625, + -0.0291748046875, + 0.0146484375, + -0.00115966796875, + -0.020263671875, + -0.024169921875, + -0.052490234375, + 0.0185546875, + -0.01324462890625, + 0.0014190673828125, + -0.017822265625, + 0.0284423828125, + 0.0279541015625, + -0.0247802734375, + 0.01153564453125, + 0.033203125, + -0.048583984375, + 0.07666015625, + 0.02734375, + -0.0211181640625, + 0.010009765625, + -0.0291748046875, + 0.0213623046875, + -0.0030975341796875, + 0.0203857421875, + -0.020263671875, + 0.021728515625, + -0.0277099609375, + -0.02783203125, + 0.0113525390625, + 0.04296875, + 0.00653076171875, + 0.04833984375, + 0.00909423828125, + 0.0279541015625, + -0.0238037109375, + 0.00469970703125, + -0.03564453125, + 0.0224609375, + 0.0223388671875, + -0.013427734375, + 0.0159912109375, + -0.0079345703125, + 0.04345703125, + 0.004119873046875, + -0.0289306640625, + -0.0032806396484375, + -0.0004024505615234375, + -0.0030517578125, + -0.056640625, + 0.0027618408203125, + -0.04052734375, + 0.043212890625, + -0.00653076171875, + 0.037841796875, + -0.06201171875, + -0.0068359375, + -0.0302734375, + 0.0294189453125, + -0.007476806640625, + -0.007110595703125, + 0.01385498046875, + 0.0281982421875, + -0.004058837890625, + -0.027587890625, + 0.01470947265625, + -0.016845703125, + -0.037109375, + 0.02490234375, + -0.0101318359375, + 0.0281982421875, + -0.0263671875, + 0.033203125, + -0.03076171875, + 0.004669189453125, + -0.05224609375, + 0.0111083984375, + 0.0054931640625, + -0.037109375, + -0.01068115234375, + 0.0220947265625, + -0.00011968612670898438, + -0.05859375, + 0.00982666015625, + 0.0184326171875, + -0.007598876953125, + 0.0128173828125, + -0.0390625, + -0.007232666015625, + -0.0196533203125, + 0.0107421875, + 0.0091552734375, + -0.018798828125, + 0.04638671875, + -0.0272216796875, + -0.058837890625, + 0.006744384765625, + 0.0166015625, + -0.0004634857177734375, + 0.028564453125, + -0.00933837890625, + -0.029052734375, + 0.015625, + -0.0235595703125, + -0.009765625, + -0.0546875, + -0.0211181640625, + 0.01324462890625, + 0.0242919921875, + 0.02294921875, + 0.0498046875, + -0.0615234375, + -0.03564453125, + -0.00933837890625, + 0.0203857421875, + -0.0211181640625, + 0.031494140625, + -0.03076171875, + 0.00823974609375, + -0.006072998046875, + 0.0172119140625, + 0.01519775390625, + 0.0135498046875, + 0.01123046875, + 0.00164794921875, + 0.0244140625, + 0.01116943359375, + 0.0029296875, + -0.003448486328125, + -0.01324462890625, + -0.0198974609375, + 0.031494140625, + 0.00628662109375, + -0.00830078125, + -0.00811767578125, + -0.00170135498046875, + -0.01007080078125, + 0.00592041015625, + -0.0115966796875, + -0.0164794921875, + 0.0009307861328125, + -0.01019287109375, + 0.0084228515625, + 0.032470703125, + -0.0238037109375, + 0.0234375, + -0.003021240234375, + 0.0264892578125, + 0.0263671875, + -0.01397705078125, + 0.0091552734375, + -0.01385498046875, + -0.0216064453125, + -0.00183868408203125, + -0.01422119140625, + 0.006072998046875, + 0.07666015625, + -0.0120849609375, + -0.017578125, + -0.005279541015625, + 0.007598876953125, + -0.062255859375, + -0.0029449462890625, + -0.0016326904296875, + -0.00177764892578125, + -0.0067138671875, + 0.08935546875, + 0.053955078125, + 0.033203125, + 0.01611328125, + 0.025146484375, + 0.05126953125, + -0.035888671875, + -0.019287109375, + 0.006378173828125, + 0.032470703125, + -0.044189453125, + -0.020751953125, + 0.0115966796875, + 0.01953125, + -0.0125732421875, + 0.004302978515625, + -0.005706787109375, + -0.00250244140625, + 0.0157470703125, + 0.0120849609375, + -0.00433349609375, + 0.0111083984375, + -0.0162353515625, + -0.037109375, + -0.00537109375, + -0.048095703125, + 0.020263671875, + 0.00311279296875, + -0.05517578125, + 0.01531982421875, + 0.00213623046875, + 0.011474609375, + -0.0115966796875, + -0.0302734375, + 0.00579833984375, + -0.0294189453125, + 0.026611328125, + -0.0244140625, + -0.0074462890625, + 0.01556396484375, + 0.003936767578125, + 0.052490234375, + 0.0031890869140625, + -0.02587890625, + 0.04052734375, + 0.00372314453125, + 0.06884765625, + 0.040771484375, + 0.04443359375, + -0.0245361328125, + 0.027587890625, + 0.0198974609375, + -0.0302734375, + -0.06982421875, + 0.008544921875, + -0.054443359375, + 0.00286865234375, + -0.0224609375, + 0.08251953125, + 0.02001953125, + -0.034912109375, + -0.03515625, + 0.006622314453125, + -0.146484375, + -0.0159912109375, + -0.03857421875, + -0.05517578125, + 0.01055908203125, + 0.03564453125, + -0.0277099609375, + -0.03076171875, + -0.05322265625, + -0.022216796875, + -0.00787353515625, + -0.06982421875, + -0.0115966796875, + 0.0263671875, + -0.00274658203125, + -0.006439208984375, + -0.0286865234375, + -0.0198974609375, + 0.002899169921875, + -0.037109375, + -0.0172119140625, + -0.006561279296875, + 0.01513671875, + 0.0012054443359375, + 0.00469970703125, + -0.005584716796875, + 0.032470703125, + 0.0089111328125, + -0.05517578125, + -0.0208740234375, + -0.01708984375, + -0.018310546875, + -0.0111083984375, + 0.0289306640625, + 0.00064849853515625, + 0.0341796875, + 0.0546875, + -0.046875, + -0.00106048583984375, + -0.00010395050048828125, + 0.014892578125, + 0.036865234375, + 0.00628662109375, + 0.01385498046875, + 0.007354736328125, + -0.061279296875, + 0.050537109375, + 0.01361083984375, + -0.02197265625, + -0.0181884765625, + -0.0240478515625, + -0.0084228515625, + -0.0311279296875, + 0.0135498046875, + 0.018310546875, + 0.0113525390625, + -0.0115966796875, + 0.0281982421875, + -0.044677734375, + 0.05810546875, + -0.006622314453125, + -0.08642578125, + -0.0036773681640625, + -0.002349853515625, + -0.0284423828125, + -0.023193359375, + 0.03466796875, + -0.0283203125, + 0.00311279296875, + -0.032470703125, + -0.00144195556640625, + 0.04296875, + 0.04052734375, + -0.01416015625, + -0.00150299072265625, + 0.035400390625, + -0.0087890625, + -0.0191650390625, + -0.007659912109375, + -0.08349609375, + -0.04150390625, + 0.0341796875, + -0.052490234375, + 0.034423828125, + -0.03173828125, + 0.0296630859375, + 0.01177978515625, + 0.00982666015625, + 0.0252685546875, + 0.185546875, + 0.01251220703125, + 0.0220947265625, + -0.039794921875, + 0.01806640625, + -0.0086669921875, + 0.010498046875, + -0.0037841796875, + -0.0284423828125, + -0.045654296875, + 0.01171875, + 0.0228271484375, + 0.027587890625, + 0.007232666015625, + -0.007080078125, + -0.026123046875, + -0.06787109375, + -0.031982421875, + 0.0927734375, + -0.015625, + 0.0247802734375, + 0.000881195068359375, + 0.0390625, + 0.00823974609375, + -0.0255126953125, + -0.048828125, + -0.013916015625, + 0.06591796875, + -0.0069580078125, + 0.032470703125, + -0.01226806640625, + -0.0113525390625, + 0.01019287109375, + 0.01611328125, + -0.038818359375, + 0.0263671875, + -0.004547119140625, + 0.0025787353515625, + 0.005035400390625, + -0.005157470703125, + 0.03515625, + -0.0162353515625, + -0.02734375, + -0.000698089599609375, + 0.000484466552734375, + -0.058349609375, + -7.343292236328125e-05, + 0.03857421875, + 0.00830078125, + 0.00927734375, + 0.0118408203125, + -0.01141357421875, + -0.0166015625, + -0.0252685546875, + -0.035400390625, + -0.0299072265625, + -0.03369140625, + 0.004913330078125, + -0.0272216796875, + 0.0419921875, + 0.0021820068359375, + 0.0302734375, + -0.06201171875, + 0.0023651123046875, + -0.0595703125, + -0.00250244140625, + -0.032470703125, + -0.032470703125, + 0.04150390625, + 0.01177978515625, + 0.010986328125, + -0.044189453125, + 0.01043701171875, + 0.0019683837890625, + 0.04150390625, + -0.030029296875, + 0.003265380859375, + 0.057373046875, + 0.00830078125, + -0.037353515625, + 0.0198974609375, + 0.01416015625, + 0.02001953125, + 0.01141357421875, + 0.021484375, + -0.01123046875, + -0.014892578125, + 0.031982421875, + -0.048095703125, + -0.047119140625, + -0.039306640625, + -0.00518798828125, + -0.039306640625, + 0.01513671875, + -0.032470703125, + 0.006927490234375, + -0.0023345947265625, + 0.00885009765625, + -0.032958984375, + -0.059326171875, + -0.0294189453125, + 0.0103759765625, + -0.005035400390625, + -0.055419921875, + 0.06982421875, + -0.01275634765625, + 0.02978515625, + -0.01171875, + -0.034912109375, + -0.0458984375, + 0.0224609375, + 0.016845703125, + -0.00927734375, + -0.01556396484375, + 0.0223388671875, + 0.0322265625, + 0.000499725341796875, + 0.0257568359375, + 0.022705078125, + 0.039306640625, + 0.0069580078125, + -0.0184326171875, + -0.01068115234375, + 0.0390625, + -0.017578125, + 0.047119140625, + -0.039794921875, + -0.00021839141845703125, + -0.002288818359375, + -0.017578125, + -0.0142822265625, + -0.010986328125, + -0.0908203125, + -0.00130462646484375, + 0.06591796875, + 0.025634765625, + -0.052978515625, + 0.002685546875, + -0.021484375, + 0.0003814697265625, + -0.02685546875, + -0.0054931640625, + -0.021728515625, + 0.01043701171875, + -0.0228271484375, + 0.003448486328125, + -0.07177734375, + -0.017578125, + -0.0250244140625, + 0.03564453125, + 0.056396484375, + 0.026611328125, + -0.0224609375, + -0.029052734375, + -0.025146484375, + 0.00860595703125, + -0.0078125, + 0.0216064453125, + 0.0240478515625, + -0.037109375, + 0.026611328125, + 0.01202392578125, + 0.0185546875, + 0.051025390625, + 0.022216796875, + 0.033447265625, + 0.0322265625, + 0.0458984375, + -0.0234375, + -0.045654296875, + 0.025146484375, + -0.009765625, + -0.025634765625, + 0.09765625, + -0.001617431640625, + 0.00628662109375, + 0.001434326171875, + 0.01513671875, + 0.0252685546875, + 0.00060272216796875, + 0.03173828125, + 0.00457763671875, + -0.048095703125, + 0.0390625, + 0.01123046875, + -0.02978515625, + -0.0771484375, + -0.0283203125, + 0.0048828125, + -0.00421142578125, + -0.0228271484375, + 0.083984375, + -0.033447265625, + -0.0240478515625, + 0.005401611328125, + 0.0185546875, + -0.01385498046875, + 0.0255126953125, + 0.0234375, + -0.032958984375, + 0.032958984375, + -0.0201416015625, + -0.0238037109375, + 0.0234375, + 0.021484375, + -0.004669189453125, + 0.003936767578125, + 0.031494140625, + -0.0390625, + -0.01275634765625, + 0.0289306640625, + -0.004669189453125, + 0.00750732421875, + -0.0216064453125, + -0.00982666015625, + 0.00823974609375, + 0.07275390625, + 0.04345703125, + -0.0213623046875, + -0.05859375, + -0.002716064453125, + -0.019287109375, + 0.046875, + -0.04443359375, + -0.037841796875, + 0.037353515625, + -0.0169677734375, + 0.0146484375, + 0.068359375, + 0.003387451171875, + 0.0036163330078125, + 0.004638671875, + 0.060546875, + -0.0240478515625, + 0.004638671875, + -0.00133514404296875, + 0.04638671875, + 0.044189453125, + -0.00689697265625, + -0.032470703125, + 0.028564453125, + -0.0277099609375, + -0.00103759765625, + -0.0107421875, + -0.0213623046875, + 0.0186767578125, + 0.00811767578125, + 0.005157470703125, + 0.0673828125, + 0.04052734375, + -0.01177978515625, + -0.005889892578125, + -0.00732421875, + -0.00897216796875, + 0.0257568359375, + -0.00970458984375, + -0.0859375, + 0.0030364990234375, + -0.07177734375, + -0.008056640625, + -0.0118408203125, + -0.00011014938354492188, + 0.0252685546875, + -0.0245361328125, + 0.0032806396484375, + 0.00653076171875, + 0.0263671875, + 0.0238037109375, + -0.0201416015625, + 0.0064697265625, + 0.014892578125, + 0.010986328125, + -0.0419921875, + -0.038330078125, + 0.05029296875, + -0.0294189453125, + -0.0002994537353515625, + 0.0198974609375, + 0.0169677734375, + 0.02001953125, + -0.02294921875, + -0.0167236328125, + 0.00390625, + 0.01104736328125, + 0.00213623046875, + 0.048583984375, + -0.00555419921875, + 0.017578125, + -0.020751953125, + -0.023193359375, + 0.025634765625, + -0.0040283203125, + -0.055908203125, + 0.040283203125, + -0.040771484375, + -0.007171630859375, + -0.0150146484375, + 0.000518798828125, + -0.040283203125, + 0.01214599609375, + -0.010009765625, + -0.011474609375, + -0.018310546875, + -0.04541015625, + -6.961822509765625e-05, + -0.032470703125, + 0.025146484375, + -0.03564453125, + -0.01708984375, + 0.043212890625, + 0.000591278076171875, + -0.0615234375, + -0.017578125, + 0.0177001953125, + -0.0169677734375, + -0.012939453125, + 0.04443359375, + 0.03515625, + 0.04541015625, + 0.004974365234375, + 0.039306640625, + 0.01953125, + -0.0181884765625, + 0.006011962890625, + 0.0118408203125, + 0.0419921875, + 0.047607421875, + 0.0262451171875, + -0.03564453125, + -0.0299072265625, + -0.064453125, + -0.00185394287109375, + 0.000518798828125, + -0.012451171875, + 0.08984375, + -0.00885009765625, + -0.0015716552734375, + 0.0184326171875, + 0.005889892578125, + -0.02001953125, + -0.0185546875, + -0.07666015625, + 0.052734375, + 0.0128173828125, + -0.0045166015625, + -0.02734375, + -0.01239013671875, + 0.0169677734375, + 0.021728515625, + 0.00872802734375, + -0.000247955322265625, + 0.047607421875, + -0.00250244140625, + -0.05126953125, + -0.047119140625, + 0.07275390625, + 0.0306396484375, + 0.04541015625, + 0.0031585693359375, + 0.0322265625, + -0.01251220703125, + 0.0252685546875, + -0.02490234375, + 0.0031280517578125, + 0.0174560546875, + -0.01116943359375, + -0.0272216796875, + 0.00083160400390625, + 0.00726318359375, + -0.00457763671875, + -0.023681640625, + 0.0057373046875, + -0.0234375, + -0.0084228515625, + -0.037109375, + 0.004638671875, + -0.01519775390625, + 0.01434326171875, + 0.027587890625, + -0.0169677734375, + -0.0341796875, + 0.00653076171875, + -0.0146484375, + -0.01202392578125, + 0.0240478515625, + 0.014892578125, + 0.01007080078125, + 0.001861572265625, + 0.021484375, + 0.068359375, + -0.0186767578125, + 0.054443359375, + -0.031982421875, + -0.046142578125, + -0.1455078125, + -0.024169921875, + -0.033203125, + -0.00567626953125, + -0.03857421875, + -0.0020599365234375, + 0.0111083984375, + -0.0201416015625, + 0.006256103515625, + -0.04052734375, + 0.0022430419921875, + 0.052978515625, + 0.0211181640625, + -0.006622314453125, + -0.036376953125, + 0.04541015625, + 0.006256103515625, + -0.0108642578125, + -0.00543212890625, + 0.0179443359375, + -0.0269775390625, + 0.00970458984375, + -0.0220947265625, + -0.00927734375, + -0.01416015625, + 0.023681640625, + -0.005035400390625, + -0.0146484375, + -0.03857421875, + 0.036376953125, + -0.006591796875, + -0.0269775390625, + 0.0289306640625, + 0.056396484375, + -0.005859375, + 0.0113525390625, + 0.01055908203125, + -0.042236328125, + -0.04345703125, + -0.01446533203125, + -0.023681640625, + 0.0302734375, + -0.00823974609375, + 0.0546875, + 0.0361328125, + -0.041259765625, + -0.0037841796875, + -0.015380859375, + -0.061279296875, + 0.005950927734375, + -0.068359375, + 0.01104736328125, + -0.030517578125, + -0.00518798828125, + 0.02490234375, + 0.0244140625, + -0.0439453125, + 0.030029296875, + -0.0223388671875, + 0.07958984375, + 0.0185546875, + -0.02197265625, + -0.035888671875, + -0.05126953125, + -0.0034637451171875, + -0.00262451171875, + 0.058837890625, + 0.01104736328125, + 0.00017261505126953125, + -0.0208740234375, + -0.00043487548828125, + -0.00628662109375, + 0.021484375, + -0.06689453125, + -0.01287841796875, + 0.002685546875, + 0.0400390625, + 0.033447265625, + -0.0030975341796875, + -0.03076171875, + -0.0146484375, + 0.0086669921875, + -0.0269775390625, + -0.00168609619140625, + 0.10498046875, + 0.0146484375, + -0.01171875, + 0.021728515625, + -0.027099609375, + -0.00799560546875, + -0.051513671875, + -0.0166015625, + -0.0230712890625, + 0.01416015625, + -0.000446319580078125, + -0.000232696533203125, + -0.059814453125, + 0.03125, + 0.003387451171875, + -0.0291748046875, + -0.01416015625, + 0.000850677490234375, + -0.005889892578125, + -0.0064697265625, + -0.0341796875, + 0.087890625, + -0.0419921875, + -0.0048828125, + -0.029052734375, + -0.00860595703125, + -0.01519775390625, + -0.00640869140625, + 0.00177764892578125, + 0.01068115234375, + -0.07763671875, + 0.003143310546875, + 0.0264892578125, + 0.03369140625, + -0.0086669921875, + 0.015869140625, + 0.01263427734375, + -0.048095703125, + 0.005767822265625, + -0.041259765625, + 0.01483154296875, + -0.01214599609375, + 0.034423828125, + 0.034912109375, + 0.03125, + 0.040771484375, + 0.049072265625, + -0.00787353515625, + 0.0244140625, + 0.0034637451171875, + 0.0296630859375, + 0.044677734375, + -0.0498046875, + 0.0390625, + -0.01312255859375, + -0.005157470703125, + 0.01409912109375, + -0.03369140625, + 0.0028839111328125, + 0.0036773681640625, + -0.002288818359375, + 0.01361083984375, + 0.015380859375, + -0.00927734375, + -0.0189208984375, + 0.006622314453125, + -0.000881195068359375, + -0.01177978515625, + 0.01531982421875, + -0.01068115234375, + -0.02001953125, + -0.0189208984375, + 0.01611328125, + -0.03564453125, + -0.015625, + 0.042236328125, + -0.00110626220703125, + -0.044921875, + -0.0091552734375, + -0.0052490234375, + -0.037353515625, + 0.038330078125, + 0.016845703125, + -0.00665283203125, + 0.0172119140625, + 0.010498046875, + 0.024169921875, + 0.034423828125, + -0.0303955078125, + 0.01031494140625, + 0.0174560546875, + -0.01068115234375, + 0.017822265625, + -0.04443359375, + 0.057861328125, + 0.0181884765625, + 0.03271484375, + -0.007049560546875, + 0.01202392578125, + 0.00421142578125, + -0.056396484375, + 0.02197265625, + 0.0206298828125, + 0.0048828125, + -0.0303955078125, + 0.019287109375, + -0.0048828125, + 0.019287109375, + -0.0257568359375, + 0.049072265625, + 0.00970458984375, + 0.07568359375, + -0.000972747802734375, + 0.027587890625, + 0.01348876953125, + 0.0869140625, + 0.002899169921875, + -0.0036163330078125, + -0.01123046875, + 0.033447265625, + -0.026611328125, + -0.004608154296875, + 0.049560546875, + -0.0296630859375, + -0.0311279296875, + 0.0230712890625, + -0.00811767578125, + -0.00933837890625, + -0.0078125, + 0.04443359375, + -0.0027618408203125, + 0.0015106201171875, + 0.03515625, + 0.00152587890625, + 0.00830078125, + 0.015869140625, + -0.006439208984375, + 0.01348876953125, + 0.006195068359375, + -0.006561279296875, + -0.01239013671875, + -0.015869140625, + -0.002227783203125, + -0.00213623046875, + -0.007568359375, + 0.0294189453125, + 0.049072265625, + -0.006744384765625, + -0.007415771484375, + 0.022705078125, + -0.0002422332763671875, + -0.00909423828125, + -0.007293701171875, + -0.035888671875, + -0.0238037109375, + -0.019287109375, + 0.10009765625, + -0.055419921875, + -0.0240478515625, + -0.032470703125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 14.464415999995595, + "queue_ms": 0.06048100000555223, + "tokenization_ms": 0.015709999999558022, + "inference_ms": 14.278551999993283, + "postprocessing_ms": null + } + }, + { + "id": "chunk-4", + "dense": [ + -0.0281982421875, + 0.01123046875, + -0.0186767578125, + 0.0380859375, + -0.01043701171875, + -0.0233154296875, + 0.0166015625, + 0.010009765625, + -0.03564453125, + 0.00872802734375, + 0.003204345703125, + 0.00396728515625, + -0.017333984375, + 0.0299072265625, + 0.00537109375, + -0.004913330078125, + 0.0014495849609375, + -0.0167236328125, + 0.0228271484375, + -0.0089111328125, + -0.0498046875, + -0.042724609375, + 0.0296630859375, + -0.0203857421875, + 0.0228271484375, + 0.0247802734375, + 0.0155029296875, + 0.0040283203125, + 0.0184326171875, + 0.0130615234375, + -0.0272216796875, + 0.0291748046875, + 0.00634765625, + -0.01129150390625, + -0.002197265625, + -0.045166015625, + 0.0277099609375, + -0.01104736328125, + -0.048095703125, + 0.052001953125, + -0.0034027099609375, + -0.02001953125, + 0.0152587890625, + -0.01611328125, + 0.034423828125, + -0.04248046875, + -0.03955078125, + -0.021728515625, + -0.01092529296875, + -0.03857421875, + -0.0146484375, + -0.025634765625, + 0.076171875, + -0.0220947265625, + 0.00011587142944335938, + 0.03564453125, + -0.059814453125, + -0.0654296875, + -0.05078125, + 0.03466796875, + -0.04150390625, + 0.038330078125, + -0.07470703125, + -0.037353515625, + -0.0111083984375, + 0.0673828125, + 0.00079345703125, + 0.0208740234375, + 0.0174560546875, + -0.005706787109375, + -0.006011962890625, + 0.042724609375, + -0.0224609375, + 0.0115966796875, + -0.08056640625, + -0.0250244140625, + 0.031982421875, + -0.0311279296875, + 0.060546875, + 0.0028076171875, + -0.016845703125, + 0.038818359375, + -0.036376953125, + -0.01904296875, + -0.0302734375, + -0.0024261474609375, + -0.0135498046875, + 0.033203125, + -0.0400390625, + 0.0162353515625, + 0.0084228515625, + -0.004058837890625, + 0.0169677734375, + -0.01708984375, + 0.00994873046875, + -0.060546875, + -0.032958984375, + -0.005462646484375, + 0.0203857421875, + -0.0032196044921875, + -0.011474609375, + 0.01043701171875, + 0.0673828125, + 0.007171630859375, + -0.020751953125, + 0.035888671875, + -0.0283203125, + 0.0244140625, + 0.00115966796875, + -0.0174560546875, + -0.03271484375, + -0.0174560546875, + 0.0186767578125, + 0.028564453125, + -0.00555419921875, + -0.006103515625, + -0.03076171875, + -0.004486083984375, + 0.016845703125, + -0.036376953125, + 0.021728515625, + -0.01202392578125, + 0.00445556640625, + -0.006103515625, + -0.03466796875, + -0.041748046875, + 0.039306640625, + -0.0262451171875, + -0.017333984375, + 0.03515625, + 0.0218505859375, + -0.014892578125, + -0.033935546875, + 0.0040283203125, + -0.05126953125, + -0.06787109375, + 0.01458740234375, + 0.0263671875, + 0.0341796875, + -0.044921875, + 0.0272216796875, + -0.01300048828125, + -0.02197265625, + -0.0279541015625, + 0.054443359375, + -0.030517578125, + 0.04150390625, + -0.01214599609375, + 0.033935546875, + -0.010986328125, + 0.03271484375, + 0.01165771484375, + 0.0120849609375, + -0.0322265625, + 0.0030364990234375, + -0.04541015625, + 0.007568359375, + 0.0263671875, + 0.0196533203125, + 0.0478515625, + 0.0218505859375, + 0.051025390625, + 0.006103515625, + -0.0634765625, + 0.01092529296875, + -0.0028533935546875, + 0.00555419921875, + 0.022705078125, + -0.0024261474609375, + -0.015869140625, + 0.0203857421875, + 0.044189453125, + 0.032958984375, + -0.0096435546875, + -0.0284423828125, + 0.0150146484375, + 0.04541015625, + -0.01019287109375, + 0.0172119140625, + -0.0264892578125, + -0.0096435546875, + -0.020751953125, + -0.01129150390625, + -0.00390625, + -0.0028533935546875, + 0.0177001953125, + 0.016357421875, + 0.004119873046875, + 0.03955078125, + 0.025390625, + 0.02001953125, + 0.044921875, + -0.031494140625, + 0.034423828125, + 0.0186767578125, + 0.007232666015625, + -0.00933837890625, + 0.003662109375, + -0.0228271484375, + 0.01007080078125, + -0.0030364990234375, + 0.02197265625, + 0.0089111328125, + -0.04248046875, + -0.054931640625, + 0.00653076171875, + -0.0272216796875, + 0.052978515625, + -0.036376953125, + -0.04248046875, + -0.02197265625, + 0.00439453125, + -0.021728515625, + 0.0244140625, + -0.025146484375, + 0.019287109375, + -0.0007781982421875, + -0.0240478515625, + 0.0322265625, + -0.0177001953125, + 0.00689697265625, + 0.008544921875, + 0.030029296875, + 0.0135498046875, + -0.03369140625, + -0.04736328125, + -0.00057220458984375, + -0.021484375, + 0.0380859375, + -0.0703125, + 0.0185546875, + 0.0279541015625, + 0.007476806640625, + -0.0240478515625, + 0.00750732421875, + 0.0284423828125, + -0.0004425048828125, + 0.004425048828125, + 0.0341796875, + 0.0125732421875, + -0.0205078125, + -0.006256103515625, + 0.00136566162109375, + 0.024169921875, + 0.006439208984375, + 0.01068115234375, + -0.01251220703125, + 0.0281982421875, + -0.0244140625, + -0.0208740234375, + 0.0303955078125, + 0.014892578125, + -0.0196533203125, + 0.0400390625, + 0.001251220703125, + 0.0089111328125, + 0.021484375, + 0.00347900390625, + 0.005706787109375, + -0.037353515625, + 0.0277099609375, + 0.0218505859375, + -8.535385131835938e-05, + 0.0291748046875, + 0.0220947265625, + 0.00872802734375, + -0.03515625, + 0.004669189453125, + 0.0228271484375, + 0.014892578125, + 0.041748046875, + -0.03369140625, + -0.038330078125, + 0.02490234375, + -0.00103759765625, + 0.076171875, + -0.0224609375, + -0.00726318359375, + 0.072265625, + 0.006927490234375, + 0.0361328125, + 0.0205078125, + 0.0157470703125, + -0.045654296875, + 0.0096435546875, + 0.0152587890625, + -0.0537109375, + -0.033447265625, + 0.01513671875, + -0.055419921875, + -0.002899169921875, + 0.01531982421875, + 0.08447265625, + -0.0220947265625, + -0.037109375, + 0.0179443359375, + -0.0247802734375, + -0.140625, + -0.03369140625, + -0.010009765625, + -0.06298828125, + 0.00762939453125, + 0.011474609375, + -0.0164794921875, + -0.042236328125, + -0.03125, + -0.010986328125, + 0.00885009765625, + -0.07177734375, + 0.006378173828125, + 0.027587890625, + 0.05029296875, + -0.0123291015625, + -0.03515625, + 0.02392578125, + 0.03369140625, + -0.0380859375, + -0.05517578125, + -0.033203125, + 0.036865234375, + 0.00250244140625, + 0.00762939453125, + 0.007080078125, + 0.0250244140625, + 0.00775146484375, + -0.01611328125, + -0.01220703125, + -0.024658203125, + 0.0250244140625, + 0.0169677734375, + 0.0220947265625, + 0.044189453125, + 0.01373291015625, + 0.0235595703125, + -0.00958251953125, + 0.0240478515625, + -0.002410888671875, + 0.06298828125, + 0.0123291015625, + -0.0152587890625, + 0.007659912109375, + -0.0185546875, + -0.039794921875, + 0.04541015625, + 0.029296875, + -0.052490234375, + -0.00909423828125, + -0.0022430419921875, + -0.016845703125, + -0.046875, + 0.02685546875, + -0.054443359375, + 0.0106201171875, + 0.0023193359375, + 0.052001953125, + 0.002655029296875, + 0.046630859375, + 0.004486083984375, + -0.05908203125, + 5.14984130859375e-05, + -0.006439208984375, + -0.033203125, + -0.0262451171875, + 0.0047607421875, + -0.035888671875, + 0.0084228515625, + -0.046875, + -0.0189208984375, + -0.01446533203125, + -0.0263671875, + -0.031982421875, + -0.0341796875, + 0.025390625, + -0.02001953125, + -0.017578125, + -0.0299072265625, + -0.0849609375, + 0.0380859375, + 0.052490234375, + -0.003204345703125, + -0.004547119140625, + -0.042236328125, + -0.0284423828125, + 0.0296630859375, + 0.038330078125, + 0.0306396484375, + 0.2265625, + -0.002288818359375, + 0.00872802734375, + 0.0130615234375, + 0.01025390625, + -0.028564453125, + 0.05126953125, + 0.010009765625, + 0.022216796875, + -0.0157470703125, + -0.0235595703125, + 0.003082275390625, + 0.0198974609375, + -0.021240234375, + -0.01373291015625, + 0.037841796875, + -0.032470703125, + 0.0010986328125, + 0.08837890625, + 0.0181884765625, + 0.040283203125, + 0.00592041015625, + 0.01318359375, + -0.02783203125, + -0.053955078125, + -0.0166015625, + 0.005828857421875, + 0.0169677734375, + -0.0086669921875, + 0.05908203125, + -0.044189453125, + -0.01519775390625, + -0.0164794921875, + -0.041015625, + -0.044921875, + -0.0113525390625, + 0.0322265625, + 0.055908203125, + -0.0262451171875, + 0.029296875, + 0.035400390625, + -0.0234375, + 0.0087890625, + -0.003082275390625, + 0.02001953125, + -0.04345703125, + 0.038818359375, + 0.0205078125, + 0.048828125, + 0.0186767578125, + 0.04833984375, + -0.0194091796875, + 0.00994873046875, + -0.01165771484375, + 0.005889892578125, + -0.03857421875, + -0.0255126953125, + 0.0235595703125, + -0.0263671875, + 0.059814453125, + 0.004486083984375, + 0.005035400390625, + -0.06689453125, + -0.038330078125, + -0.00457763671875, + -0.00110626220703125, + -0.01519775390625, + -0.029052734375, + 0.0206298828125, + 0.0189208984375, + 0.04541015625, + 0.0201416015625, + 0.0262451171875, + -0.04248046875, + 0.035888671875, + -0.0242919921875, + -0.0107421875, + 0.05517578125, + 0.00101470947265625, + 0.040283203125, + -0.01361083984375, + 0.000762939453125, + 0.03955078125, + -0.0147705078125, + 0.01904296875, + -0.04443359375, + 0.00762939453125, + 0.037353515625, + 0.0155029296875, + -0.00469970703125, + -0.06591796875, + -0.004669189453125, + -0.01519775390625, + 0.033935546875, + -0.031494140625, + 0.002655029296875, + 0.01092529296875, + -0.021484375, + -0.048828125, + -0.0198974609375, + -0.0181884765625, + 0.001495361328125, + -0.019287109375, + -0.03515625, + 0.037841796875, + -0.018798828125, + 0.042236328125, + -0.033203125, + -0.01019287109375, + 0.0164794921875, + -0.0296630859375, + 0.024169921875, + -0.0196533203125, + -0.041015625, + 0.036865234375, + 0.00101470947265625, + -0.0274658203125, + 0.0283203125, + 0.01031494140625, + 0.007476806640625, + 0.01373291015625, + -0.023193359375, + -0.0225830078125, + -0.00010728836059570312, + -0.0250244140625, + -0.04541015625, + 0.006439208984375, + 0.013427734375, + -0.007293701171875, + -0.01708984375, + -0.017333984375, + -0.0108642578125, + -0.002471923828125, + -0.01129150390625, + -0.00628662109375, + 0.01434326171875, + -0.04150390625, + -0.002105712890625, + -0.0257568359375, + 0.02392578125, + -0.08349609375, + 0.0341796875, + -0.0218505859375, + -0.0078125, + 0.00274658203125, + -0.0244140625, + 0.004486083984375, + -0.01165771484375, + 0.0184326171875, + -0.00830078125, + -0.0123291015625, + 0.05224609375, + 0.0159912109375, + -0.03662109375, + 0.02685546875, + -0.0322265625, + -0.000637054443359375, + -0.01251220703125, + 0.033935546875, + -0.01519775390625, + 0.0069580078125, + 0.04931640625, + 0.0262451171875, + 0.03515625, + 0.022705078125, + 0.019287109375, + 0.045166015625, + -0.005523681640625, + -0.0047607421875, + -0.01556396484375, + 0.01483154296875, + -0.053466796875, + -0.0162353515625, + 0.032470703125, + 0.05712890625, + 0.03955078125, + -0.06591796875, + 0.01214599609375, + 0.04638671875, + -0.04541015625, + 0.0093994140625, + 0.0286865234375, + -0.0264892578125, + -0.03857421875, + -0.006683349609375, + -0.01177978515625, + -0.0615234375, + -0.0281982421875, + 0.03125, + -0.0004215240478515625, + -0.05029296875, + 0.08154296875, + 0.026123046875, + -0.021728515625, + -0.00102996826171875, + -0.00640869140625, + 0.0220947265625, + -0.0150146484375, + 0.00860595703125, + 0.0036163330078125, + -0.08447265625, + 0.002227783203125, + -0.01275634765625, + 0.01446533203125, + -0.033203125, + -0.0146484375, + -0.0166015625, + 0.03857421875, + -0.02978515625, + -0.0234375, + 0.023193359375, + 0.0087890625, + 0.00012302398681640625, + -0.028564453125, + -0.02294921875, + -0.02197265625, + 0.054443359375, + 0.033203125, + -0.03466796875, + -0.045166015625, + 0.027099609375, + 0.0004444122314453125, + 0.01531982421875, + -0.04541015625, + 0.01904296875, + 0.0322265625, + 0.06640625, + -0.033203125, + 0.053955078125, + -0.04541015625, + -0.00022220611572265625, + -0.00274658203125, + 0.032958984375, + -0.0262451171875, + 0.00274658203125, + -0.00830078125, + 0.0306396484375, + 0.0054931640625, + -0.00994873046875, + -0.017822265625, + 0.052734375, + -0.0135498046875, + 0.0019683837890625, + 0.041015625, + -0.005340576171875, + -0.01458740234375, + -0.03515625, + 0.0184326171875, + 0.0198974609375, + 0.041015625, + 0.006561279296875, + -0.021484375, + 0.003753662109375, + -0.03466796875, + 0.01171875, + 0.030029296875, + -0.0228271484375, + -6.771087646484375e-05, + -0.0262451171875, + -0.0013427734375, + -0.0034027099609375, + 0.029052734375, + 0.0283203125, + 0.005096435546875, + -0.00274658203125, + -0.0341796875, + 0.0341796875, + -0.0341796875, + -0.041259765625, + -0.01251220703125, + -0.0205078125, + -7.295608520507812e-05, + -0.03662109375, + -0.045166015625, + -0.0169677734375, + -0.017333984375, + -0.00020885467529296875, + 0.0169677734375, + -0.0264892578125, + -0.01129150390625, + -0.021728515625, + -0.0289306640625, + -0.023193359375, + -0.0040283203125, + 0.0228271484375, + 0.01611328125, + 0.011474609375, + 0.046875, + -0.006195068359375, + -0.0174560546875, + 0.047119140625, + -0.0302734375, + -0.025146484375, + 0.048095703125, + -0.010009765625, + -0.0257568359375, + 0.01043701171875, + 0.0155029296875, + -0.046875, + 0.0255126953125, + 0.0191650390625, + -0.0036468505859375, + -0.0145263671875, + -0.031494140625, + 0.068359375, + -0.052978515625, + 0.015869140625, + -0.003265380859375, + 0.006805419921875, + 0.04833984375, + -5.507469177246094e-05, + -0.02685546875, + -0.030517578125, + -0.0172119140625, + 0.00494384765625, + -0.0032501220703125, + 0.0380859375, + -0.03662109375, + -0.00311279296875, + 0.0242919921875, + -0.01251220703125, + -0.04638671875, + -0.01202392578125, + -0.019775390625, + -0.0135498046875, + 0.005462646484375, + 0.0181884765625, + 0.0015716552734375, + -0.0146484375, + -0.0211181640625, + -0.059814453125, + -0.0174560546875, + -0.04345703125, + -0.0498046875, + 0.052978515625, + -4.4405460357666016e-06, + 0.0169677734375, + 0.0103759765625, + 0.048095703125, + 0.00019550323486328125, + -0.04931640625, + -0.052734375, + 0.0732421875, + 0.033203125, + -0.01708984375, + -0.006805419921875, + -0.042236328125, + -0.031494140625, + 0.0185546875, + -0.01171875, + -0.015625, + 0.007781982421875, + -0.0137939453125, + -0.0218505859375, + 0.011962890625, + -0.0118408203125, + 0.0247802734375, + 0.01025390625, + 0.03076171875, + 0.03125, + -0.0322265625, + 0.01171875, + -0.025634765625, + -0.01123046875, + 0.0277099609375, + -0.001922607421875, + -0.007080078125, + -0.06884765625, + -0.00653076171875, + 0.00133514404296875, + 0.0262451171875, + 0.003936767578125, + -0.01336669921875, + 0.040283203125, + -0.046630859375, + 0.0234375, + -0.0084228515625, + 0.06787109375, + 0.00982666015625, + -0.0123291015625, + -0.0034332275390625, + -0.0120849609375, + -0.046630859375, + -0.0002880096435546875, + 0.00555419921875, + 0.0162353515625, + 0.0177001953125, + 0.01025390625, + -0.00836181640625, + 0.06201171875, + -0.0032196044921875, + 0.04638671875, + -0.0113525390625, + -0.04443359375, + -0.1455078125, + -0.0120849609375, + -0.00335693359375, + 0.02392578125, + -0.040283203125, + -0.01019287109375, + -0.0242919921875, + -0.023193359375, + -0.016845703125, + -0.00439453125, + -0.00347900390625, + -0.00927734375, + 0.04931640625, + 0.03125, + 0.03759765625, + 0.0213623046875, + -0.0186767578125, + -0.049560546875, + -0.0286865234375, + 0.038818359375, + -0.027587890625, + -0.024169921875, + 0.0106201171875, + 0.04443359375, + 0.0208740234375, + -0.00124359130859375, + -0.0047607421875, + -0.038818359375, + 0.0008392333984375, + 0.0244140625, + -0.0125732421875, + -0.0089111328125, + 0.023193359375, + 0.045654296875, + 0.0198974609375, + 0.00299072265625, + 0.00396728515625, + 0.00494384765625, + -0.040771484375, + -0.01171875, + 0.015380859375, + 0.01806640625, + 0.0113525390625, + 0.0498046875, + -0.01806640625, + 0.01025390625, + 0.031494140625, + -0.0098876953125, + -0.037109375, + 0.00592041015625, + -0.021728515625, + -0.0284423828125, + -0.025146484375, + 0.0274658203125, + 0.004974365234375, + -0.0303955078125, + 0.05419921875, + 0.04296875, + -0.080078125, + -0.00537109375, + -0.03857421875, + 0.006622314453125, + -0.033935546875, + -0.0673828125, + -0.01007080078125, + -0.0022125244140625, + 0.01129150390625, + -0.0019989013671875, + 0.023193359375, + -0.00311279296875, + -0.0218505859375, + 0.01171875, + 0.045654296875, + -0.01556396484375, + -0.021484375, + -0.006683349609375, + 0.03955078125, + 0.00136566162109375, + -0.0035247802734375, + 0.0108642578125, + -0.03369140625, + -0.0281982421875, + -0.0225830078125, + 0.048828125, + 0.042236328125, + 0.0115966796875, + 0.006805419921875, + 0.03662109375, + -0.05224609375, + 0.0004100799560546875, + -0.01019287109375, + -0.025390625, + -0.024169921875, + 0.007598876953125, + -0.01129150390625, + 0.020751953125, + -0.057373046875, + 0.005340576171875, + -0.0155029296875, + 0.00133514404296875, + 0.000873565673828125, + -0.033203125, + 0.017578125, + 0.00604248046875, + 0.0274658203125, + 0.1201171875, + -0.0218505859375, + -0.005035400390625, + -0.01104736328125, + -0.030029296875, + -0.01904296875, + -0.01611328125, + -0.052001953125, + -0.0084228515625, + -0.0849609375, + 0.0303955078125, + 0.0220947265625, + 0.024169921875, + 0.01446533203125, + 0.00970458984375, + 0.07861328125, + 0.0201416015625, + 0.022216796875, + -0.0693359375, + 0.03515625, + -0.0244140625, + 0.06591796875, + 0.01495361328125, + -0.01068115234375, + 0.04443359375, + 0.048828125, + -0.0179443359375, + -0.00787353515625, + 0.0128173828125, + 0.0303955078125, + 0.0235595703125, + -0.04931640625, + 0.03759765625, + -0.05859375, + -0.053466796875, + -0.0174560546875, + -0.034912109375, + -0.0164794921875, + -0.034423828125, + 0.0028076171875, + 0.029541015625, + -0.0029144287109375, + 0.002105712890625, + -0.04296875, + -0.0255126953125, + -0.0220947265625, + -0.017822265625, + 0.037841796875, + 0.056396484375, + 0.037841796875, + -0.0098876953125, + -0.005645751953125, + 0.018310546875, + -0.01007080078125, + 0.02197265625, + 0.01446533203125, + -0.037109375, + -0.01904296875, + -0.0439453125, + -0.0157470703125, + 0.05224609375, + 0.04296875, + 0.004852294921875, + -0.04345703125, + 0.007659912109375, + -0.024658203125, + 0.00116729736328125, + 0.0003681182861328125, + 0.0146484375, + 0.01055908203125, + 0.019775390625, + 0.052001953125, + -0.00738525390625, + 0.055908203125, + 0.00156402587890625, + 0.0185546875, + 0.04833984375, + 0.002777099609375, + 0.01324462890625, + 0.0247802734375, + -0.0029296875, + 0.058349609375, + -0.019775390625, + -0.009521484375, + -0.042236328125, + -0.01904296875, + -0.015380859375, + 0.02783203125, + 0.0260009765625, + 0.030029296875, + 0.02001953125, + -0.032470703125, + 0.0277099609375, + 0.0062255859375, + 0.03955078125, + -0.0037078857421875, + -0.00592041015625, + -0.01214599609375, + 0.01019287109375, + -0.032470703125, + -0.00555419921875, + -0.0184326171875, + -0.03173828125, + -0.024658203125, + -0.05517578125, + -0.004119873046875, + 0.019775390625, + -0.01324462890625, + 0.0069580078125, + -0.022216796875, + 0.0242919921875, + 0.0162353515625, + 0.00787353515625, + -0.022705078125, + 0.0147705078125, + 0.015625, + 0.041015625, + -0.031494140625, + 0.000896453857421875, + 0.030029296875, + -0.00689697265625, + 0.05029296875, + -0.052734375, + -0.003997802734375, + 0.058349609375, + 0.044189453125, + -0.0218505859375, + -0.000926971435546875, + 0.00604248046875, + 0.032470703125, + -0.004852294921875, + 0.0078125, + -0.0703125, + -0.030517578125, + 0.006256103515625, + 0.0478515625, + -0.03271484375, + -0.01202392578125, + 0.0034332275390625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 16.58282000000355, + "queue_ms": 1.730706000003579, + "tokenization_ms": 0.012819999994917453, + "inference_ms": 14.729510999998752, + "postprocessing_ms": null + } + }, + { + "id": "chunk-5", + "dense": [ + -0.0361328125, + -0.0028839111328125, + -0.043212890625, + -0.015380859375, + -0.00927734375, + -0.043212890625, + 0.00018405914306640625, + -0.05224609375, + -0.005462646484375, + 0.0289306640625, + -0.0030059814453125, + -0.015380859375, + 0.04248046875, + 0.005126953125, + -0.004669189453125, + -0.0020751953125, + -0.0196533203125, + -0.0186767578125, + -0.019287109375, + -0.03857421875, + -0.0576171875, + 0.00701904296875, + -0.010009765625, + 0.023193359375, + -0.004425048828125, + 0.04541015625, + -0.01519775390625, + 0.032958984375, + -0.007476806640625, + 0.00732421875, + 0.022216796875, + 0.0142822265625, + 0.034912109375, + -0.031494140625, + 0.0262451171875, + -0.050048828125, + 0.004608154296875, + -0.0067138671875, + -0.05126953125, + 0.0020751953125, + 9.5367431640625e-05, + 0.0167236328125, + 0.0167236328125, + -0.01611328125, + 0.04345703125, + -0.04248046875, + 0.0230712890625, + -0.031005859375, + -0.0303955078125, + -0.036865234375, + -0.00396728515625, + -0.003814697265625, + 0.058837890625, + -0.0272216796875, + 0.014404296875, + 0.004791259765625, + -0.043212890625, + -0.0272216796875, + -0.033203125, + -0.0361328125, + -0.01251220703125, + 0.01171875, + -0.03759765625, + 0.021728515625, + 0.006317138671875, + 0.00848388671875, + 0.026611328125, + 0.01611328125, + -0.0208740234375, + -0.02294921875, + -0.02685546875, + 0.039306640625, + -0.002197265625, + 0.0113525390625, + -0.0556640625, + 0.01116943359375, + -0.007354736328125, + -0.052734375, + 0.007781982421875, + 0.043701171875, + -0.026123046875, + -0.033935546875, + 0.04931640625, + 0.009521484375, + -0.039306640625, + 0.025634765625, + -0.028076171875, + 0.04541015625, + 0.0009918212890625, + -0.0284423828125, + 0.0250244140625, + -0.0184326171875, + -0.0172119140625, + -0.031982421875, + 0.0006103515625, + -0.0262451171875, + 0.023193359375, + 0.0196533203125, + 0.015869140625, + 0.0257568359375, + -0.03369140625, + 0.000240325927734375, + 0.0255126953125, + 0.0390625, + 0.029296875, + -0.00946044921875, + 0.006072998046875, + 0.0078125, + 0.033935546875, + 0.0150146484375, + 0.041259765625, + 0.00927734375, + 0.01458740234375, + -0.0203857421875, + 0.01904296875, + -0.0255126953125, + -0.048095703125, + -0.04345703125, + 0.056396484375, + 0.005767822265625, + 0.0023651123046875, + 0.041015625, + 0.044189453125, + -0.0400390625, + 0.01434326171875, + -0.03564453125, + 0.00787353515625, + 0.0203857421875, + 0.00567626953125, + 0.013427734375, + 0.005401611328125, + 0.052734375, + -0.0311279296875, + 0.0203857421875, + -0.0177001953125, + -0.00151824951171875, + -0.0189208984375, + -0.0035247802734375, + 0.006256103515625, + -0.058837890625, + 0.026123046875, + 0.059814453125, + -0.02490234375, + -0.039306640625, + 0.061279296875, + -0.04833984375, + 0.033447265625, + -0.027587890625, + 0.0098876953125, + -0.03369140625, + 0.01495361328125, + 0.037353515625, + -0.00921630859375, + -0.020263671875, + 0.057373046875, + 0.006439208984375, + -0.037353515625, + 0.01397705078125, + -0.01171875, + 0.009765625, + -0.044677734375, + 0.043212890625, + 0.0120849609375, + -0.06201171875, + 0.043212890625, + -0.0693359375, + 0.0263671875, + 0.03662109375, + -0.00167083740234375, + 0.0081787109375, + -0.004150390625, + -0.0164794921875, + -0.0142822265625, + -0.0016021728515625, + -0.00982666015625, + 0.00860595703125, + 0.06982421875, + -0.0031890869140625, + 0.03955078125, + -0.0390625, + -0.0216064453125, + 0.030029296875, + -0.01275634765625, + -0.0120849609375, + 0.001190185546875, + -0.030517578125, + 0.0299072265625, + -0.041259765625, + 0.00689697265625, + 0.0247802734375, + 0.0128173828125, + -0.01397705078125, + -0.00823974609375, + 0.0498046875, + 0.0106201171875, + 0.043212890625, + -0.01043701171875, + -0.019287109375, + -0.0101318359375, + -0.02099609375, + -0.00897216796875, + 0.00011110305786132812, + 0.0211181640625, + -0.0634765625, + -0.028564453125, + -0.01214599609375, + -0.0074462890625, + -0.033935546875, + -0.0098876953125, + 0.008056640625, + -0.030029296875, + 0.0191650390625, + 0.00933837890625, + 0.01470947265625, + -0.0301513671875, + 0.01055908203125, + 0.0035552978515625, + -0.034912109375, + -0.0079345703125, + -0.024169921875, + -0.00506591796875, + 0.026611328125, + -0.00787353515625, + -0.015625, + 0.033447265625, + 0.005096435546875, + 0.00982666015625, + 0.025390625, + 0.057861328125, + 0.022216796875, + -0.0133056640625, + -0.01251220703125, + -0.005279541015625, + 0.0203857421875, + 0.00244140625, + 0.028076171875, + -0.0018310546875, + 0.037353515625, + 0.0291748046875, + 0.0167236328125, + -0.0069580078125, + -0.025634765625, + 0.08349609375, + -0.009521484375, + -0.01904296875, + 0.02001953125, + 0.0172119140625, + -0.033447265625, + -0.0029754638671875, + 0.007293701171875, + 0.062255859375, + 0.01422119140625, + -0.048828125, + 0.05908203125, + -0.0152587890625, + -0.0228271484375, + 0.006072998046875, + -0.0186767578125, + -0.00946044921875, + -0.0186767578125, + -0.0361328125, + 0.04248046875, + 0.0164794921875, + 0.02783203125, + 0.043212890625, + -0.019775390625, + 0.0189208984375, + -0.03076171875, + -0.01080322265625, + -0.01318359375, + 0.005157470703125, + -0.041259765625, + 0.0859375, + -0.002288818359375, + -0.0281982421875, + -0.00604248046875, + -0.0164794921875, + -0.043701171875, + 0.02734375, + -0.01123046875, + 0.038330078125, + 0.0123291015625, + 0.0150146484375, + -0.049560546875, + 0.0032806396484375, + -0.048828125, + -0.03125, + -0.0654296875, + -0.003875732421875, + -0.00177764892578125, + 0.03125, + 0.055908203125, + 0.0771484375, + 0.0390625, + -0.0146484375, + 0.0306396484375, + 0.018798828125, + -0.162109375, + 0.004364013671875, + -0.0184326171875, + -0.0047607421875, + 0.0257568359375, + -0.0074462890625, + -0.010498046875, + 0.000873565673828125, + -0.039794921875, + 0.006683349609375, + 0.0224609375, + -0.05859375, + -0.00384521484375, + -0.014404296875, + 0.0267333984375, + -0.00714111328125, + -0.006988525390625, + 0.0133056640625, + 0.0380859375, + -0.03857421875, + -0.0189208984375, + -0.06689453125, + 0.0615234375, + 0.0079345703125, + -0.04541015625, + 0.0257568359375, + 0.0286865234375, + -0.032470703125, + -0.0703125, + -0.031494140625, + -0.00457763671875, + 0.004486083984375, + -0.0084228515625, + 0.000568389892578125, + 0.005889892578125, + -0.0108642578125, + 0.052490234375, + -0.0634765625, + 0.03271484375, + -0.010009765625, + 0.040771484375, + 0.056396484375, + -0.004638671875, + 0.00262451171875, + -0.00138092041015625, + -0.04736328125, + -0.000484466552734375, + 0.0322265625, + -0.04052734375, + 0.022705078125, + -0.0137939453125, + -0.0179443359375, + -0.0174560546875, + 0.0034942626953125, + -0.0849609375, + 0.0252685546875, + 0.0076904296875, + 0.0036163330078125, + 0.00213623046875, + 0.035400390625, + -0.0012054443359375, + -0.044189453125, + -0.02880859375, + -0.04833984375, + -0.0152587890625, + -0.0238037109375, + 0.0269775390625, + -0.021240234375, + 0.01531982421875, + -0.0164794921875, + -0.003875732421875, + 0.032470703125, + -0.019287109375, + -0.00927734375, + 0.0048828125, + 0.03515625, + 0.00060272216796875, + -0.0361328125, + -0.0257568359375, + -0.10498046875, + -0.0654296875, + 0.01171875, + -0.04052734375, + 0.01336669921875, + -0.045654296875, + -0.018310546875, + 0.0111083984375, + 0.042236328125, + 0.048095703125, + 0.236328125, + -0.0247802734375, + -0.0050048828125, + -0.032958984375, + 0.046142578125, + -0.0186767578125, + 0.0218505859375, + 0.0011444091796875, + 0.0030364990234375, + -0.019775390625, + 0.016357421875, + -0.004913330078125, + 0.000858306884765625, + 0.036865234375, + 0.010498046875, + 0.042236328125, + -0.0458984375, + -0.0294189453125, + 0.11572265625, + 0.0026397705078125, + 0.0390625, + 0.0028839111328125, + 0.041015625, + -0.0068359375, + -0.03662109375, + -0.00238037109375, + 0.00836181640625, + 0.062255859375, + -0.031982421875, + 0.01104736328125, + -0.0203857421875, + 0.0281982421875, + 0.033935546875, + 0.00010538101196289062, + -0.01904296875, + -0.0235595703125, + -0.0196533203125, + -0.046142578125, + -0.0123291015625, + 0.01434326171875, + -0.04736328125, + -0.01904296875, + 0.02001953125, + -0.0294189453125, + 0.026611328125, + -0.00994873046875, + -0.018798828125, + -0.009765625, + 0.050537109375, + -0.0279541015625, + -0.01806640625, + -0.06201171875, + -0.0306396484375, + -0.012451171875, + -0.0087890625, + -0.01214599609375, + 0.0027923583984375, + -0.0341796875, + -0.0361328125, + 0.06298828125, + 0.0029449462890625, + 0.0120849609375, + 0.004974365234375, + 0.0235595703125, + -0.054931640625, + 0.0185546875, + -0.007598876953125, + -0.043212890625, + 0.0152587890625, + 0.0047607421875, + 0.0189208984375, + -0.0234375, + -0.021728515625, + 0.0322265625, + 0.034423828125, + -0.01123046875, + 0.04248046875, + 0.0654296875, + 0.0157470703125, + 0.04052734375, + -0.0400390625, + -0.01263427734375, + -0.035888671875, + 0.01116943359375, + 0.015625, + -0.0303955078125, + 0.04638671875, + 0.0234375, + 0.00933837890625, + 0.00360107421875, + -0.0228271484375, + 0.001434326171875, + -0.000675201416015625, + 0.027587890625, + 0.0072021484375, + 0.0218505859375, + 0.01080322265625, + -0.0255126953125, + -0.01275634765625, + 0.01495361328125, + -0.0286865234375, + 0.00543212890625, + -0.028076171875, + -0.044921875, + 0.0537109375, + -0.033935546875, + -0.003021240234375, + 0.0101318359375, + -0.0196533203125, + -0.00341796875, + -0.033935546875, + 0.004974365234375, + 0.024658203125, + 0.01202392578125, + 0.009033203125, + 0.01531982421875, + -0.0038299560546875, + 0.0262451171875, + 0.08447265625, + 0.00933837890625, + 0.0024871826171875, + 0.037353515625, + 0.039306640625, + 0.031494140625, + -0.0120849609375, + 0.0166015625, + -0.0113525390625, + -0.010009765625, + -0.06494140625, + 0.01336669921875, + -0.039306640625, + -0.015380859375, + -0.0223388671875, + 0.0150146484375, + 0.016357421875, + -0.00933837890625, + 0.025390625, + -0.016357421875, + -0.014892578125, + -0.003997802734375, + -0.01043701171875, + 0.03662109375, + -0.0322265625, + 0.0230712890625, + -0.0115966796875, + 0.024169921875, + 0.04541015625, + -0.0390625, + -0.048583984375, + 0.0771484375, + 0.0047607421875, + -4.267692565917969e-05, + 0.01708984375, + -0.06396484375, + -0.0224609375, + -0.0380859375, + -0.032958984375, + -0.01019287109375, + 0.0157470703125, + 0.0015106201171875, + -0.01220703125, + 0.0634765625, + 0.022705078125, + 0.06103515625, + -0.035400390625, + -0.0234375, + -0.0281982421875, + 0.0272216796875, + -0.0235595703125, + 0.0179443359375, + 0.004180908203125, + -0.0019073486328125, + -0.058837890625, + 0.01953125, + -0.021240234375, + -0.03173828125, + -0.007781982421875, + -0.00634765625, + 0.00543212890625, + -0.0281982421875, + 0.023193359375, + 0.02880859375, + -0.0263671875, + 0.01904296875, + 0.0027618408203125, + -0.00933837890625, + -0.0230712890625, + -0.00384521484375, + 0.0341796875, + -0.0284423828125, + -0.041259765625, + 0.0810546875, + -0.0133056640625, + -0.043212890625, + -0.023193359375, + 0.0034027099609375, + 0.028076171875, + -0.01190185546875, + 0.014404296875, + -0.07373046875, + -0.0240478515625, + -0.030029296875, + -0.0177001953125, + -0.003326416015625, + -0.05615234375, + 0.005096435546875, + -0.01708984375, + 0.032470703125, + -0.03662109375, + -0.008544921875, + 0.028564453125, + 0.005126953125, + -0.051025390625, + -0.0027618408203125, + 0.056884765625, + -0.014404296875, + 0.036865234375, + 0.035400390625, + -0.00531005859375, + -0.03759765625, + -0.01422119140625, + 0.0284423828125, + 0.056884765625, + -0.0306396484375, + 0.01171875, + -0.0024871826171875, + 0.03759765625, + -0.0216064453125, + -0.04296875, + -0.01519775390625, + -0.001556396484375, + -0.01275634765625, + 0.01202392578125, + 0.00177764892578125, + 0.061279296875, + 0.0262451171875, + 0.060302734375, + 0.033203125, + 0.02001953125, + -0.005950927734375, + 0.05517578125, + 0.032470703125, + -0.0150146484375, + 0.0289306640625, + 0.03759765625, + 0.033935546875, + -0.0146484375, + -0.046875, + 0.03173828125, + 0.00689697265625, + -0.051513671875, + -0.02490234375, + 0.003997802734375, + -0.037353515625, + -0.005401611328125, + -0.03466796875, + -0.03173828125, + 0.0224609375, + -0.015869140625, + -0.0045166015625, + 0.008544921875, + 0.0255126953125, + 0.0078125, + 0.0361328125, + -0.01409912109375, + -0.041259765625, + 0.026123046875, + -0.0272216796875, + -0.03271484375, + -0.06787109375, + -0.00182342529296875, + -0.006591796875, + -0.00439453125, + 0.0218505859375, + 0.058349609375, + 0.01397705078125, + 0.018310546875, + 0.01287841796875, + 0.0263671875, + -0.03955078125, + -0.01092529296875, + -0.031982421875, + 0.006072998046875, + -0.0240478515625, + -0.009033203125, + 0.001800537109375, + 0.01025390625, + 0.0255126953125, + -0.004547119140625, + 0.01116943359375, + 0.0068359375, + -0.006683349609375, + 0.004608154296875, + 0.032958984375, + -0.028076171875, + 0.00244140625, + -0.004547119140625, + 0.004180908203125, + -0.02001953125, + 0.01177978515625, + 0.005859375, + -0.01904296875, + -0.045654296875, + -0.0294189453125, + 0.008544921875, + -0.001251220703125, + 0.0152587890625, + -0.0150146484375, + -0.0174560546875, + -0.01141357421875, + 0.00958251953125, + -0.0810546875, + 0.014404296875, + 0.04736328125, + 0.033203125, + 0.0189208984375, + 0.00102996826171875, + 0.028076171875, + 0.01092529296875, + -0.00457763671875, + -0.0361328125, + -0.056396484375, + 0.005859375, + 0.01348876953125, + 0.0189208984375, + -0.016357421875, + -0.0216064453125, + 0.00201416015625, + -0.039306640625, + -0.0020599365234375, + 0.0076904296875, + 0.0074462890625, + -0.0032958984375, + -0.0024566650390625, + 0.039306640625, + -0.033935546875, + 0.041748046875, + 0.0189208984375, + 0.044189453125, + -0.039794921875, + -0.033935546875, + 0.0142822265625, + -0.021728515625, + -0.04345703125, + 0.037841796875, + -0.06494140625, + -0.017578125, + 0.0106201171875, + 0.018798828125, + -0.007659912109375, + -0.01171875, + 0.064453125, + -0.0211181640625, + -0.0380859375, + -0.01556396484375, + 0.01708984375, + 0.04638671875, + 0.02490234375, + 0.0250244140625, + -0.017333984375, + -0.032470703125, + 0.0169677734375, + -0.04443359375, + 0.0026092529296875, + 0.03271484375, + -0.0240478515625, + 0.044677734375, + -0.024658203125, + 0.031494140625, + -0.018310546875, + -0.01202392578125, + 0.005279541015625, + 0.01019287109375, + 0.01611328125, + 0.0025634765625, + 0.0179443359375, + -0.0098876953125, + -0.0269775390625, + 0.03515625, + 0.000751495361328125, + -0.002410888671875, + -0.03857421875, + -0.0458984375, + -0.0299072265625, + 0.00537109375, + -0.0218505859375, + -0.049560546875, + -0.00482177734375, + 0.030517578125, + 0.002838134765625, + -0.048095703125, + 0.000888824462890625, + -0.01611328125, + -0.041015625, + -0.162109375, + -0.01153564453125, + -0.0198974609375, + -0.0031585693359375, + -0.053466796875, + 0.02734375, + -0.05615234375, + -0.03857421875, + -0.0223388671875, + -0.017578125, + -0.046875, + 0.008544921875, + 0.0286865234375, + -0.0263671875, + -0.00799560546875, + 0.00665283203125, + -0.0009002685546875, + 0.0147705078125, + 0.01080322265625, + 0.019775390625, + -0.019287109375, + 0.003265380859375, + 0.024658203125, + 0.007537841796875, + -0.029296875, + -0.0147705078125, + -0.04296875, + -0.002960205078125, + -0.044189453125, + -0.046875, + 0.0556640625, + -0.02099609375, + 0.02783203125, + 0.01239013671875, + 0.0167236328125, + 0.011474609375, + -0.004608154296875, + -0.0247802734375, + -0.004180908203125, + 0.00982666015625, + -0.0118408203125, + 0.01806640625, + -0.0341796875, + 0.0108642578125, + -0.0235595703125, + -0.054443359375, + -0.0089111328125, + -0.00823974609375, + 0.00433349609375, + -0.0166015625, + -0.0164794921875, + -0.0262451171875, + -0.0172119140625, + 0.007171630859375, + 0.0198974609375, + 0.034912109375, + -0.0380859375, + 0.010498046875, + -0.01611328125, + -0.005401611328125, + -0.03173828125, + 0.017578125, + -0.046142578125, + -0.059814453125, + -0.01239013671875, + -0.00092315673828125, + -0.01123046875, + 0.00750732421875, + 0.00457763671875, + 0.04443359375, + 0.0274658203125, + 0.01531982421875, + 0.02294921875, + -0.05078125, + -0.007232666015625, + 0.003173828125, + 0.042236328125, + -0.004180908203125, + 0.026123046875, + -0.00189971923828125, + -0.0228271484375, + -0.0034942626953125, + -0.01458740234375, + 0.07080078125, + 0.01025390625, + -0.010009765625, + 0.00946044921875, + -0.032958984375, + -0.06640625, + -0.000804901123046875, + -0.046142578125, + -0.0106201171875, + -0.007354736328125, + 0.015869140625, + -0.0185546875, + 0.00384521484375, + -0.00054168701171875, + 0.045654296875, + -0.00157928466796875, + -0.0263671875, + 0.01214599609375, + -0.00897216796875, + -0.00384521484375, + 0.012451171875, + -0.01287841796875, + 0.01214599609375, + 0.001220703125, + -0.00799560546875, + -0.000896453857421875, + -0.008056640625, + -0.0150146484375, + -0.01904296875, + -0.032470703125, + 0.015869140625, + -0.0093994140625, + -0.00171661376953125, + -0.0341796875, + 0.01214599609375, + 0.041015625, + -0.01287841796875, + 0.000598907470703125, + -0.0498046875, + 0.03857421875, + -0.041259765625, + 0.0235595703125, + -0.029296875, + 0.07177734375, + 0.023681640625, + -0.00787353515625, + -0.00262451171875, + 0.02685546875, + -0.043701171875, + 0.0361328125, + -0.001678466796875, + 0.03955078125, + 0.0498046875, + -0.0556640625, + 0.028564453125, + -0.003326416015625, + -0.007659912109375, + -0.017333984375, + 0.01904296875, + 0.00823974609375, + -0.032470703125, + 0.02490234375, + -0.01611328125, + 0.028076171875, + -0.002777099609375, + 0.00653076171875, + 0.0036163330078125, + 0.00653076171875, + 0.00946044921875, + 0.0208740234375, + 0.035400390625, + -0.0291748046875, + 0.0184326171875, + 0.02099609375, + 0.04736328125, + 0.003936767578125, + 0.027587890625, + 0.020263671875, + -0.01019287109375, + -0.0224609375, + -0.014404296875, + 0.046142578125, + 0.02685546875, + 0.028076171875, + 0.028564453125, + 0.037353515625, + 0.01531982421875, + 0.04248046875, + 0.039794921875, + -0.040771484375, + -0.005401611328125, + 0.033203125, + 0.009521484375, + -0.0027618408203125, + -0.0303955078125, + 0.05224609375, + -0.002960205078125, + 0.0255126953125, + 0.0576171875, + 0.051025390625, + 0.046142578125, + -0.000881195068359375, + -0.0030517578125, + 0.000637054443359375, + 0.0018768310546875, + 0.0123291015625, + -0.0186767578125, + -0.003509521484375, + 0.0179443359375, + 0.045654296875, + 0.035400390625, + 0.06591796875, + 0.013427734375, + 0.007232666015625, + 0.01300048828125, + -0.0186767578125, + 0.056396484375, + -0.00885009765625, + -0.050537109375, + -0.02001953125, + -0.032958984375, + -0.04248046875, + 0.003448486328125, + 0.0306396484375, + -0.033935546875, + -0.00250244140625, + -0.00732421875, + -0.015625, + 0.0038909912109375, + -0.0196533203125, + -0.002227783203125, + -0.0029754638671875, + -0.006195068359375, + 0.0150146484375, + 0.039306640625, + 0.0654296875, + 0.04638671875, + -0.005615234375, + 0.000274658203125, + -0.044677734375, + -0.06103515625, + -0.055908203125, + 0.04345703125, + -0.033447265625, + 0.005279541015625, + 0.0303955078125, + 0.0294189453125, + 0.047119140625, + -0.022705078125, + 0.01708984375, + 0.0234375, + -0.00689697265625, + -0.00860595703125, + -0.0301513671875, + 0.0179443359375, + -0.043212890625, + -0.01904296875, + 0.06494140625, + 0.0169677734375, + 0.0068359375, + -0.0186767578125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 13.088328000002036, + "queue_ms": 1.283085999993716, + "tokenization_ms": 0.01969000000201504, + "inference_ms": 11.655209000004163, + "postprocessing_ms": null + } + }, + { + "id": "chunk-6", + "dense": [ + -0.047119140625, + -0.00909423828125, + -0.07373046875, + 0.0014801025390625, + -0.030029296875, + -0.0303955078125, + 0.03515625, + -0.0164794921875, + 0.03466796875, + 0.0084228515625, + -0.00994873046875, + 0.004730224609375, + 0.01007080078125, + 0.041015625, + 0.048828125, + 0.0029144287109375, + -0.002593994140625, + -0.0162353515625, + 0.0032806396484375, + 0.00628662109375, + -0.015625, + -0.005157470703125, + 0.035888671875, + -0.01611328125, + -0.005340576171875, + -0.01434326171875, + 0.048828125, + 0.0128173828125, + -0.00994873046875, + 0.0032806396484375, + -0.006744384765625, + -0.01416015625, + 0.01141357421875, + 0.00372314453125, + 0.023681640625, + -0.046875, + -0.021240234375, + -0.01300048828125, + -0.035888671875, + 0.036376953125, + 0.056396484375, + -0.037353515625, + 0.01300048828125, + 0.007659912109375, + 0.016357421875, + -0.03662109375, + -0.0128173828125, + -0.0380859375, + -0.003570556640625, + -0.0242919921875, + -0.0191650390625, + 0.000701904296875, + 0.0322265625, + -0.052001953125, + 0.003662109375, + 0.048095703125, + -0.00299072265625, + -0.05810546875, + -0.00592041015625, + 0.0172119140625, + -0.0033721923828125, + 0.006805419921875, + 0.004638671875, + 0.0186767578125, + 0.03662109375, + 0.006072998046875, + -0.0028228759765625, + 0.000896453857421875, + 0.00811767578125, + -0.051513671875, + -0.00970458984375, + -0.01416015625, + -0.0191650390625, + 0.0002803802490234375, + -0.057861328125, + -0.003021240234375, + 0.01214599609375, + -0.034423828125, + -0.0302734375, + 0.00086212158203125, + -0.0196533203125, + 0.0022735595703125, + 0.00567626953125, + 0.032470703125, + -0.052490234375, + 0.0098876953125, + -0.005859375, + 0.0279541015625, + 0.0025634765625, + 0.0115966796875, + 0.01171875, + -0.019287109375, + -0.031494140625, + -0.00860595703125, + -0.00066375732421875, + -0.048583984375, + -0.0166015625, + -0.005706787109375, + 0.0257568359375, + 0.01904296875, + 0.0185546875, + -0.011962890625, + 0.02001953125, + -0.0130615234375, + 0.0234375, + -0.04638671875, + 0.0152587890625, + 0.038330078125, + 0.0595703125, + -0.0125732421875, + -0.00885009765625, + 0.041015625, + -0.0128173828125, + 0.00121307373046875, + 0.00848388671875, + -0.0269775390625, + 0.03955078125, + -0.04638671875, + 0.0011749267578125, + -0.01007080078125, + 0.0220947265625, + 0.0274658203125, + -0.003265380859375, + -0.041259765625, + -0.0625, + 0.00543212890625, + 0.0615234375, + 0.0302734375, + 0.048095703125, + 0.0004100799560546875, + 0.021728515625, + 0.04150390625, + -0.051025390625, + -0.036376953125, + 0.005126953125, + -0.03369140625, + 0.042724609375, + 0.04345703125, + 0.0067138671875, + -0.041015625, + 0.0103759765625, + 0.06787109375, + -0.02197265625, + -0.05517578125, + 0.00014019012451171875, + -0.06787109375, + 0.0286865234375, + -0.032958984375, + 0.005828857421875, + 0.02685546875, + -0.0107421875, + 0.03564453125, + 0.0247802734375, + 0.030517578125, + 0.01214599609375, + 0.01141357421875, + -0.06640625, + -0.031494140625, + 0.0291748046875, + -0.0296630859375, + -0.00970458984375, + 0.022705078125, + 0.07275390625, + -0.01556396484375, + 0.0537109375, + -0.005889892578125, + -0.02001953125, + 0.00933837890625, + -0.038330078125, + -0.01068115234375, + 0.0164794921875, + -0.0267333984375, + -0.0098876953125, + 0.0142822265625, + -0.0198974609375, + 0.000370025634765625, + 0.0478515625, + 0.004547119140625, + 0.0302734375, + -0.057373046875, + -0.059326171875, + 0.0057373046875, + 0.0201416015625, + -0.023193359375, + 0.0201416015625, + -0.011474609375, + 0.022216796875, + -0.01904296875, + 0.0279541015625, + -0.0194091796875, + 0.0174560546875, + -0.013427734375, + -0.0179443359375, + 0.05078125, + 0.0218505859375, + -0.058349609375, + 0.021240234375, + -0.0255126953125, + 0.01287841796875, + -0.0010986328125, + 0.00186920166015625, + 0.024658203125, + 0.0087890625, + 0.033203125, + -0.005096435546875, + -0.01287841796875, + -0.03271484375, + -0.00146484375, + 0.0028076171875, + -0.08544921875, + -0.02783203125, + -5.221366882324219e-05, + -0.0380859375, + -0.00091552734375, + -0.004852294921875, + 0.01312255859375, + 0.0264892578125, + 0.0201416015625, + 0.004547119140625, + -0.03857421875, + -0.0225830078125, + 0.029296875, + 0.007293701171875, + 0.0181884765625, + 0.0263671875, + -0.00933837890625, + 0.0281982421875, + 0.0279541015625, + 0.036865234375, + -0.021240234375, + -0.021240234375, + 0.0030364990234375, + -0.005218505859375, + -0.04150390625, + 0.0125732421875, + 0.0019683837890625, + 0.053466796875, + 0.02490234375, + 0.04248046875, + 0.0296630859375, + -0.03857421875, + -0.029296875, + 0.068359375, + -0.0274658203125, + -0.031494140625, + -0.0262451171875, + 0.01495361328125, + -0.0179443359375, + -0.006927490234375, + 0.0247802734375, + 0.00555419921875, + 0.0274658203125, + -0.05419921875, + 0.013916015625, + 0.01043701171875, + -0.0091552734375, + 0.003143310546875, + -0.01361083984375, + 0.00250244140625, + -0.04150390625, + -0.0264892578125, + 0.01336669921875, + -0.0283203125, + 0.044189453125, + 0.007110595703125, + -0.040283203125, + 0.00052642822265625, + -0.0306396484375, + 0.0079345703125, + 0.0274658203125, + 0.0203857421875, + -0.07763671875, + 0.0012969970703125, + 0.041748046875, + -0.000667572021484375, + 0.0262451171875, + -0.0076904296875, + 0.00311279296875, + 0.03955078125, + -0.01708984375, + -0.06201171875, + 0.01043701171875, + 0.037109375, + -0.035888671875, + 0.006500244140625, + -0.00130462646484375, + -0.032958984375, + -0.042236328125, + -0.0205078125, + -0.01904296875, + 0.041015625, + 0.03564453125, + 0.10205078125, + 0.0022125244140625, + -0.0240478515625, + 0.053466796875, + 0.01300048828125, + -0.14453125, + 0.00885009765625, + -0.0155029296875, + 0.027587890625, + -0.0004673004150390625, + 0.0262451171875, + -0.01019287109375, + 0.006866455078125, + -0.0537109375, + -0.009521484375, + 0.0120849609375, + -0.06494140625, + -0.005889892578125, + 0.0213623046875, + 0.01513671875, + 0.001953125, + -0.004058837890625, + -0.0018463134765625, + -0.019287109375, + -0.015869140625, + -0.052001953125, + -0.038818359375, + 0.0274658203125, + 0.00946044921875, + 0.0166015625, + -0.033935546875, + 0.0172119140625, + -0.0032806396484375, + -0.04638671875, + 0.00634765625, + -0.0164794921875, + 3.314018249511719e-05, + -0.00958251953125, + 0.0152587890625, + -0.07275390625, + -0.0189208984375, + 0.024169921875, + -0.0306396484375, + 0.00164031982421875, + 0.004150390625, + 0.0257568359375, + 0.003631591796875, + 0.0113525390625, + 0.045654296875, + -0.01458740234375, + -0.0169677734375, + 0.01202392578125, + -0.00933837890625, + -0.047119140625, + 0.0166015625, + -0.00113677978515625, + -0.03564453125, + -0.06103515625, + 0.02685546875, + -0.08740234375, + -0.021484375, + -0.00579833984375, + 0.035888671875, + 0.025390625, + -0.0172119140625, + -0.05078125, + -0.0634765625, + 0.0224609375, + -0.02783203125, + 0.002593994140625, + -0.027099609375, + 0.01300048828125, + -0.006500244140625, + 0.0205078125, + -0.031982421875, + -0.017333984375, + 0.0203857421875, + 0.01025390625, + 0.0220947265625, + 0.0296630859375, + 0.01318359375, + 0.039794921875, + -0.032470703125, + 0.002227783203125, + -0.07470703125, + -0.04638671875, + 0.0284423828125, + -0.0021514892578125, + 0.028564453125, + -0.0211181640625, + -0.00830078125, + -0.01361083984375, + 0.01214599609375, + 0.0306396484375, + 0.26953125, + 0.0380859375, + 0.0022430419921875, + -0.0291748046875, + 0.022705078125, + -0.00909423828125, + 0.04638671875, + 0.006103515625, + 0.006500244140625, + -0.01458740234375, + 0.0211181640625, + 0.02685546875, + -0.019775390625, + 0.039306640625, + -0.028564453125, + -0.00390625, + -0.06494140625, + -0.01220703125, + 0.072265625, + 0.017578125, + 0.06884765625, + 0.013427734375, + 0.046875, + 0.003997802734375, + 0.0093994140625, + -0.0086669921875, + 0.0002651214599609375, + 0.03564453125, + -0.041748046875, + 0.040283203125, + -0.015380859375, + 0.0186767578125, + 0.0478515625, + -0.045166015625, + -0.0380859375, + -0.01239013671875, + -0.005645751953125, + 0.0152587890625, + -0.031494140625, + 0.0556640625, + 0.00897216796875, + -0.0166015625, + -0.029296875, + -0.0126953125, + 0.001007080078125, + 0.015625, + -0.0084228515625, + -0.022216796875, + 0.01019287109375, + -0.00445556640625, + 0.0037384033203125, + -0.0086669921875, + -0.0185546875, + -0.0059814453125, + 0.038330078125, + -0.0274658203125, + -0.029052734375, + 0.003936767578125, + -0.0269775390625, + 0.057861328125, + 0.05810546875, + 0.01104736328125, + -0.036376953125, + 0.0191650390625, + -0.037109375, + 0.0235595703125, + -0.022705078125, + -0.00933837890625, + 0.064453125, + -0.00909423828125, + 0.0162353515625, + 0.00372314453125, + -0.0031890869140625, + 0.00531005859375, + 0.01422119140625, + -0.04296875, + -0.025390625, + 0.06201171875, + 0.02001953125, + 0.006866455078125, + -0.011962890625, + -0.01513671875, + 0.01348876953125, + 0.0031280517578125, + 0.040771484375, + -0.0198974609375, + -0.0086669921875, + 0.03857421875, + -0.041015625, + 0.023681640625, + -0.0098876953125, + -0.00439453125, + -0.0439453125, + 0.0213623046875, + -0.020751953125, + 0.021484375, + 0.00579833984375, + 0.00311279296875, + -0.0150146484375, + -0.0191650390625, + 0.0162353515625, + -0.0206298828125, + -0.032958984375, + 0.0130615234375, + 0.0439453125, + -0.01806640625, + -0.007598876953125, + -0.01287841796875, + -0.037109375, + -0.00170135498046875, + 0.002471923828125, + 0.015625, + -0.0274658203125, + -0.03369140625, + 0.03173828125, + 0.053466796875, + -0.0107421875, + 0.006256103515625, + 0.006927490234375, + 0.0244140625, + -0.039306640625, + 0.0712890625, + -0.01239013671875, + 0.038818359375, + -0.0036163330078125, + -0.02001953125, + 0.035888671875, + 0.0006256103515625, + -0.0035247802734375, + 0.00061798095703125, + 0.0032196044921875, + -0.000946044921875, + 0.01031494140625, + -0.01287841796875, + 0.006561279296875, + 0.022216796875, + 0.03369140625, + 0.000537872314453125, + 0.015625, + 0.048095703125, + -0.05078125, + -0.000850677490234375, + -0.06640625, + 0.044189453125, + -0.00567626953125, + 0.00186920166015625, + -0.04833984375, + -0.010009765625, + 0.00122833251953125, + 0.05517578125, + 0.06005859375, + -0.007415771484375, + 0.043701171875, + -0.021728515625, + -0.007781982421875, + 0.005096435546875, + -0.03955078125, + -0.031005859375, + 0.051025390625, + -0.005828857421875, + 0.00958251953125, + 0.033203125, + -0.00189971923828125, + 0.06640625, + -0.019775390625, + -0.01141357421875, + 0.00982666015625, + 0.041259765625, + -0.0020599365234375, + -0.005828857421875, + 0.0003299713134765625, + -0.03857421875, + -0.042236328125, + 0.016845703125, + 0.029052734375, + -0.00860595703125, + -0.0098876953125, + 0.06982421875, + -0.0003108978271484375, + -0.031005859375, + 0.00750732421875, + 0.00029754638671875, + -0.0322265625, + -0.0113525390625, + 0.0269775390625, + -0.00592041015625, + -0.007293701171875, + -0.0152587890625, + 0.023681640625, + -0.017822265625, + 0.04931640625, + 0.05517578125, + -0.052001953125, + -0.031494140625, + -0.017578125, + 0.034423828125, + 0.051025390625, + -0.003143310546875, + 0.01434326171875, + -0.024658203125, + 0.00531005859375, + -0.039794921875, + -0.005096435546875, + 0.0157470703125, + -0.01513671875, + 0.04296875, + 5.555152893066406e-05, + 0.033935546875, + -0.03076171875, + 0.0264892578125, + 0.05419921875, + 0.0137939453125, + -0.030517578125, + 0.01177978515625, + 0.00079345703125, + -0.0022125244140625, + 0.032958984375, + -0.010986328125, + 0.004852294921875, + -0.0137939453125, + -0.024169921875, + -0.0004024505615234375, + 0.0634765625, + -0.03369140625, + -0.0157470703125, + -0.0137939453125, + -0.0206298828125, + 0.004974365234375, + -0.024658203125, + 0.011962890625, + -0.0010833740234375, + -0.00110626220703125, + 0.01220703125, + -0.0458984375, + 0.00811767578125, + -0.0286865234375, + 0.0458984375, + 0.01220703125, + 0.0123291015625, + -0.0224609375, + 0.0267333984375, + -0.01513671875, + -0.005340576171875, + -0.0189208984375, + 0.035888671875, + 0.0067138671875, + 0.01202392578125, + -0.05126953125, + 0.0106201171875, + 0.005340576171875, + -0.0201416015625, + -0.041259765625, + 0.00396728515625, + -0.032470703125, + 0.0260009765625, + 0.040283203125, + -0.0025787353515625, + 0.011962890625, + -0.040283203125, + -0.006866455078125, + 0.00836181640625, + 0.037109375, + 0.019287109375, + -0.007659912109375, + -0.0361328125, + -0.00421142578125, + 0.048095703125, + 0.004547119140625, + -0.03759765625, + -0.07080078125, + -0.0014190673828125, + 0.031005859375, + -0.040283203125, + 0.000934600830078125, + 0.00299072265625, + -0.017578125, + -0.019287109375, + 0.062255859375, + 0.0262451171875, + 0.025634765625, + 0.003662109375, + -0.0255126953125, + 0.036376953125, + -0.00482177734375, + 0.024169921875, + 0.0167236328125, + -0.003631591796875, + 0.0152587890625, + -0.01025390625, + -0.0184326171875, + -0.00946044921875, + 0.034912109375, + -0.0281982421875, + 0.04541015625, + -0.003997802734375, + 0.01068115234375, + -0.019775390625, + 0.04345703125, + -0.0277099609375, + -0.032958984375, + -0.034423828125, + 0.0033721923828125, + -0.040283203125, + -0.037353515625, + 0.0262451171875, + -0.0400390625, + 0.0289306640625, + -0.07470703125, + 0.006195068359375, + 0.027587890625, + 0.00787353515625, + -0.0615234375, + 0.028564453125, + 0.020751953125, + 0.00421142578125, + -0.0164794921875, + 0.0322265625, + 0.01025390625, + 0.0263671875, + 0.0264892578125, + -0.021484375, + 0.0128173828125, + -0.03662109375, + -0.01251220703125, + -0.045654296875, + 0.016845703125, + 0.0174560546875, + -0.0284423828125, + -0.023193359375, + -0.000946044921875, + -0.03662109375, + -0.03271484375, + 0.00421142578125, + -0.0225830078125, + 0.04150390625, + 0.026123046875, + 0.0264892578125, + -0.0181884765625, + 0.07666015625, + -0.0142822265625, + -0.003753662109375, + -0.046875, + 0.060546875, + -0.005340576171875, + 0.0057373046875, + -0.0556640625, + -0.00299072265625, + 0.00970458984375, + -0.00640869140625, + -0.0142822265625, + 0.0233154296875, + 0.059814453125, + -0.00421142578125, + -0.057373046875, + 0.05029296875, + 0.04931640625, + 0.0260009765625, + 0.017822265625, + 0.057373046875, + -0.002655029296875, + -0.0240478515625, + 0.0194091796875, + -0.02392578125, + 0.0179443359375, + 0.03125, + -0.01531982421875, + 0.01318359375, + -0.064453125, + 0.05517578125, + 0.002655029296875, + 0.00518798828125, + 0.0262451171875, + -0.04931640625, + 0.01324462890625, + -0.07763671875, + 0.040771484375, + -0.01904296875, + -0.0272216796875, + -0.01324462890625, + 0.0201416015625, + 0.0021820068359375, + -0.017333984375, + -0.0084228515625, + -0.01312255859375, + -0.004302978515625, + -0.0198974609375, + -0.037841796875, + 0.0128173828125, + 0.010009765625, + -0.0274658203125, + -0.022216796875, + -0.008056640625, + 0.0098876953125, + -0.0240478515625, + -0.1669921875, + -0.01434326171875, + -0.02294921875, + -0.00885009765625, + -0.06591796875, + -0.009521484375, + -0.028564453125, + -0.0108642578125, + -0.035888671875, + -0.03515625, + -0.0206298828125, + -0.007171630859375, + -0.0074462890625, + -0.04248046875, + -0.00020599365234375, + 0.03857421875, + -0.00145721435546875, + -0.01220703125, + -0.01495361328125, + 0.053466796875, + -0.0257568359375, + 0.00726318359375, + 0.03369140625, + 0.01104736328125, + -0.038818359375, + -0.00421142578125, + -0.0185546875, + 0.01348876953125, + -0.035888671875, + -0.011474609375, + 0.03125, + -0.042236328125, + 0.03125, + 0.0234375, + 0.0211181640625, + -0.035888671875, + -0.018310546875, + -0.045654296875, + 0.031005859375, + -0.0185546875, + 0.032958984375, + 0.01904296875, + -0.0179443359375, + 0.048583984375, + -0.02783203125, + -0.0128173828125, + -0.00750732421875, + 0.0004405975341796875, + -0.03515625, + -0.053466796875, + -0.008056640625, + 0.0228271484375, + -0.0771484375, + -0.001739501953125, + 0.016845703125, + 0.00439453125, + 0.00732421875, + 0.00433349609375, + -0.0380859375, + 0.064453125, + 0.01324462890625, + -0.0098876953125, + -0.07958984375, + -0.015625, + 0.021728515625, + 0.00133514404296875, + -0.0040283203125, + 0.0269775390625, + -0.006103515625, + 0.0247802734375, + -0.0035400390625, + -0.048583984375, + 0.00433349609375, + -0.06494140625, + -0.035888671875, + -0.00885009765625, + 0.05126953125, + 0.0247802734375, + -0.01416015625, + -5.412101745605469e-05, + -0.037841796875, + -0.01416015625, + -0.00860595703125, + 0.06396484375, + 0.037841796875, + 0.012451171875, + -0.017333984375, + 0.00836181640625, + -0.0322265625, + 0.033935546875, + -0.037841796875, + -0.04638671875, + 0.005889892578125, + 0.006622314453125, + -0.0556640625, + 0.0196533203125, + -0.01312255859375, + -0.00531005859375, + 0.01220703125, + -0.01446533203125, + -0.006866455078125, + -0.04638671875, + -0.00543212890625, + 0.0167236328125, + -0.056396484375, + 0.0498046875, + 0.00011920928955078125, + -0.029541015625, + -0.0201416015625, + -0.003021240234375, + 0.01708984375, + -0.00390625, + 0.01556396484375, + 0.00347900390625, + -0.08740234375, + -0.025146484375, + 0.005706787109375, + 0.01611328125, + -0.021728515625, + 0.023193359375, + 0.0228271484375, + -0.0106201171875, + -0.00125885009765625, + -0.05029296875, + 0.054931640625, + 0.0341796875, + 0.03759765625, + 0.005096435546875, + -0.00921630859375, + 0.041259765625, + 0.0162353515625, + -0.06396484375, + -0.0299072265625, + -0.005859375, + 0.040283203125, + 0.03857421875, + -0.044921875, + 0.03759765625, + -0.028564453125, + -0.0152587890625, + 0.01214599609375, + -0.0220947265625, + -0.0021514892578125, + 0.0213623046875, + -0.032958984375, + 0.01092529296875, + -0.0267333984375, + 0.00909423828125, + -0.01104736328125, + -0.043701171875, + 0.041259765625, + -0.0244140625, + 0.01312255859375, + 0.024169921875, + -0.039306640625, + 0.01177978515625, + 0.00141143798828125, + -0.00921630859375, + 0.06591796875, + -0.01519775390625, + 0.01458740234375, + -0.040771484375, + -0.0164794921875, + -0.0179443359375, + -0.039794921875, + 0.01336669921875, + -0.009521484375, + -0.0299072265625, + -0.00579833984375, + 0.04150390625, + 0.021484375, + 0.03369140625, + -0.0281982421875, + -0.01104736328125, + 0.05419921875, + 0.0220947265625, + -0.021728515625, + 0.0255126953125, + 0.0281982421875, + -0.020751953125, + 0.03662109375, + -0.01312255859375, + 0.004608154296875, + 0.03271484375, + -0.006988525390625, + 0.0113525390625, + 0.004150390625, + -0.01611328125, + 0.038330078125, + 0.0034332275390625, + 0.01312255859375, + -0.005828857421875, + 0.00750732421875, + 0.0291748046875, + 0.033447265625, + -0.0079345703125, + 0.0205078125, + 0.013427734375, + 0.01129150390625, + 0.025634765625, + -0.0021209716796875, + -0.01129150390625, + 0.011474609375, + -0.0035400390625, + -0.025634765625, + 0.00860595703125, + 0.037841796875, + 0.01495361328125, + 0.0380859375, + -0.01708984375, + -0.054443359375, + -0.00897216796875, + -0.01348876953125, + 0.036376953125, + -0.01165771484375, + -0.040283203125, + 0.0289306640625, + -0.0084228515625, + -0.002899169921875, + 0.000896453857421875, + 0.0120849609375, + -0.005340576171875, + -0.02490234375, + -0.026123046875, + -0.00933837890625, + -0.00066375732421875, + 0.00518798828125, + 0.0303955078125, + -4.887580871582031e-06, + 0.029052734375, + 0.00689697265625, + -0.0034027099609375, + -0.027099609375, + 0.03125, + -0.017822265625, + -0.04541015625, + 0.056640625, + -0.0194091796875, + -0.0247802734375, + 0.041259765625, + 0.021728515625, + -0.0218505859375, + 0.0035858154296875, + -0.042236328125 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 14.309153000006347, + "queue_ms": 0.078561999998783, + "tokenization_ms": 0.010530000004393969, + "inference_ms": 14.125829000001033, + "postprocessing_ms": null + } + }, + { + "id": "chunk-7", + "dense": [ + -0.000682830810546875, + 0.017333984375, + -0.0140380859375, + -0.041259765625, + -0.0380859375, + -0.00897216796875, + -0.0030059814453125, + 0.0087890625, + -0.0007781982421875, + -0.0029449462890625, + 0.05859375, + 0.042724609375, + -0.0096435546875, + 0.033203125, + -0.007354736328125, + 0.028076171875, + 0.0296630859375, + -0.0225830078125, + -0.0064697265625, + -0.05029296875, + -0.0047607421875, + -0.0103759765625, + 0.01318359375, + 0.00787353515625, + 0.045654296875, + -0.004302978515625, + -0.02294921875, + 0.00848388671875, + 0.04345703125, + 0.01544189453125, + 0.006927490234375, + -0.005615234375, + 0.055419921875, + 0.005340576171875, + 0.00323486328125, + -0.0322265625, + 0.017822265625, + -0.029296875, + -0.059814453125, + 0.027099609375, + -0.0169677734375, + -0.0166015625, + -0.02294921875, + -0.00616455078125, + -0.0103759765625, + -0.037353515625, + -0.01092529296875, + -0.0322265625, + -0.08740234375, + 0.0263671875, + 0.026123046875, + 0.00164794921875, + 0.0247802734375, + 0.00139617919921875, + 0.01336669921875, + 0.0103759765625, + 0.0025634765625, + -0.01434326171875, + -0.046142578125, + -0.0296630859375, + -0.003662109375, + 0.044677734375, + -0.0546875, + -0.00051116943359375, + 0.0228271484375, + 0.07373046875, + -0.023681640625, + -0.00860595703125, + -0.017578125, + -0.0084228515625, + -0.008056640625, + -0.00836181640625, + 0.0439453125, + -0.0242919921875, + -0.07666015625, + 0.013916015625, + 0.01287841796875, + 0.0079345703125, + -0.006011962890625, + 0.0546875, + 0.01446533203125, + 0.020751953125, + 0.04443359375, + 0.01708984375, + -0.0081787109375, + 0.0211181640625, + -0.0272216796875, + 0.062255859375, + -0.015869140625, + -0.00860595703125, + -0.00146484375, + 0.0225830078125, + -0.033203125, + -0.048095703125, + -0.031982421875, + 0.0024261474609375, + -0.033935546875, + -0.01226806640625, + 0.0439453125, + -0.006500244140625, + -0.00238037109375, + -0.008056640625, + 0.035888671875, + -0.00830078125, + -0.040283203125, + -0.004180908203125, + 0.04248046875, + 0.0498046875, + 0.002105712890625, + -0.00274658203125, + 0.03466796875, + -0.005157470703125, + -0.010498046875, + -0.00543212890625, + 0.029052734375, + -0.0035858154296875, + -0.0017242431640625, + -0.0269775390625, + -0.057373046875, + 0.01123046875, + 0.07861328125, + 0.0419921875, + 0.0177001953125, + -0.031494140625, + -0.06298828125, + -0.00011491775512695312, + 0.041259765625, + 0.009521484375, + 0.042236328125, + 0.01116943359375, + 0.006622314453125, + -0.00933837890625, + -0.0693359375, + -0.0211181640625, + -0.00069427490234375, + -0.018798828125, + 0.02734375, + 0.06689453125, + -0.005950927734375, + -0.035400390625, + 0.052001953125, + 0.01611328125, + 0.01263427734375, + -0.036865234375, + 0.03857421875, + -0.04052734375, + -0.026123046875, + -0.0322265625, + 0.032958984375, + -0.02001953125, + 0.016357421875, + 0.0032958984375, + 0.004669189453125, + -0.015380859375, + -0.02294921875, + -0.052734375, + 0.0032958984375, + -0.048095703125, + -0.00015163421630859375, + 0.0252685546875, + 0.01446533203125, + -0.0206298828125, + 0.005859375, + 0.00015354156494140625, + 0.01953125, + 0.00848388671875, + 0.057373046875, + 0.03173828125, + -0.046875, + -0.023681640625, + 0.033935546875, + -0.01025390625, + -0.0069580078125, + -0.01953125, + 0.01416015625, + 0.04833984375, + 0.05615234375, + 0.0137939453125, + 0.0272216796875, + -0.048583984375, + -0.0400390625, + 0.0093994140625, + 0.042236328125, + -0.02490234375, + 0.004669189453125, + -0.024169921875, + -0.021240234375, + -0.03125, + -0.0101318359375, + 0.03076171875, + -0.00946044921875, + -0.042724609375, + 0.0255126953125, + -0.0361328125, + 0.0400390625, + 0.02099609375, + 0.017333984375, + -0.036865234375, + 0.013916015625, + 9.393692016601562e-05, + -0.0186767578125, + 0.042236328125, + 0.031494140625, + -0.020263671875, + 0.013916015625, + 0.03515625, + -0.03076171875, + -0.0361328125, + 0.0296630859375, + -0.0654296875, + -0.0234375, + 0.0027313232421875, + -0.01275634765625, + -0.0361328125, + -0.0201416015625, + -0.0194091796875, + 0.017333984375, + 0.0108642578125, + 0.014404296875, + 0.0036773681640625, + -0.00799560546875, + 0.0252685546875, + -0.0087890625, + 0.02490234375, + 0.007476806640625, + -0.0458984375, + -0.022216796875, + 0.049072265625, + 0.039306640625, + -0.072265625, + 0.040283203125, + 0.00160980224609375, + -0.01385498046875, + -0.0252685546875, + 0.0264892578125, + -0.02001953125, + -0.041015625, + 0.056884765625, + 0.052001953125, + 0.054443359375, + -0.024658203125, + 0.01300048828125, + 0.06689453125, + 0.016845703125, + -0.0286865234375, + -0.0026397705078125, + 0.025390625, + 0.004669189453125, + -0.0084228515625, + -0.004669189453125, + -0.01171875, + 0.0238037109375, + -0.02099609375, + 0.003936767578125, + -0.017333984375, + -0.0101318359375, + -0.00811767578125, + -0.01953125, + 0.059326171875, + -0.016845703125, + 0.0157470703125, + -0.0157470703125, + 0.01806640625, + 0.029296875, + 0.0030975341796875, + -0.01214599609375, + -0.034912109375, + -0.0068359375, + 0.03125, + 0.004669189453125, + 0.00933837890625, + -0.06494140625, + -0.026611328125, + -0.01361083984375, + 0.027099609375, + 0.017578125, + -0.00616455078125, + 9.584426879882812e-05, + 0.00115203857421875, + -0.0025787353515625, + 0.0072021484375, + -0.03515625, + 0.0213623046875, + 0.0032196044921875, + 0.006591796875, + -0.0252685546875, + -0.057861328125, + -0.0218505859375, + 0.0201416015625, + -0.0230712890625, + 0.0380859375, + 0.0120849609375, + 0.0654296875, + 0.0301513671875, + -0.025390625, + -0.0267333984375, + 0.030029296875, + -0.17578125, + 0.032958984375, + -0.015380859375, + -0.0169677734375, + 0.0130615234375, + 0.00799560546875, + -0.004486083984375, + -0.04248046875, + -0.01544189453125, + 0.0225830078125, + 0.0087890625, + -0.042724609375, + -0.01092529296875, + 0.037109375, + -0.041015625, + 0.002716064453125, + -0.0252685546875, + -0.04052734375, + -0.0296630859375, + -0.0081787109375, + -0.03662109375, + -0.0296630859375, + 0.043212890625, + -0.03515625, + -0.0108642578125, + 0.0028533935546875, + -0.0289306640625, + -0.00170135498046875, + -0.015625, + 0.01904296875, + 0.00180816650390625, + 0.01080322265625, + -0.01611328125, + 0.0255126953125, + 0.031494140625, + 0.0546875, + 0.00982666015625, + -0.0498046875, + -0.0118408203125, + 0.037841796875, + -0.005126953125, + 0.052978515625, + -0.041015625, + -0.0205078125, + -0.009521484375, + -0.0311279296875, + -0.0245361328125, + 0.031494140625, + -0.013916015625, + 0.0247802734375, + 0.046142578125, + 0.007568359375, + -0.0164794921875, + 0.00555419921875, + -0.031982421875, + -0.0030670166015625, + 0.039306640625, + 0.010498046875, + -0.041015625, + 0.006591796875, + 0.0029754638671875, + -0.0252685546875, + 0.02001953125, + -0.030517578125, + -0.0218505859375, + -0.054443359375, + -0.029541015625, + 0.005157470703125, + 0.00897216796875, + -0.02294921875, + 0.06396484375, + -0.034912109375, + 0.028076171875, + 0.0089111328125, + 0.055419921875, + 0.047119140625, + -0.03564453125, + -0.0130615234375, + -0.021240234375, + -0.08056640625, + -0.0517578125, + 0.0135498046875, + -0.054443359375, + -0.01141357421875, + -0.048095703125, + -0.0272216796875, + 0.025390625, + -0.01202392578125, + 0.051025390625, + 0.2373046875, + 0.046875, + 0.000507354736328125, + 0.01806640625, + 0.03125, + -0.0230712890625, + -0.004180908203125, + 0.01336669921875, + -0.0283203125, + -0.0576171875, + 0.040283203125, + -0.0021209716796875, + -0.038818359375, + -0.0137939453125, + -0.0033111572265625, + -0.0196533203125, + -0.041015625, + -0.0296630859375, + 0.080078125, + 0.00860595703125, + 0.0306396484375, + 0.013916015625, + 0.00128173828125, + -0.0135498046875, + -0.07373046875, + -0.03759765625, + -0.0181884765625, + 0.0712890625, + 0.0184326171875, + 0.0419921875, + -0.0234375, + -0.0013275146484375, + 0.033447265625, + 0.03466796875, + -0.025146484375, + 0.01318359375, + 0.033935546875, + -0.00396728515625, + -0.006439208984375, + 0.0267333984375, + -0.024169921875, + -0.00787353515625, + -0.020751953125, + -0.023681640625, + -0.0164794921875, + 0.00732421875, + 0.018310546875, + -0.00180816650390625, + -0.008056640625, + -0.0301513671875, + 0.0213623046875, + 0.0069580078125, + -0.0025634765625, + -0.01495361328125, + -0.00469970703125, + -0.007659912109375, + 0.0042724609375, + 0.0205078125, + -0.040283203125, + 0.03369140625, + 0.00799560546875, + 0.043701171875, + -0.027587890625, + 0.01275634765625, + 0.02734375, + 0.028076171875, + -0.01531982421875, + -0.0166015625, + 0.0062255859375, + 0.0390625, + 0.0361328125, + 0.01092529296875, + 0.006927490234375, + -0.00933837890625, + 0.036376953125, + 0.02001953125, + -0.01495361328125, + 0.01141357421875, + 0.047119140625, + 0.05029296875, + 0.007476806640625, + -0.000629425048828125, + -0.0361328125, + 0.099609375, + -0.0016632080078125, + 0.021728515625, + 0.007232666015625, + 0.0201416015625, + 0.0147705078125, + 0.0145263671875, + 0.0106201171875, + 0.0037078857421875, + -0.07666015625, + -0.0181884765625, + 0.006927490234375, + -0.016845703125, + -0.0302734375, + 0.01495361328125, + -0.0196533203125, + -0.0361328125, + -0.0322265625, + -0.0198974609375, + 0.027099609375, + 0.01324462890625, + -0.0015411376953125, + -0.0111083984375, + -0.00946044921875, + 0.02197265625, + 0.004486083984375, + 0.01611328125, + -0.010986328125, + 0.0218505859375, + -0.031982421875, + -0.00144195556640625, + -0.02099609375, + 0.0245361328125, + -0.0380859375, + 0.0296630859375, + 0.040283203125, + 0.015380859375, + 0.037353515625, + -0.01513671875, + -0.0277099609375, + 0.0439453125, + -0.035400390625, + -0.0048828125, + -0.0150146484375, + 0.00860595703125, + -0.01068115234375, + 0.004425048828125, + 0.01171875, + -0.026123046875, + 0.03173828125, + 0.025390625, + 0.05029296875, + 0.051513671875, + 0.009521484375, + -0.0084228515625, + -0.0008544921875, + 0.005462646484375, + -0.00787353515625, + 0.004730224609375, + -0.057861328125, + 0.029296875, + 0.0093994140625, + 0.0264892578125, + -0.019287109375, + 0.0213623046875, + -0.0216064453125, + 0.01385498046875, + 0.02001953125, + 0.01904296875, + 0.0286865234375, + -0.04150390625, + -0.00909423828125, + -0.0174560546875, + 0.0018310546875, + -0.007476806640625, + -0.0311279296875, + -0.0169677734375, + -0.0223388671875, + 0.0048828125, + 0.0030670166015625, + 0.07080078125, + 0.002777099609375, + -0.0027923583984375, + -0.064453125, + 0.044921875, + -0.01300048828125, + -0.0184326171875, + 0.039306640625, + -0.003662109375, + -0.0272216796875, + 0.036376953125, + 0.01336669921875, + -0.003448486328125, + -0.0184326171875, + -0.0064697265625, + 0.01953125, + 0.016845703125, + 0.02197265625, + -0.009033203125, + -0.043701171875, + 0.032958984375, + 0.031494140625, + 0.00193023681640625, + 0.00836181640625, + -0.01025390625, + 0.0167236328125, + -0.00518798828125, + -0.0703125, + 0.0771484375, + -0.00921630859375, + -0.034912109375, + 0.0101318359375, + -0.00909423828125, + 0.05419921875, + 0.015869140625, + 0.0047607421875, + -0.00689697265625, + -0.00408935546875, + 0.023681640625, + 0.016357421875, + -0.01202392578125, + -0.004119873046875, + 0.017822265625, + -0.007781982421875, + 0.06298828125, + -0.0673828125, + 0.00092315673828125, + 0.0263671875, + -0.000274658203125, + 0.0242919921875, + -0.016357421875, + -0.04248046875, + -0.01513671875, + 0.060546875, + 0.030029296875, + -0.004119873046875, + 0.021728515625, + -0.04638671875, + -0.00732421875, + 0.0257568359375, + 0.00653076171875, + -0.005584716796875, + 0.03515625, + 0.037841796875, + -0.025390625, + -0.051513671875, + 0.01092529296875, + -0.00159454345703125, + -0.0361328125, + 0.02001953125, + -0.0458984375, + 0.044921875, + 0.01214599609375, + 0.056396484375, + 0.01214599609375, + -0.046875, + -0.056640625, + 0.0235595703125, + -0.0140380859375, + -0.0218505859375, + 0.029052734375, + 0.0118408203125, + 0.0439453125, + 0.0201416015625, + -0.06396484375, + 0.0272216796875, + 0.00469970703125, + 0.00445556640625, + -0.025390625, + 0.017578125, + -0.03515625, + 0.04345703125, + 0.052978515625, + -0.00933837890625, + 0.000392913818359375, + -0.060546875, + -0.03125, + -0.008544921875, + 0.015380859375, + -0.0022430419921875, + 0.00927734375, + 0.01129150390625, + -0.059814453125, + 0.01556396484375, + -0.00262451171875, + 0.00921630859375, + -0.0439453125, + 0.01153564453125, + -0.006683349609375, + -0.0380859375, + -0.03564453125, + 0.041015625, + 0.01806640625, + -0.0194091796875, + -0.006195068359375, + 0.039794921875, + 0.0003948211669921875, + 0.00518798828125, + 0.01239013671875, + -0.010009765625, + 0.023193359375, + 0.0194091796875, + 0.006805419921875, + 0.000926971435546875, + 0.0277099609375, + 0.051513671875, + 0.01806640625, + 0.018798828125, + 0.0189208984375, + -0.050537109375, + 0.0111083984375, + -0.01129150390625, + -0.01531982421875, + -0.02880859375, + 0.052978515625, + -0.06103515625, + 0.0235595703125, + -0.016357421875, + 0.0390625, + -0.0517578125, + -0.034423828125, + -0.01068115234375, + -0.035400390625, + -0.00970458984375, + -0.031982421875, + 0.0234375, + 0.035400390625, + -0.000240325927734375, + -0.06396484375, + -0.0191650390625, + -0.0189208984375, + 0.0033721923828125, + -0.032958984375, + -0.027099609375, + 0.0006561279296875, + 0.030517578125, + 0.0159912109375, + 0.021240234375, + -0.00067901611328125, + 0.01416015625, + -0.00933837890625, + -0.062255859375, + 0.00177764892578125, + 0.03076171875, + -0.0189208984375, + 0.0196533203125, + -0.002716064453125, + 0.0126953125, + -0.046142578125, + -0.031494140625, + 0.021728515625, + -0.00092315673828125, + 0.0419921875, + 0.0260009765625, + -0.017333984375, + 0.052978515625, + 0.0169677734375, + -0.0238037109375, + 0.00555419921875, + 0.0289306640625, + -0.033447265625, + -0.01123046875, + -0.0194091796875, + -0.0145263671875, + 0.018798828125, + -0.042724609375, + 0.004364013671875, + -0.0101318359375, + 0.0245361328125, + 0.01531982421875, + -0.083984375, + 0.04833984375, + 0.0146484375, + -0.043701171875, + 0.0211181640625, + 0.030517578125, + 0.006072998046875, + -0.00909423828125, + 0.0267333984375, + 0.0133056640625, + -0.042236328125, + 0.0181884765625, + 0.0361328125, + -0.01507568359375, + 0.00067901611328125, + 0.01129150390625, + -0.024658203125, + 0.029541015625, + 0.0703125, + 0.01263427734375, + -0.0089111328125, + -0.0693359375, + 0.0380859375, + 0.0201416015625, + -0.0050048828125, + 0.026123046875, + 0.0015106201171875, + -0.018798828125, + -0.0277099609375, + 0.0019989013671875, + -0.0419921875, + 0.04736328125, + -0.01226806640625, + -0.01422119140625, + -0.000347137451171875, + -0.01513671875, + 0.02197265625, + -0.03515625, + 0.003082275390625, + -0.010986328125, + -0.016357421875, + -0.166015625, + 0.020751953125, + 0.005645751953125, + -0.01409912109375, + -0.033935546875, + -0.0198974609375, + -0.0103759765625, + -0.017333984375, + -0.0272216796875, + -0.03564453125, + 0.0076904296875, + -0.03076171875, + -0.013671875, + -0.0093994140625, + -0.00604248046875, + 0.01416015625, + -0.005767822265625, + 0.007232666015625, + -0.0120849609375, + 0.029541015625, + -0.0003070831298828125, + -0.023193359375, + 0.033935546875, + -0.00677490234375, + -0.006317138671875, + 0.0186767578125, + -0.0213623046875, + -0.0162353515625, + -0.0255126953125, + -0.003997802734375, + -0.039794921875, + -0.0123291015625, + -0.00238037109375, + 0.043701171875, + 0.00860595703125, + -0.0269775390625, + 0.03271484375, + -0.043701171875, + -0.0235595703125, + 0.003662109375, + 0.005706787109375, + 0.0284423828125, + -0.01348876953125, + 0.0296630859375, + 0.031982421875, + -0.02490234375, + -0.06396484375, + 0.004150390625, + -0.045166015625, + 0.005462646484375, + -0.01080322265625, + 0.033935546875, + -0.00168609619140625, + 0.0019683837890625, + 0.0069580078125, + -0.0167236328125, + -0.036376953125, + -0.041259765625, + -0.0196533203125, + 0.03369140625, + -0.029052734375, + 0.00982666015625, + -0.017578125, + -0.045166015625, + -0.017578125, + -0.0015869140625, + -0.0159912109375, + -0.0036773681640625, + -0.00469970703125, + -0.003143310546875, + -0.05322265625, + 0.018310546875, + 0.0556640625, + -0.0130615234375, + -0.01129150390625, + -0.0238037109375, + 0.051513671875, + 0.01904296875, + -0.01190185546875, + -0.031494140625, + 0.0205078125, + -0.021240234375, + -0.01153564453125, + -0.01190185546875, + 0.03857421875, + 0.0096435546875, + -0.029541015625, + 0.0019989013671875, + -0.0172119140625, + -0.0211181640625, + -0.04248046875, + 0.01361083984375, + -0.00604248046875, + 0.01153564453125, + -0.0546875, + 0.005340576171875, + -0.0283203125, + -0.034423828125, + -0.01708984375, + -0.046875, + -0.022216796875, + -0.045654296875, + -0.0002079010009765625, + 0.00013446807861328125, + -0.0072021484375, + 0.0228271484375, + -0.00628662109375, + 0.005401611328125, + -0.0247802734375, + -0.00133514404296875, + -0.0048828125, + -0.024658203125, + -0.04833984375, + 0.025146484375, + -0.05322265625, + -0.01226806640625, + -0.036865234375, + 0.05517578125, + -0.0234375, + -0.031494140625, + 0.0234375, + -0.00836181640625, + 0.0771484375, + -0.034423828125, + -0.02294921875, + 0.0181884765625, + 0.05078125, + 0.013916015625, + 0.0032196044921875, + -0.009033203125, + 0.016357421875, + -0.03857421875, + 0.04638671875, + 0.0283203125, + 0.0546875, + 0.053955078125, + -0.05859375, + 0.01953125, + -0.037353515625, + -0.035888671875, + 0.0035247802734375, + -0.0206298828125, + -0.0002498626708984375, + -0.000453948974609375, + -0.027099609375, + -0.00830078125, + 0.045166015625, + 0.037841796875, + 0.014404296875, + -0.00750732421875, + -0.0284423828125, + -0.0093994140625, + 0.00927734375, + 0.06640625, + 0.029296875, + 0.0294189453125, + 0.0400390625, + -0.0213623046875, + 0.00933837890625, + 0.01239013671875, + -0.0162353515625, + -0.003997802734375, + -0.060302734375, + -0.0255126953125, + -0.0218505859375, + 0.043701171875, + -0.016357421875, + -0.0181884765625, + -0.0079345703125, + -0.0130615234375, + -0.01031494140625, + 0.0322265625, + -0.029052734375, + -0.0240478515625, + 0.01263427734375, + 0.02587890625, + -0.00347900390625, + -0.01953125, + 0.03076171875, + 0.0301513671875, + 0.0277099609375, + -0.000942230224609375, + -0.0234375, + 0.03564453125, + -0.0137939453125, + 0.060302734375, + 0.03564453125, + -0.026123046875, + 0.004241943359375, + 0.026611328125, + 0.037353515625, + 0.0005950927734375, + 0.001922607421875, + 0.0216064453125, + -0.006805419921875, + -0.0218505859375, + -0.00830078125, + 0.038330078125, + 0.026611328125, + 0.052001953125, + 0.01055908203125, + -0.05029296875, + -0.0751953125, + -0.0076904296875, + -0.0869140625, + -0.010009765625, + -0.00750732421875, + -0.033935546875, + -0.053955078125, + 0.0029296875, + -0.0299072265625, + -0.0042724609375, + -0.008056640625, + 0.024658203125, + 0.040283203125, + 0.021240234375, + 0.003326416015625, + -0.00933837890625, + -0.005157470703125, + 0.0172119140625, + -0.03271484375, + 0.007110595703125, + -0.0130615234375, + -0.036376953125, + -0.035888671875, + -0.0159912109375, + -0.027099609375, + -0.0087890625, + -0.012939453125, + 0.03759765625, + -0.0277099609375, + 0.0062255859375, + 0.0111083984375, + 0.076171875, + 0.0006103515625, + -0.01544189453125, + 0.04833984375, + -0.01904296875, + 0.016845703125, + 0.01092529296875, + 0.0390625, + -0.00167083740234375, + -0.057373046875, + -0.044921875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 13.310502999999585, + "queue_ms": 0.07223200000083807, + "tokenization_ms": 0.016640999994876893, + "inference_ms": 13.09074699999968, + "postprocessing_ms": null + } + }, + { + "id": "chunk-8", + "dense": [ + -0.040771484375, + -0.021484375, + -0.056884765625, + 0.004302978515625, + 0.00665283203125, + -0.04296875, + 0.013671875, + 0.07275390625, + -0.0322265625, + 0.036376953125, + 0.0211181640625, + -0.01287841796875, + -0.016845703125, + -0.0087890625, + -0.0218505859375, + -0.00823974609375, + 0.04345703125, + 0.000888824462890625, + 0.00543212890625, + 0.0177001953125, + -0.000705718994140625, + -0.018310546875, + 0.06494140625, + 0.0245361328125, + 0.01165771484375, + 0.01904296875, + -0.03173828125, + 0.0042724609375, + 0.02294921875, + -0.06005859375, + -0.0262451171875, + -0.037841796875, + 0.034912109375, + 0.031005859375, + -0.0218505859375, + -0.029296875, + 0.00013828277587890625, + 0.025146484375, + -0.038330078125, + 0.0216064453125, + 0.0023345947265625, + -0.0004215240478515625, + -0.0086669921875, + -0.03955078125, + 0.021728515625, + -0.0458984375, + 0.012451171875, + -0.0240478515625, + 0.03759765625, + 0.01123046875, + -0.0228271484375, + -0.0242919921875, + 0.0128173828125, + -0.0218505859375, + 0.034423828125, + 0.0011749267578125, + -0.031982421875, + 0.0201416015625, + -0.033203125, + 0.01434326171875, + -0.019287109375, + -0.0235595703125, + -0.021240234375, + -0.0181884765625, + 0.07568359375, + 0.07958984375, + 0.0167236328125, + -0.0244140625, + -0.004913330078125, + -0.019287109375, + -0.00396728515625, + -0.029296875, + -0.01348876953125, + 0.0084228515625, + -0.03955078125, + 0.0322265625, + 0.0250244140625, + -0.041748046875, + -0.02490234375, + 0.0299072265625, + 0.0517578125, + 0.004974365234375, + 0.0184326171875, + 0.0030059814453125, + -0.00872802734375, + 0.0225830078125, + 0.0035400390625, + 0.032958984375, + 0.001129150390625, + 0.02734375, + 0.0076904296875, + 0.0224609375, + -0.00823974609375, + -0.0216064453125, + -0.01507568359375, + 0.00665283203125, + -0.0107421875, + -0.0189208984375, + 0.02490234375, + 0.0042724609375, + 0.00469970703125, + 0.0262451171875, + 0.02783203125, + -0.03369140625, + 0.0162353515625, + -0.042236328125, + 0.029296875, + 0.0203857421875, + 0.0260009765625, + -0.0062255859375, + 0.01806640625, + 0.00677490234375, + -0.00799560546875, + 0.04345703125, + 0.0025482177734375, + -0.019775390625, + 0.0107421875, + -0.05322265625, + 0.01348876953125, + -0.008544921875, + 0.04248046875, + 0.022216796875, + -0.00885009765625, + -0.052490234375, + 0.0279541015625, + -0.041015625, + 0.0223388671875, + 0.0126953125, + 0.0098876953125, + 0.0245361328125, + -0.0267333984375, + -0.0107421875, + 0.00860595703125, + -0.00191497802734375, + -0.02978515625, + -0.01953125, + 0.0203857421875, + 0.03515625, + -0.004730224609375, + -0.038330078125, + 0.04736328125, + -0.01416015625, + -0.0174560546875, + -0.00811767578125, + -0.0196533203125, + -0.0081787109375, + 0.00506591796875, + -0.0238037109375, + 0.00848388671875, + 0.01361083984375, + -0.01080322265625, + -0.00677490234375, + -0.009765625, + -0.034423828125, + 0.034912109375, + -0.0035858154296875, + 0.0242919921875, + -0.0107421875, + -0.033935546875, + 0.0263671875, + 0.0142822265625, + 0.051513671875, + -0.0262451171875, + -0.002960205078125, + 0.04443359375, + 0.01336669921875, + 0.0001697540283203125, + 0.004150390625, + -0.0257568359375, + -0.04443359375, + 0.0341796875, + -0.048095703125, + 0.0184326171875, + -0.045166015625, + 0.0208740234375, + 0.02099609375, + 0.031494140625, + 0.0201416015625, + 0.0140380859375, + -0.040771484375, + -0.0556640625, + 0.058349609375, + -0.0096435546875, + -0.0267333984375, + -0.0159912109375, + -0.0146484375, + -0.037841796875, + -0.017578125, + -0.029296875, + 0.043701171875, + 0.013916015625, + 0.0211181640625, + 0.0111083984375, + 0.005615234375, + -0.0267333984375, + 0.01031494140625, + 0.040283203125, + -0.003936767578125, + -0.0250244140625, + 0.0244140625, + 0.0021820068359375, + 0.0206298828125, + 0.0634765625, + 0.0196533203125, + -0.01507568359375, + -0.0205078125, + -0.0211181640625, + -0.046142578125, + 0.00787353515625, + -0.043212890625, + 0.0068359375, + 0.0634765625, + -0.0125732421875, + 0.0216064453125, + -0.008544921875, + 0.021728515625, + 0.0078125, + -0.004364013671875, + -0.021240234375, + -0.01123046875, + 0.0048828125, + 0.002410888671875, + -0.002105712890625, + -0.052978515625, + 0.06201171875, + 0.00628662109375, + -0.0036468505859375, + 0.0244140625, + -0.01611328125, + -0.046630859375, + -0.0037078857421875, + -0.0186767578125, + -0.01080322265625, + -0.00933837890625, + 0.072265625, + 0.034423828125, + 0.00848388671875, + -0.0262451171875, + 0.0145263671875, + 0.02880859375, + -0.048095703125, + -0.0208740234375, + -0.037109375, + 0.00750732421875, + -0.041015625, + -0.0216064453125, + 0.023681640625, + -0.0017242431640625, + -0.0089111328125, + 0.00860595703125, + -0.0157470703125, + 0.0166015625, + 0.0224609375, + -0.00116729736328125, + 0.0712890625, + 0.000743865966796875, + 0.01483154296875, + -0.031494140625, + -0.007171630859375, + -0.022216796875, + 0.053466796875, + 0.0123291015625, + 0.007354736328125, + 0.04638671875, + 0.01080322265625, + -0.0225830078125, + -0.006988525390625, + -0.07666015625, + 0.01806640625, + 0.006256103515625, + -0.0142822265625, + -0.0306396484375, + -0.0169677734375, + 0.03857421875, + 0.03662109375, + 0.021728515625, + -0.0152587890625, + -0.036865234375, + 0.034912109375, + -0.00689697265625, + 0.00506591796875, + 0.06787109375, + 0.06591796875, + 0.018798828125, + 0.028076171875, + 0.0006866455078125, + 0.01422119140625, + -0.04248046875, + 0.039794921875, + 0.003814697265625, + -0.00201416015625, + 0.013916015625, + 0.058837890625, + 0.027099609375, + -0.054443359375, + -0.03515625, + -0.01226806640625, + -0.1484375, + -0.01318359375, + -0.01495361328125, + -0.041748046875, + 0.00994873046875, + 0.0185546875, + 0.0263671875, + -0.00927734375, + -0.048095703125, + -0.0076904296875, + -0.050048828125, + -0.0224609375, + -0.039306640625, + 0.006805419921875, + -0.005615234375, + -0.0252685546875, + -0.03759765625, + -0.021484375, + 0.0118408203125, + -0.031494140625, + 0.05419921875, + -0.005645751953125, + 0.0260009765625, + 0.002532958984375, + 0.021484375, + -0.006011962890625, + 0.06201171875, + 0.010986328125, + -0.041259765625, + -0.0167236328125, + -0.0020599365234375, + -0.0072021484375, + -0.004302978515625, + 0.06982421875, + 0.0172119140625, + 0.03564453125, + 0.08984375, + -0.047119140625, + 0.001739501953125, + -0.019287109375, + 0.01416015625, + 0.0029449462890625, + -0.00927734375, + 0.014892578125, + 0.01611328125, + -0.04345703125, + 0.01220703125, + -0.0242919921875, + -0.01904296875, + -0.0322265625, + 0.00982666015625, + 0.003448486328125, + -0.023681640625, + 0.027099609375, + 0.047119140625, + 0.01251220703125, + -0.029296875, + -0.0021209716796875, + -0.0390625, + 0.047119140625, + 0.00579833984375, + -0.0361328125, + -0.00537109375, + -0.002899169921875, + -0.041015625, + 0.00872802734375, + 0.007537841796875, + -0.0673828125, + -0.020263671875, + -0.0272216796875, + 0.015380859375, + 0.0283203125, + 0.05126953125, + -0.00384521484375, + -0.01531982421875, + -0.003448486328125, + -0.04052734375, + -0.041015625, + -0.0380859375, + -0.09619140625, + -0.03369140625, + -0.01336669921875, + -0.0093994140625, + -0.019775390625, + -0.047607421875, + 0.0133056640625, + 0.0205078125, + 0.017578125, + 0.035888671875, + 0.21875, + -0.00421142578125, + -0.0017852783203125, + -0.083984375, + 0.08251953125, + 0.0208740234375, + 0.0107421875, + 0.032958984375, + -0.0283203125, + -0.043212890625, + -0.00469970703125, + 0.01251220703125, + 0.025634765625, + -0.028076171875, + 0.0439453125, + -0.0181884765625, + -0.01495361328125, + -0.032470703125, + 0.0615234375, + -0.004486083984375, + 0.042236328125, + -0.027099609375, + 0.0751953125, + 0.032470703125, + -0.019775390625, + -0.03955078125, + -0.0267333984375, + 0.033447265625, + -0.0201416015625, + 0.0291748046875, + -0.001220703125, + -0.021240234375, + 0.0634765625, + -0.00701904296875, + -0.040283203125, + 0.00274658203125, + -0.00982666015625, + -0.0264892578125, + -0.0084228515625, + -0.0301513671875, + -0.01531982421875, + -0.038330078125, + 0.0439453125, + 0.00311279296875, + 0.0016021728515625, + -0.01385498046875, + -0.01507568359375, + -0.02197265625, + 0.032958984375, + 0.006988525390625, + 0.012939453125, + -0.005096435546875, + -0.01806640625, + -0.04345703125, + -0.0322265625, + -0.00152587890625, + -0.031982421875, + 0.00122833251953125, + -0.0634765625, + 0.05517578125, + 0.0277099609375, + 0.0089111328125, + -0.06494140625, + 0.00074005126953125, + -0.0203857421875, + -0.012939453125, + -0.034423828125, + -0.08447265625, + 0.02490234375, + 0.02197265625, + 0.048828125, + 0.01031494140625, + 0.034912109375, + 0.0225830078125, + 0.059814453125, + -0.033447265625, + 0.01141357421875, + 0.0615234375, + -0.037841796875, + -0.0133056640625, + -0.0133056640625, + -0.018798828125, + -0.0145263671875, + 0.00201416015625, + 0.00677490234375, + -0.00946044921875, + -0.00677490234375, + 0.068359375, + -0.0556640625, + -0.052978515625, + 0.021240234375, + -0.0240478515625, + -0.0228271484375, + 0.005645751953125, + -0.0198974609375, + 0.01953125, + 0.02197265625, + 0.030029296875, + -0.0111083984375, + -0.07421875, + -0.04248046875, + 0.01348876953125, + -0.0169677734375, + -0.023681640625, + 0.052978515625, + -0.039306640625, + -0.03076171875, + -0.0211181640625, + -0.00494384765625, + -0.0167236328125, + -0.007293701171875, + 0.01116943359375, + -0.009033203125, + -0.0284423828125, + 0.01019287109375, + 0.033203125, + -0.00469970703125, + 0.0037384033203125, + -0.01092529296875, + 0.0107421875, + 0.00109100341796875, + -0.0301513671875, + -0.039794921875, + -0.043212890625, + -0.02099609375, + -0.0008544921875, + -0.001983642578125, + -0.029052734375, + 0.00677490234375, + -0.01708984375, + 0.015869140625, + -0.0211181640625, + -0.0277099609375, + 0.06787109375, + 0.04296875, + 0.0020599365234375, + -0.01220703125, + 0.00921630859375, + -0.0380859375, + -0.01055908203125, + -0.0240478515625, + -0.01495361328125, + -0.010986328125, + -0.00933837890625, + -0.035400390625, + 0.02978515625, + -0.058349609375, + 0.005401611328125, + -0.006988525390625, + 0.040283203125, + 0.051513671875, + 0.0267333984375, + 0.019775390625, + -0.0228271484375, + -0.031494140625, + -0.005889892578125, + 0.01116943359375, + 0.0068359375, + 0.0272216796875, + -0.031494140625, + -0.007598876953125, + -0.00848388671875, + 0.0595703125, + 0.05078125, + 0.0260009765625, + 0.052490234375, + 0.005645751953125, + 0.0478515625, + 0.0020904541015625, + 0.00445556640625, + 0.0198974609375, + -0.0546875, + -0.03466796875, + 0.061279296875, + -0.002716064453125, + -0.0016021728515625, + 0.00099945068359375, + -0.01312255859375, + 0.0098876953125, + -0.01416015625, + 0.052001953125, + -0.00689697265625, + -0.02099609375, + 0.056884765625, + -0.006317138671875, + -0.00421142578125, + -0.08251953125, + -0.032470703125, + 0.045654296875, + -0.00274658203125, + 0.0089111328125, + 0.1396484375, + 0.004638671875, + -0.004180908203125, + 0.0162353515625, + -0.0111083984375, + 0.004241943359375, + 0.0673828125, + 0.0218505859375, + -0.01806640625, + 0.033447265625, + -0.034912109375, + -0.0028076171875, + -0.026611328125, + 0.0118408203125, + 0.01287841796875, + 0.029052734375, + 0.018798828125, + -0.022216796875, + -0.046142578125, + 0.0172119140625, + -0.00823974609375, + -0.0086669921875, + -0.01708984375, + 0.009033203125, + -0.031494140625, + 0.05712890625, + 0.03173828125, + 0.0439453125, + -0.053466796875, + -0.0128173828125, + -0.0057373046875, + 0.025146484375, + -0.007659912109375, + 0.040283203125, + 0.00848388671875, + -0.0244140625, + -0.0228271484375, + 0.039794921875, + -0.0269775390625, + 0.00592041015625, + 0.0084228515625, + 0.01080322265625, + -0.059814453125, + 0.032470703125, + -0.052490234375, + 0.02978515625, + 0.00885009765625, + 0.01519775390625, + -0.0439453125, + 0.0216064453125, + -0.03955078125, + -0.040771484375, + 0.01025390625, + -0.021728515625, + 0.04345703125, + 0.000446319580078125, + -0.04248046875, + 0.0257568359375, + 0.06982421875, + 0.019287109375, + 0.004364013671875, + -0.0196533203125, + -0.011474609375, + 0.0020904541015625, + -0.003753662109375, + -0.01318359375, + -0.00836181640625, + -0.00433349609375, + -0.01483154296875, + -0.0068359375, + 0.035400390625, + -0.001861572265625, + 0.01153564453125, + -0.01422119140625, + -0.007080078125, + 0.0260009765625, + -0.009765625, + -0.0181884765625, + 0.016357421875, + 0.031982421875, + 0.00787353515625, + -0.05322265625, + -0.009765625, + -0.032958984375, + 0.01129150390625, + -0.0242919921875, + -0.0029754638671875, + 0.0177001953125, + 0.002685546875, + 0.01312255859375, + -0.02197265625, + -0.01385498046875, + 0.003753662109375, + 0.01220703125, + 0.00506591796875, + -0.000949859619140625, + 0.03271484375, + -0.01263427734375, + -0.03662109375, + 0.047607421875, + -0.0233154296875, + -0.0498046875, + 0.0128173828125, + -0.0191650390625, + -0.04736328125, + -0.030517578125, + 0.02099609375, + -0.01007080078125, + 0.0157470703125, + -0.0079345703125, + 0.0390625, + -0.010498046875, + -0.004180908203125, + 0.0341796875, + 0.012939453125, + 0.0244140625, + -0.016845703125, + 0.0162353515625, + 0.034912109375, + 0.006103515625, + -0.044677734375, + -0.01055908203125, + 0.0166015625, + -0.01190185546875, + -0.0172119140625, + 0.050537109375, + 0.03173828125, + 0.018798828125, + 0.03515625, + 0.012939453125, + 0.0225830078125, + 0.000736236572265625, + 0.03857421875, + -0.0576171875, + 0.0390625, + 0.0235595703125, + 0.0185546875, + -0.01007080078125, + -0.00872802734375, + -0.017822265625, + -0.03125, + -0.04052734375, + -0.02392578125, + 0.02294921875, + 0.013671875, + 0.027099609375, + -0.036865234375, + 0.0162353515625, + -0.0181884765625, + 0.00225830078125, + -0.054443359375, + 0.050537109375, + -0.022216796875, + -0.007293701171875, + -0.0228271484375, + 0.009765625, + -0.0098876953125, + 0.0086669921875, + -0.0003261566162109375, + -0.0021820068359375, + 0.0189208984375, + -0.039794921875, + 0.01019287109375, + -0.036865234375, + 0.032958984375, + 0.01007080078125, + 0.08740234375, + 0.0035858154296875, + 0.0252685546875, + -0.0159912109375, + 0.05615234375, + -0.031982421875, + 0.0101318359375, + -0.0027313232421875, + -0.010498046875, + -0.030029296875, + 0.0625, + -0.025146484375, + -0.0106201171875, + -0.0478515625, + 0.0025482177734375, + -0.041015625, + 0.0140380859375, + -0.0224609375, + 0.03515625, + -0.036865234375, + 0.0111083984375, + 0.01361083984375, + 0.036376953125, + -0.035888671875, + -0.053955078125, + -0.0189208984375, + -0.010498046875, + 0.0703125, + 0.044921875, + -0.00543212890625, + 0.0157470703125, + 0.0087890625, + 0.029052734375, + -0.053955078125, + 0.01470947265625, + -0.0703125, + 0.0225830078125, + -0.1396484375, + 0.0086669921875, + -0.0233154296875, + -0.037841796875, + -0.02197265625, + -0.00897216796875, + -0.01202392578125, + -0.018798828125, + -0.013671875, + -0.052978515625, + -0.01287841796875, + 0.029296875, + 0.00726318359375, + -0.021484375, + -0.036865234375, + 0.0238037109375, + 0.024658203125, + 0.032470703125, + -0.0087890625, + -0.03076171875, + 0.009521484375, + -0.0216064453125, + -0.02783203125, + -0.015869140625, + -0.025146484375, + -0.007781982421875, + -0.021728515625, + -0.018310546875, + -0.033447265625, + 0.01953125, + -0.0267333984375, + -0.01141357421875, + 0.0098876953125, + 0.048828125, + -0.020263671875, + -0.0150146484375, + 0.0205078125, + -0.0245361328125, + 0.01251220703125, + 0.027587890625, + -0.0185546875, + 0.04345703125, + -0.0196533203125, + -0.0238037109375, + -0.016845703125, + -0.00439453125, + -0.0250244140625, + -0.01507568359375, + -0.078125, + 0.052734375, + -0.06298828125, + 0.02587890625, + -0.0205078125, + -0.014892578125, + 0.0064697265625, + 0.018310546875, + -0.0159912109375, + 0.04638671875, + -0.0106201171875, + 0.08154296875, + 0.02294921875, + 0.0252685546875, + -0.011962890625, + -0.03857421875, + -0.004241943359375, + 0.031494140625, + 0.040283203125, + 0.017578125, + -0.019287109375, + 0.01806640625, + -0.0322265625, + -0.0184326171875, + 0.013671875, + -0.035400390625, + -0.004974365234375, + 0.0225830078125, + 0.041015625, + -0.0123291015625, + -0.008056640625, + -0.0284423828125, + -0.0035400390625, + 0.00665283203125, + -0.0673828125, + 0.03564453125, + 0.0277099609375, + 0.01318359375, + -0.006683349609375, + -0.02734375, + -0.02880859375, + 0.02734375, + -0.06005859375, + 0.003997802734375, + -0.002471923828125, + 0.01416015625, + -0.02294921875, + -0.021728515625, + -0.06396484375, + 0.01318359375, + 0.004302978515625, + -0.0079345703125, + -0.0615234375, + 0.00445556640625, + -0.034912109375, + -0.00177001953125, + 0.00811767578125, + 0.03076171875, + 0.035888671875, + -0.007080078125, + 0.01422119140625, + 0.006439208984375, + -0.037109375, + -0.001953125, + 0.00141143798828125, + -0.0021820068359375, + -0.07177734375, + 0.002685546875, + 0.048828125, + -0.01556396484375, + 0.000568389892578125, + -0.0034942626953125, + 0.0020904541015625, + -0.0264892578125, + -0.023681640625, + -0.037353515625, + 0.0252685546875, + 0.0283203125, + 0.0184326171875, + 0.001983642578125, + -0.00439453125, + -0.01287841796875, + 0.056884765625, + 0.017333984375, + 0.0218505859375, + 0.03076171875, + -0.005584716796875, + -0.061279296875, + 0.003448486328125, + 0.0264892578125, + -0.045166015625, + -0.034912109375, + 0.00156402587890625, + -0.0233154296875, + 0.00185394287109375, + 0.007171630859375, + 0.03173828125, + 0.004241943359375, + 0.0478515625, + -0.004364013671875, + -0.0296630859375, + -0.033447265625, + 0.027099609375, + 0.005950927734375, + -0.016845703125, + 0.0306396484375, + -0.00555419921875, + 0.0294189453125, + 0.000949859619140625, + -0.01129150390625, + -0.014404296875, + 0.03955078125, + -0.0125732421875, + -0.0634765625, + -0.0019989013671875, + -0.033935546875, + -0.053955078125, + 0.0084228515625, + 0.031494140625, + -0.0291748046875, + -0.0157470703125, + 0.01458740234375, + 0.009765625, + 0.06982421875, + -0.0269775390625, + 0.034423828125, + 0.01953125, + -0.09521484375, + 0.034912109375, + -0.032470703125, + 0.04931640625, + -0.03125, + 0.03564453125, + -0.0142822265625, + 0.0096435546875, + 0.0277099609375, + -0.019775390625, + 0.0216064453125, + -0.0166015625, + 0.0191650390625, + -0.02734375, + 0.0211181640625, + -0.019287109375, + 0.020263671875, + -0.015869140625, + -0.00897216796875, + 0.0311279296875, + 0.045166015625, + 0.0137939453125, + 0.031494140625, + 0.0106201171875, + 0.045166015625, + 0.039794921875, + 0.009765625, + -0.0390625, + -0.005096435546875, + -0.0279541015625, + 0.0152587890625, + 0.021484375, + -0.03955078125, + -0.01336669921875, + 0.039306640625, + -0.0634765625, + -0.01806640625, + 0.0228271484375, + 0.0224609375, + -0.00157928466796875, + 0.0036773681640625, + 0.0189208984375, + 0.0240478515625, + -0.007476806640625, + -0.0283203125, + -0.027587890625, + 0.006072998046875, + 0.0012359619140625, + -0.032470703125, + -0.0228271484375, + 0.0191650390625, + 0.00020694732666015625, + 0.006805419921875, + 0.0181884765625, + 0.007354736328125, + 0.0299072265625, + 0.0098876953125, + -0.0284423828125, + -0.0093994140625, + 0.021484375, + -0.016357421875, + -0.0101318359375, + -0.00537109375, + -0.044677734375, + 0.012939453125, + 0.057373046875, + -0.028076171875, + -0.00482177734375, + 0.03759765625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 13.701811000004227, + "queue_ms": 1.3016660000033653, + "tokenization_ms": 0.02821999999724767, + "inference_ms": 12.013575999993975, + "postprocessing_ms": null + } + }, + { + "id": "chunk-9", + "dense": [ + -0.0272216796875, + 0.01324462890625, + 0.002349853515625, + -0.060791015625, + -0.022216796875, + 0.0126953125, + -0.049072265625, + 0.006011962890625, + -0.0162353515625, + -0.009033203125, + 0.03173828125, + 0.043701171875, + 0.005096435546875, + 0.0196533203125, + 0.037109375, + 0.043212890625, + 0.028076171875, + -0.05322265625, + -0.013916015625, + -0.04150390625, + 0.039306640625, + 0.04296875, + 0.036376953125, + 0.022216796875, + 0.030029296875, + 0.00787353515625, + -0.036865234375, + 0.01385498046875, + 0.04150390625, + -0.0084228515625, + -0.0172119140625, + -0.0079345703125, + 0.0264892578125, + 0.009033203125, + -0.0257568359375, + -0.02392578125, + 0.0247802734375, + -0.0257568359375, + -0.039306640625, + 0.0093994140625, + 0.0284423828125, + -0.0211181640625, + -0.0255126953125, + -0.05224609375, + 0.027587890625, + -0.03466796875, + -0.0005645751953125, + -0.02099609375, + 0.02001953125, + 0.01080322265625, + 0.004425048828125, + -0.0028228759765625, + -0.004119873046875, + 0.000537872314453125, + 0.0147705078125, + -0.00104522705078125, + 0.03173828125, + -0.0419921875, + -0.000621795654296875, + -0.01953125, + 0.014404296875, + -0.0157470703125, + -0.072265625, + 0.0166015625, + 0.01336669921875, + 0.08056640625, + 0.013916015625, + -0.031982421875, + -0.02001953125, + -0.0206298828125, + -0.000152587890625, + -0.00543212890625, + 0.03369140625, + -0.0242919921875, + -0.05322265625, + 0.00933837890625, + 0.0184326171875, + 0.048583984375, + 0.00750732421875, + 0.031494140625, + 0.057861328125, + -0.0086669921875, + 0.07177734375, + 0.00811767578125, + 0.0322265625, + -0.00457763671875, + -0.04150390625, + 0.0673828125, + -0.01806640625, + 0.0196533203125, + 0.011962890625, + 0.032470703125, + 0.0218505859375, + -0.036865234375, + -0.034912109375, + -0.0206298828125, + -0.006103515625, + -0.03662109375, + 0.01904296875, + -0.02880859375, + -0.01483154296875, + -0.00189208984375, + 0.0673828125, + -0.06396484375, + -0.002685546875, + -0.0216064453125, + 0.047607421875, + 0.0220947265625, + 0.01300048828125, + -0.00390625, + 0.013671875, + -0.01123046875, + -0.003326416015625, + 0.00811767578125, + -0.0032196044921875, + -0.009033203125, + -0.0152587890625, + -0.038818359375, + -0.0517578125, + -0.0091552734375, + 0.0732421875, + 0.0096435546875, + -0.0115966796875, + -0.03173828125, + -0.04052734375, + -0.023193359375, + 0.030517578125, + -0.0032501220703125, + -0.014404296875, + 0.0277099609375, + 0.00537109375, + -0.01287841796875, + -0.020263671875, + -0.0274658203125, + 0.0277099609375, + -0.0400390625, + 0.03759765625, + 0.0634765625, + -0.017578125, + -0.03759765625, + 0.0186767578125, + -0.0164794921875, + 0.001129150390625, + 0.0111083984375, + -0.0223388671875, + 0.0036163330078125, + -0.03466796875, + 0.0015716552734375, + 0.006561279296875, + 0.0224609375, + -0.00171661376953125, + -0.0240478515625, + -0.01458740234375, + 0.025390625, + 0.000652313232421875, + -0.0341796875, + -0.0031280517578125, + -0.0230712890625, + -0.0242919921875, + 0.023681640625, + 0.0267333984375, + 0.0162353515625, + -0.04443359375, + -0.00927734375, + 0.042236328125, + 0.0107421875, + 0.0245361328125, + 0.01104736328125, + -0.0269775390625, + 0.004852294921875, + 0.0228271484375, + 0.0010833740234375, + 0.0224609375, + 0.0145263671875, + 0.00811767578125, + 0.04736328125, + 0.06982421875, + 0.0244140625, + 0.0042724609375, + -0.041748046875, + -0.044677734375, + 0.045166015625, + 0.048583984375, + -0.01953125, + 0.009033203125, + -0.0198974609375, + -0.046142578125, + -0.0068359375, + -0.00390625, + 0.0184326171875, + 0.0089111328125, + -0.005950927734375, + -0.00506591796875, + -0.024658203125, + 0.050537109375, + 0.032470703125, + 0.05029296875, + 0.0003490447998046875, + -0.00689697265625, + 0.0033416748046875, + -0.0252685546875, + 0.048828125, + 0.0283203125, + -0.013671875, + -0.001220703125, + -0.00634765625, + -0.0157470703125, + -0.06787109375, + 0.0196533203125, + -0.07861328125, + 0.0034332275390625, + 0.0137939453125, + -0.0242919921875, + -0.0179443359375, + -0.002349853515625, + -0.0050048828125, + 0.0201416015625, + 0.00921630859375, + 0.034423828125, + 0.0047607421875, + -0.0081787109375, + 0.00885009765625, + 0.0137939453125, + -0.034912109375, + 0.0196533203125, + -0.0322265625, + -0.033203125, + -0.00885009765625, + 0.00469970703125, + -0.08837890625, + 0.04150390625, + 0.0079345703125, + -0.0157470703125, + -0.0157470703125, + 0.06298828125, + 0.01007080078125, + -0.0216064453125, + 0.017578125, + 0.060546875, + 0.0240478515625, + -0.0296630859375, + 0.0322265625, + 0.01055908203125, + 0.035888671875, + -0.01165771484375, + -0.0003814697265625, + -0.0159912109375, + -0.020263671875, + -0.01348876953125, + -0.0013885498046875, + -0.005157470703125, + 0.0281982421875, + -0.01226806640625, + 0.0101318359375, + 0.025146484375, + -0.015625, + -0.01385498046875, + -0.009521484375, + 0.042724609375, + -0.018310546875, + 0.01300048828125, + 0.0235595703125, + -0.016845703125, + 0.041259765625, + 0.00897216796875, + -0.040283203125, + -0.07177734375, + 0.01123046875, + -0.0017852783203125, + 0.0230712890625, + 0.05078125, + -0.035400390625, + -0.050537109375, + 0.0057373046875, + 0.0673828125, + 0.0081787109375, + -0.0115966796875, + 0.0322265625, + -0.0238037109375, + 0.01904296875, + -0.00286865234375, + -0.0166015625, + 0.0230712890625, + 0.0032806396484375, + 0.009765625, + -0.035400390625, + 0.0020751953125, + -0.01263427734375, + 0.0179443359375, + 0.006439208984375, + 0.005645751953125, + 0.01324462890625, + 0.07373046875, + 0.03662109375, + -0.042724609375, + -0.02978515625, + 0.009033203125, + -0.130859375, + 0.01324462890625, + -0.024658203125, + -0.041748046875, + -0.003509521484375, + -0.001434326171875, + 0.0003032684326171875, + -0.037353515625, + -0.030517578125, + -0.00156402587890625, + 0.00823974609375, + -0.04345703125, + -0.029541015625, + 0.024658203125, + -0.0240478515625, + -0.00848388671875, + -0.06298828125, + -0.035888671875, + 0.0225830078125, + -0.0255126953125, + -0.037353515625, + 0.00732421875, + -0.0045166015625, + -0.03759765625, + 0.0001850128173828125, + -0.01129150390625, + 0.0208740234375, + 0.005584716796875, + -0.0380859375, + 0.0017852783203125, + 0.0296630859375, + -0.00836181640625, + -0.0166015625, + 0.042236328125, + 0.0172119140625, + 0.0196533203125, + -0.0030670166015625, + -0.0284423828125, + -0.036376953125, + 0.0013427734375, + 0.004425048828125, + 0.0390625, + -0.0166015625, + 0.0179443359375, + 0.053955078125, + 0.0004291534423828125, + -0.002899169921875, + 0.005645751953125, + -0.0223388671875, + -0.00098419189453125, + 0.02783203125, + 0.0306396484375, + -0.0086669921875, + -0.0380859375, + 0.0150146484375, + 0.006927490234375, + 0.039306640625, + 0.00616455078125, + -0.0830078125, + 0.0244140625, + -0.00628662109375, + -0.027587890625, + -0.00628662109375, + -0.005645751953125, + 0.004180908203125, + -0.01348876953125, + -0.018310546875, + -0.01300048828125, + 0.003936767578125, + -0.0015716552734375, + 0.048095703125, + 0.02001953125, + 0.0400390625, + 0.018310546875, + 0.032958984375, + 0.033203125, + -0.0284423828125, + -0.016357421875, + -0.02978515625, + -0.10009765625, + -0.07861328125, + -0.030029296875, + -0.01055908203125, + 0.009765625, + -0.03466796875, + 0.00823974609375, + 0.0050048828125, + -0.0011749267578125, + 0.0269775390625, + 0.224609375, + 0.0291748046875, + -0.0264892578125, + 0.017578125, + 0.04736328125, + 0.047119140625, + 0.049072265625, + 0.035888671875, + -0.0302734375, + -0.054931640625, + -0.017578125, + -0.03857421875, + -0.023681640625, + -0.026611328125, + 0.01348876953125, + 0.0038909912109375, + -0.050537109375, + -0.028564453125, + 0.07177734375, + 0.0086669921875, + 0.021484375, + 0.035400390625, + -0.00107574462890625, + -0.0164794921875, + -0.042724609375, + -0.04736328125, + 0.006561279296875, + 0.05859375, + -0.009521484375, + -0.02294921875, + 0.0213623046875, + -0.031494140625, + 0.03857421875, + -0.00701904296875, + 0.0048828125, + 0.040283203125, + 0.0257568359375, + -0.01495361328125, + 0.004241943359375, + 0.01031494140625, + 0.038818359375, + -0.017333984375, + -0.00787353515625, + -0.0306396484375, + -0.041259765625, + 0.01080322265625, + -0.010009765625, + -0.013916015625, + 0.0115966796875, + -0.032470703125, + 0.03466796875, + 0.01300048828125, + -0.048095703125, + -0.027587890625, + 0.004150390625, + -0.0242919921875, + -0.005340576171875, + -0.0123291015625, + -0.043701171875, + 0.080078125, + 0.0235595703125, + 0.04296875, + -0.0130615234375, + 0.00958251953125, + -0.0281982421875, + 0.01007080078125, + -0.02392578125, + 0.00323486328125, + -0.00958251953125, + 0.0322265625, + 0.043212890625, + 0.000553131103515625, + -0.00384521484375, + 0.023681640625, + 0.07177734375, + -0.01531982421875, + -0.033447265625, + 0.0400390625, + 0.01123046875, + 0.03564453125, + 0.004608154296875, + -0.01611328125, + -0.029541015625, + 0.0595703125, + 0.0123291015625, + -0.031494140625, + -0.006072998046875, + 0.03759765625, + -0.033935546875, + 0.011474609375, + 0.009521484375, + -0.005706787109375, + -0.053466796875, + -0.00185394287109375, + -0.05712890625, + -0.01495361328125, + -0.04296875, + 0.0038909912109375, + -0.01239013671875, + -0.0027618408203125, + -0.02978515625, + -0.03125, + -0.005157470703125, + -0.057861328125, + -0.00238037109375, + -0.01611328125, + -0.00885009765625, + -0.01361083984375, + -0.00885009765625, + -0.010009765625, + -0.031494140625, + -0.004364013671875, + -0.044677734375, + -0.00029754638671875, + 0.032958984375, + -0.0164794921875, + -0.02099609375, + 0.01141357421875, + 0.0185546875, + 0.055419921875, + -0.007415771484375, + -0.040283203125, + -0.040771484375, + -0.002532958984375, + -0.054931640625, + 0.01373291015625, + -0.0164794921875, + -0.052978515625, + -0.0203857421875, + 0.00860595703125, + -0.01177978515625, + -0.00738525390625, + -0.03271484375, + -0.00885009765625, + 0.029296875, + 0.0380859375, + 0.00141143798828125, + -0.0159912109375, + 0.00830078125, + 0.01495361328125, + 0.024658203125, + 0.01611328125, + -0.05224609375, + 0.05810546875, + 0.016357421875, + 0.006439208984375, + -0.080078125, + 0.00014972686767578125, + 0.0390625, + -0.0076904296875, + 0.005889892578125, + -0.001708984375, + 0.0164794921875, + -0.051025390625, + -0.015869140625, + -0.022216796875, + -0.00102996826171875, + 0.008056640625, + 0.0137939453125, + -0.0546875, + -0.044677734375, + -0.00921630859375, + 0.03515625, + 0.0556640625, + 0.01031494140625, + 0.033935546875, + -0.032958984375, + 0.0303955078125, + 0.026611328125, + 0.0228271484375, + 0.023681640625, + 0.0224609375, + -0.045654296875, + 0.001007080078125, + 0.00958251953125, + 0.0185546875, + -0.042724609375, + -0.0031585693359375, + 0.04931640625, + -0.00457763671875, + 0.003265380859375, + 0.00634765625, + -0.0284423828125, + 0.06689453125, + 0.037353515625, + 0.053955078125, + -0.0047607421875, + -0.01556396484375, + 0.01300048828125, + -0.00115203857421875, + -0.0380859375, + 0.07275390625, + -0.0277099609375, + -0.0255126953125, + 0.04736328125, + 0.03466796875, + -0.00811767578125, + 0.08251953125, + -0.005157470703125, + -0.00173187255859375, + 0.057861328125, + 0.035400390625, + 0.0032196044921875, + 0.0206298828125, + -0.005615234375, + 0.047119140625, + -0.0169677734375, + 0.031982421875, + -0.0177001953125, + -0.039794921875, + -0.0208740234375, + 0.00933837890625, + -0.00628662109375, + -0.005584716796875, + -0.01806640625, + -0.0084228515625, + 0.059814453125, + 0.0184326171875, + 0.0281982421875, + -0.0206298828125, + -0.02783203125, + 0.0022430419921875, + 0.064453125, + 0.01092529296875, + -0.01385498046875, + 0.018798828125, + 0.0019683837890625, + -0.0400390625, + -0.03759765625, + 0.048828125, + 0.0033111572265625, + -0.0230712890625, + 0.0281982421875, + -0.0281982421875, + 0.006622314453125, + -0.04052734375, + 0.0291748046875, + 0.023193359375, + -0.0419921875, + -0.06005859375, + 0.02294921875, + -0.01275634765625, + -0.042236328125, + -0.020263671875, + 0.01263427734375, + -0.0030975341796875, + 0.00823974609375, + -0.0673828125, + 0.0166015625, + 0.054931640625, + 0.0150146484375, + -0.004119873046875, + 0.00133514404296875, + -0.025390625, + 0.0040283203125, + 0.037109375, + -0.01361083984375, + 0.0079345703125, + -0.072265625, + -0.0184326171875, + -0.0252685546875, + 0.0380859375, + -0.0247802734375, + -0.0322265625, + -0.036865234375, + -0.04736328125, + 0.0458984375, + 0.0272216796875, + 0.02880859375, + -0.032958984375, + -0.01287841796875, + -0.0032501220703125, + -0.0252685546875, + 0.006439208984375, + -0.027587890625, + -0.0035552978515625, + -0.07373046875, + 0.0093994140625, + 0.0400390625, + 0.00799560546875, + 0.037353515625, + -0.018310546875, + -0.015625, + 0.03466796875, + 0.00057220458984375, + 0.044921875, + -0.0206298828125, + 0.03564453125, + 0.015625, + -0.0184326171875, + 0.01251220703125, + 0.03369140625, + -0.0179443359375, + 0.0206298828125, + -0.035888671875, + -0.01513671875, + -0.01214599609375, + 0.0115966796875, + -0.05078125, + 0.00848388671875, + -0.00970458984375, + 0.037353515625, + -0.036865234375, + -0.0133056640625, + 0.003692626953125, + -0.00616455078125, + -0.00726318359375, + -0.06201171875, + 0.0169677734375, + 0.022216796875, + -0.00168609619140625, + -0.044921875, + -0.022216796875, + -0.019287109375, + 0.01104736328125, + 0.006103515625, + 0.00110626220703125, + 0.034912109375, + 0.0115966796875, + 0.03173828125, + 0.0137939453125, + 0.0191650390625, + 0.004608154296875, + -0.0184326171875, + -0.0390625, + 0.018798828125, + 0.01519775390625, + -0.026123046875, + 0.02001953125, + -0.0235595703125, + -0.035888671875, + -0.00958251953125, + -0.0673828125, + 0.0274658203125, + 0.00168609619140625, + 0.020751953125, + -0.0126953125, + -0.03662109375, + 0.032958984375, + -0.03759765625, + -0.02685546875, + -0.047119140625, + 0.0576171875, + -0.016845703125, + -0.013916015625, + 0.01031494140625, + 0.0024566650390625, + 0.0016632080078125, + -0.0157470703125, + 0.01483154296875, + 0.0400390625, + 0.0108642578125, + -0.0069580078125, + -0.056396484375, + -0.0213623046875, + 0.031494140625, + -0.01275634765625, + 0.06640625, + 0.01177978515625, + 0.026611328125, + -0.023193359375, + 0.03564453125, + -0.049072265625, + -0.00054931640625, + 0.0196533203125, + 0.0164794921875, + -0.038330078125, + 0.003875732421875, + -0.011474609375, + -0.0147705078125, + 0.0302734375, + 0.032958984375, + -0.00775146484375, + 0.01416015625, + -0.0240478515625, + -0.001617431640625, + 0.020751953125, + 0.031494140625, + 0.029296875, + -0.0038299560546875, + -0.07666015625, + -0.03076171875, + -0.01055908203125, + -0.01904296875, + 0.068359375, + 0.0047607421875, + 0.0283203125, + 0.01336669921875, + -0.034912109375, + 0.0177001953125, + -0.031982421875, + -0.0091552734375, + -0.05224609375, + 0.01104736328125, + -0.1494140625, + 0.032470703125, + -0.041748046875, + -0.047119140625, + -0.0693359375, + -0.031494140625, + -0.006103515625, + 0.037109375, + 0.0087890625, + -0.00665283203125, + -0.01220703125, + -0.0155029296875, + -0.03515625, + -0.0186767578125, + -0.053955078125, + 0.0260009765625, + 0.000705718994140625, + -0.0196533203125, + 0.0011444091796875, + 0.0341796875, + -0.001220703125, + 0.0015869140625, + 0.033203125, + -0.0096435546875, + 0.0181884765625, + -0.013427734375, + -0.0242919921875, + -0.00750732421875, + -0.0517578125, + 0.0108642578125, + -0.0478515625, + 0.05712890625, + 0.00787353515625, + 0.032958984375, + -0.0002918243408203125, + 0.01104736328125, + 0.006256103515625, + -0.0478515625, + -0.045166015625, + -0.0283203125, + -0.00177001953125, + 0.03857421875, + 0.0003414154052734375, + 0.0296630859375, + 0.044677734375, + 0.00110626220703125, + -0.07421875, + 0.0186767578125, + -0.04931640625, + 0.01153564453125, + -0.034912109375, + 0.0123291015625, + -0.0137939453125, + -0.060791015625, + 0.00994873046875, + -0.0033416748046875, + -0.041259765625, + -0.00142669677734375, + 0.0115966796875, + 0.041259765625, + 0.047607421875, + -0.0419921875, + -0.034423828125, + -0.01190185546875, + -0.04443359375, + -0.004241943359375, + 0.01611328125, + 0.00994873046875, + -0.018798828125, + -0.000782012939453125, + -0.0284423828125, + -0.037109375, + 0.04345703125, + -0.01361083984375, + -0.00469970703125, + 0.004974365234375, + 0.043212890625, + -0.006744384765625, + -0.013671875, + -0.01531982421875, + 0.01300048828125, + -0.0050048828125, + -0.00860595703125, + 0.0118408203125, + 0.045654296875, + 0.0380859375, + 0.0247802734375, + -0.004302978515625, + -0.0247802734375, + 0.0230712890625, + -0.032958984375, + 0.0220947265625, + 0.01556396484375, + -8.046627044677734e-06, + -0.004791259765625, + -0.0123291015625, + -0.011962890625, + -0.0380859375, + -0.036376953125, + -0.01422119140625, + -0.025146484375, + -0.047119140625, + -0.0289306640625, + -0.00787353515625, + -0.01708984375, + -0.00933837890625, + 0.0157470703125, + 0.01446533203125, + -0.0152587890625, + 0.0162353515625, + -0.01116943359375, + -0.00775146484375, + -0.0303955078125, + 0.002105712890625, + -0.039794921875, + -0.006317138671875, + -0.041748046875, + 0.056640625, + -0.0233154296875, + -0.04052734375, + 0.028564453125, + 0.002685546875, + 0.04345703125, + -0.033935546875, + -0.0107421875, + -0.000614166259765625, + 0.033203125, + -0.035400390625, + -0.005462646484375, + -0.0101318359375, + -0.005157470703125, + -0.017578125, + 0.051513671875, + 0.02880859375, + 0.0145263671875, + 0.037353515625, + -0.0322265625, + 0.0166015625, + -0.033935546875, + -0.033935546875, + 0.0302734375, + -0.040283203125, + -0.038330078125, + -0.0164794921875, + 0.01055908203125, + 0.000789642333984375, + 0.0235595703125, + 0.06884765625, + 0.0186767578125, + -0.011474609375, + 0.0133056640625, + 0.01495361328125, + 0.0380859375, + 0.0546875, + 0.010498046875, + 0.01422119140625, + 0.0247802734375, + 0.02685546875, + 0.0303955078125, + 0.02978515625, + 0.00054931640625, + -0.04296875, + -0.0517578125, + -0.0252685546875, + -0.02880859375, + 0.07373046875, + 0.022216796875, + -0.0166015625, + 0.00124359130859375, + 0.028076171875, + -0.0115966796875, + 0.02685546875, + -0.00982666015625, + -0.01190185546875, + -0.005523681640625, + -0.010498046875, + 0.0020751953125, + -0.006195068359375, + 0.043212890625, + 0.03271484375, + 0.01202392578125, + -0.009521484375, + -0.0299072265625, + 0.007293701171875, + -0.0400390625, + 0.04345703125, + 0.037353515625, + -0.008544921875, + -0.07666015625, + 0.025146484375, + 0.031494140625, + 0.031494140625, + -0.0269775390625, + -0.00396728515625, + 0.0164794921875, + -0.035888671875, + -0.024658203125, + -0.0203857421875, + -0.009033203125, + 0.08056640625, + 0.0281982421875, + -0.00732421875, + -0.07861328125, + -0.02685546875, + -0.00738525390625, + 0.029541015625, + 0.01177978515625, + 0.003143310546875, + -0.05078125, + 0.0224609375, + -0.0267333984375, + -0.05078125, + 0.004302978515625, + 0.007293701171875, + 0.0419921875, + 0.00135040283203125, + 0.013427734375, + 0.02392578125, + -0.0213623046875, + -0.000957489013671875, + 0.0198974609375, + 0.017578125, + 0.004119873046875, + -0.0145263671875, + -0.0050048828125, + -0.042236328125, + 0.044189453125, + 0.01458740234375, + 0.01336669921875, + 0.039306640625, + -0.0179443359375, + 0.058349609375, + -0.014404296875, + 0.04931640625, + -0.00750732421875, + 0.0517578125, + 0.0272216796875, + -0.0240478515625, + 0.01446533203125, + -0.036376953125, + 0.045166015625, + 0.0034332275390625, + -0.054443359375, + -0.008056640625 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 13.414323999995759, + "queue_ms": 1.1518539999997301, + "tokenization_ms": 0.009830000003319128, + "inference_ms": 12.163289000000077, + "postprocessing_ms": null + } + }, + { + "id": "chunk-10", + "dense": [ + -0.0303955078125, + 0.01519775390625, + -0.0198974609375, + -0.006591796875, + 0.01080322265625, + 0.00689697265625, + -0.0047607421875, + 0.01409912109375, + -0.034912109375, + 0.012451171875, + 0.0120849609375, + -0.0220947265625, + 0.026123046875, + 0.02978515625, + -0.007110595703125, + -0.03955078125, + 0.019287109375, + -0.015380859375, + -0.01422119140625, + 0.01611328125, + 0.0211181640625, + 0.001922607421875, + 0.03515625, + -0.01904296875, + 0.023193359375, + -0.00604248046875, + -0.0247802734375, + 0.0118408203125, + 0.06005859375, + -0.046142578125, + -0.032470703125, + -0.0341796875, + 0.022216796875, + -0.033935546875, + -0.01214599609375, + -0.056396484375, + 0.0235595703125, + 0.01470947265625, + -0.03271484375, + 0.00830078125, + 0.0068359375, + 0.0045166015625, + -0.0031585693359375, + -0.064453125, + 0.036865234375, + 0.01275634765625, + 0.00106048583984375, + -0.0177001953125, + -0.003082275390625, + 0.0107421875, + -0.0289306640625, + 0.0087890625, + 0.08203125, + -0.0087890625, + -0.01019287109375, + -0.005859375, + -0.026611328125, + -0.0205078125, + -0.045654296875, + 0.0184326171875, + -0.01055908203125, + 0.00457763671875, + -0.0250244140625, + 0.015869140625, + 0.004180908203125, + 0.099609375, + 0.0380859375, + -0.041259765625, + -0.01025390625, + -0.0238037109375, + 0.0299072265625, + 0.00445556640625, + -0.0732421875, + -0.02685546875, + -0.0947265625, + -0.003936767578125, + 0.0390625, + -0.004119873046875, + 0.023681640625, + -0.01336669921875, + -0.0157470703125, + -0.00836181640625, + -0.0079345703125, + 0.01446533203125, + -0.064453125, + 0.0078125, + -0.033203125, + -0.0301513671875, + -0.0162353515625, + 0.03125, + 0.042236328125, + 0.011474609375, + 0.013916015625, + 0.01348876953125, + 0.0184326171875, + -0.01287841796875, + -0.046142578125, + 0.000896453857421875, + 0.01312255859375, + 0.00994873046875, + 0.039306640625, + 0.0079345703125, + 0.05615234375, + -0.0238037109375, + -0.0024566650390625, + -0.028076171875, + 0.01519775390625, + 0.0032196044921875, + 0.0247802734375, + -0.01171875, + 0.0034942626953125, + 0.0242919921875, + 0.01104736328125, + -0.0019683837890625, + 0.003448486328125, + 0.0019073486328125, + 0.009765625, + 0.0128173828125, + 0.054931640625, + 0.0301513671875, + 0.04345703125, + -0.030517578125, + 0.00872802734375, + -0.0238037109375, + -0.04541015625, + -0.032470703125, + 0.0322265625, + 0.0250244140625, + 0.033447265625, + 0.05517578125, + 0.0206298828125, + 0.0047607421875, + -0.019775390625, + 0.0174560546875, + -0.035888671875, + -0.0263671875, + 0.01251220703125, + -0.0189208984375, + -0.00927734375, + -0.042236328125, + 0.041259765625, + 0.0205078125, + -0.0380859375, + -0.034423828125, + 0.01141357421875, + -0.00836181640625, + 0.0242919921875, + -0.042236328125, + 0.035888671875, + 0.0032501220703125, + -0.04296875, + 0.006256103515625, + -0.003265380859375, + -0.02880859375, + 0.059814453125, + -0.01708984375, + -0.0174560546875, + 0.018310546875, + 0.005157470703125, + 0.008056640625, + -0.031494140625, + 0.03857421875, + -0.02685546875, + -0.0018768310546875, + -0.0034332275390625, + -0.0311279296875, + -0.0361328125, + 0.037353515625, + -0.033203125, + -0.037841796875, + 0.0198974609375, + -0.023681640625, + 0.036865234375, + -0.02783203125, + 0.0205078125, + 0.037353515625, + 0.0908203125, + 0.0281982421875, + 0.035888671875, + -0.0654296875, + -0.04638671875, + -0.015869140625, + -0.006011962890625, + -0.036865234375, + -0.015625, + 0.01287841796875, + 0.00872802734375, + -0.0380859375, + 0.00787353515625, + 0.009521484375, + 0.00714111328125, + 0.0281982421875, + 0.03271484375, + 0.025634765625, + 0.0281982421875, + -0.02734375, + 0.004638671875, + -0.01171875, + -0.018310546875, + -0.001312255859375, + 0.0142822265625, + 0.0230712890625, + 0.009765625, + -0.024169921875, + -0.0169677734375, + 0.032958984375, + 0.0015869140625, + -0.02001953125, + -0.0208740234375, + -0.033203125, + -0.004791259765625, + -0.01171875, + 0.0234375, + 0.04638671875, + -0.0167236328125, + -0.01123046875, + 0.01458740234375, + -0.0205078125, + 0.014404296875, + -0.015869140625, + -0.043212890625, + 0.01458740234375, + 0.0142822265625, + 0.057861328125, + 0.02880859375, + 0.018310546875, + -0.0224609375, + 2.002716064453125e-05, + 0.00445556640625, + -0.03466796875, + -0.009033203125, + -0.0011138916015625, + -0.026611328125, + -0.01434326171875, + 0.0537109375, + 0.0057373046875, + 0.02734375, + 0.00048828125, + -0.0005035400390625, + 0.0284423828125, + -0.04638671875, + -0.0224609375, + 0.023193359375, + -0.00616455078125, + -0.01214599609375, + -0.00921630859375, + -0.018310546875, + 0.0537109375, + -0.0164794921875, + -0.03173828125, + -0.018310546875, + -0.03955078125, + -0.00604248046875, + -0.01263427734375, + 0.004669189453125, + 0.01953125, + -0.01141357421875, + -0.006103515625, + 0.0177001953125, + 0.012451171875, + 0.0068359375, + -0.031005859375, + -0.0126953125, + 0.0250244140625, + -0.015869140625, + -0.00921630859375, + -0.0169677734375, + 0.03662109375, + 0.01239013671875, + -0.013427734375, + -0.004425048828125, + -0.03955078125, + -0.029541015625, + 0.033935546875, + 0.06103515625, + 0.044921875, + 0.0220947265625, + -0.00848388671875, + 0.0634765625, + -0.0260009765625, + 0.0186767578125, + 0.0087890625, + -0.0023651123046875, + -0.08447265625, + 0.0040283203125, + 0.0257568359375, + -0.008056640625, + 0.0079345703125, + 0.00634765625, + -0.07177734375, + -0.0247802734375, + -0.018798828125, + 0.0888671875, + 0.0255126953125, + -0.041015625, + -0.01519775390625, + 0.02001953125, + -0.1591796875, + -0.043212890625, + -0.0147705078125, + -0.017578125, + -0.00885009765625, + 0.0196533203125, + 0.02783203125, + 0.024169921875, + -0.0177001953125, + 0.0341796875, + -0.01202392578125, + -0.060302734375, + -0.005950927734375, + -0.000232696533203125, + 0.055908203125, + -0.03955078125, + -0.046142578125, + 0.04541015625, + 0.017333984375, + -0.0150146484375, + -0.039306640625, + -0.004241943359375, + -0.01239013671875, + -0.054443359375, + -0.01177978515625, + -0.0255126953125, + 0.043701171875, + -0.02880859375, + -0.05078125, + 0.02099609375, + -0.0284423828125, + 0.0079345703125, + -0.0198974609375, + 0.01055908203125, + -0.00689697265625, + 0.06396484375, + 0.02001953125, + -0.01043701171875, + 0.0157470703125, + -0.0174560546875, + 0.043701171875, + 0.0238037109375, + 0.0220947265625, + 0.08251953125, + -0.0028076171875, + -0.018798828125, + 0.04248046875, + 0.0272216796875, + -0.0390625, + 0.023681640625, + -0.004913330078125, + 0.01202392578125, + 0.0206298828125, + -0.01708984375, + -0.034912109375, + -0.0234375, + -0.030517578125, + 6.818771362304688e-05, + -0.03466796875, + 0.061279296875, + -0.051513671875, + -0.035400390625, + 0.02880859375, + 0.01507568359375, + -0.0267333984375, + -0.01025390625, + 0.0115966796875, + -0.032958984375, + 0.00531005859375, + -0.05126953125, + 0.005157470703125, + 0.00102996826171875, + 0.0211181640625, + -0.01458740234375, + 0.001068115234375, + 0.0181884765625, + -0.01348876953125, + -0.01092529296875, + -0.048583984375, + -0.10498046875, + -0.0262451171875, + 0.027587890625, + 0.0003681182861328125, + 0.039306640625, + -0.01470947265625, + -0.0198974609375, + 0.0137939453125, + 0.0291748046875, + 0.05859375, + 0.234375, + 0.00213623046875, + -0.0294189453125, + 0.0263671875, + 0.031005859375, + -0.0157470703125, + 0.009765625, + 0.024658203125, + -0.019287109375, + -0.0400390625, + -0.003662109375, + -0.0025787353515625, + 0.0263671875, + 0.016845703125, + -0.0076904296875, + -0.0198974609375, + -0.062255859375, + 0.01123046875, + 0.10400390625, + -0.023681640625, + 0.04443359375, + -0.019287109375, + 0.023681640625, + 0.033935546875, + -0.0576171875, + -0.04296875, + -0.0238037109375, + 0.031005859375, + -0.0250244140625, + 0.038330078125, + -0.0240478515625, + -0.03173828125, + 0.015869140625, + -0.0045166015625, + -0.05322265625, + 0.0146484375, + -0.028564453125, + 0.02685546875, + -0.007293701171875, + 0.007171630859375, + 0.064453125, + -0.044677734375, + 0.021240234375, + 0.0299072265625, + -0.05078125, + -0.0244140625, + 0.040771484375, + 0.0107421875, + 0.0303955078125, + 0.00390625, + 0.0015869140625, + 0.0177001953125, + -0.0228271484375, + 0.01025390625, + -0.0166015625, + -0.049560546875, + -0.029296875, + 0.06298828125, + -0.0380859375, + 0.03369140625, + -0.005615234375, + 0.024169921875, + -0.04638671875, + 0.02734375, + -0.0306396484375, + 0.05078125, + -0.02880859375, + 0.01043701171875, + 0.061279296875, + 0.014404296875, + 0.0079345703125, + 0.01611328125, + 0.01318359375, + -0.006256103515625, + 0.051513671875, + -0.0274658203125, + 0.01348876953125, + 0.037841796875, + -0.0284423828125, + 0.007659912109375, + -0.047607421875, + -0.019775390625, + 0.01123046875, + 0.03564453125, + 0.0159912109375, + -0.0303955078125, + -0.048095703125, + 0.08447265625, + -0.01263427734375, + -0.02294921875, + -0.033203125, + -0.0027313232421875, + 0.0301513671875, + -0.0027313232421875, + -0.031982421875, + 0.0184326171875, + 0.0167236328125, + 0.0015106201171875, + -0.01953125, + -0.04931640625, + 0.0184326171875, + -0.0289306640625, + 0.02001953125, + -0.023681640625, + 0.0115966796875, + -0.01806640625, + 0.025390625, + -0.02490234375, + -0.0096435546875, + -0.01348876953125, + 0.051025390625, + 0.01202392578125, + -0.046142578125, + -0.0252685546875, + 0.03955078125, + 0.0262451171875, + -0.0257568359375, + 0.0380859375, + 0.0267333984375, + 0.06787109375, + -0.031005859375, + -0.009765625, + -0.0299072265625, + -0.0126953125, + 0.005218505859375, + -0.041015625, + -0.01361083984375, + 0.0130615234375, + -0.004608154296875, + -0.00982666015625, + 0.035400390625, + 0.00933837890625, + 0.00885009765625, + -0.0341796875, + 0.033203125, + 0.04296875, + -0.03955078125, + 0.01904296875, + -0.009521484375, + 0.0177001953125, + -0.0341796875, + -0.0224609375, + -0.064453125, + 0.01239013671875, + -0.0174560546875, + -0.0247802734375, + -0.030029296875, + 0.035400390625, + -0.0113525390625, + -0.00408935546875, + 0.03173828125, + 0.0142822265625, + -0.01239013671875, + -0.0224609375, + -0.026123046875, + -0.01123046875, + -0.00341796875, + -0.0242919921875, + -0.006011962890625, + -0.039306640625, + -0.005950927734375, + 0.033935546875, + 7.390975952148438e-05, + 0.0115966796875, + 0.050048828125, + 0.00714111328125, + 0.037109375, + 0.019287109375, + 0.01708984375, + 0.00848388671875, + 0.004241943359375, + -0.00885009765625, + -0.0322265625, + 0.0771484375, + 0.0164794921875, + 0.002685546875, + -0.0255126953125, + 0.031005859375, + 0.048095703125, + -0.00146484375, + 0.039794921875, + 0.039306640625, + -0.07470703125, + -0.0198974609375, + -0.004669189453125, + 0.035400390625, + -0.07861328125, + -0.022705078125, + 0.07470703125, + -0.0281982421875, + -0.039306640625, + 0.07177734375, + 0.0042724609375, + -0.0184326171875, + -0.0186767578125, + 0.014892578125, + -0.0062255859375, + -0.005462646484375, + -0.013427734375, + -0.0191650390625, + -0.002838134765625, + 0.0019073486328125, + 0.01153564453125, + 0.02783203125, + -0.0033416748046875, + -0.0220947265625, + -0.01275634765625, + 0.04833984375, + -0.02001953125, + 0.01141357421875, + 0.00848388671875, + 0.047607421875, + -0.01373291015625, + -0.00921630859375, + -0.01019287109375, + 0.0238037109375, + 0.0595703125, + -0.0322265625, + 0.042236328125, + -0.050537109375, + -0.01336669921875, + -0.043212890625, + 0.033935546875, + -0.052001953125, + 0.0172119140625, + 0.06103515625, + -0.020263671875, + -0.00096893310546875, + 0.0208740234375, + 0.0133056640625, + 0.003326416015625, + 0.007781982421875, + 0.033447265625, + -0.023681640625, + 0.01251220703125, + -0.0128173828125, + 0.004608154296875, + 0.029541015625, + -0.020263671875, + 0.0024566650390625, + 0.026611328125, + -0.035888671875, + 0.03125, + 0.01708984375, + -0.0036468505859375, + 0.04248046875, + -0.045654296875, + -0.021728515625, + 0.036865234375, + 0.037353515625, + 0.00180816650390625, + -0.00787353515625, + 0.014404296875, + -0.007476806640625, + -0.0238037109375, + -0.027587890625, + -0.047119140625, + -0.00012969970703125, + -0.052490234375, + 0.001800537109375, + 0.019287109375, + 0.029541015625, + -0.00927734375, + -0.01055908203125, + -0.00823974609375, + -0.048583984375, + 0.08447265625, + -0.006866455078125, + -0.0235595703125, + 0.0037384033203125, + 0.031982421875, + -0.0057373046875, + -0.0272216796875, + -0.02978515625, + 0.0062255859375, + 0.01275634765625, + -0.0011444091796875, + -0.00225830078125, + 0.06689453125, + 0.0269775390625, + -0.00738525390625, + -0.0033721923828125, + -0.01239013671875, + 0.0196533203125, + 0.004119873046875, + 0.0029296875, + 0.00201416015625, + 0.0146484375, + 0.0011749267578125, + 2.9653310775756836e-06, + -0.00189971923828125, + -0.0234375, + 0.0021209716796875, + -0.0084228515625, + -0.0286865234375, + -0.0257568359375, + -0.03662109375, + 0.047119140625, + -0.054443359375, + 0.0203857421875, + -0.00136566162109375, + -0.03369140625, + -0.039794921875, + -0.00848388671875, + 0.023193359375, + 0.01239013671875, + 0.028564453125, + 0.000888824462890625, + 0.053955078125, + 0.06787109375, + 0.01348876953125, + -0.08447265625, + -0.0032501220703125, + -0.0023345947265625, + 0.000888824462890625, + 0.00775146484375, + -0.006805419921875, + -0.0186767578125, + 0.0269775390625, + -0.0027618408203125, + -0.0130615234375, + -0.03857421875, + -0.01446533203125, + -0.021484375, + 0.019775390625, + 0.0113525390625, + 0.00909423828125, + -0.00390625, + -0.007110595703125, + 0.01080322265625, + -0.025390625, + -0.0031585693359375, + -0.004791259765625, + 0.009033203125, + 0.048583984375, + 0.01556396484375, + -0.0023651123046875, + -0.047607421875, + 0.0186767578125, + -0.023193359375, + -0.00994873046875, + -0.0400390625, + 0.080078125, + -0.016357421875, + 0.008544921875, + -0.0035552978515625, + -0.015380859375, + -0.017822265625, + 0.04052734375, + 0.01251220703125, + -0.0361328125, + 0.0137939453125, + -0.022216796875, + -0.05078125, + -0.007232666015625, + 0.00531005859375, + 0.040771484375, + 0.03466796875, + 0.02978515625, + -0.0032196044921875, + -0.0198974609375, + 0.035888671875, + 0.00653076171875, + 0.00579833984375, + 0.00933837890625, + 0.01318359375, + -0.02783203125, + 0.03173828125, + -0.00127410888671875, + -0.0189208984375, + -0.00775146484375, + 0.01202392578125, + -0.0260009765625, + -0.00738525390625, + -0.028076171875, + 0.043212890625, + -0.055908203125, + 0.0155029296875, + 0.03173828125, + -0.021240234375, + -0.0026397705078125, + -0.03076171875, + -0.0186767578125, + 0.004486083984375, + 0.003448486328125, + -0.0205078125, + -0.01312255859375, + -0.007049560546875, + -0.050048828125, + 0.034423828125, + -0.0167236328125, + 0.0255126953125, + -0.0299072265625, + -0.041015625, + -0.158203125, + 0.01446533203125, + -0.01141357421875, + -0.01025390625, + -0.0306396484375, + 0.001251220703125, + -0.01904296875, + -0.01904296875, + -0.01446533203125, + -0.021484375, + -0.0240478515625, + 0.034912109375, + 0.07177734375, + -0.0034942626953125, + -0.01080322265625, + 0.00144195556640625, + -0.041015625, + 0.019287109375, + 0.0036468505859375, + 0.0299072265625, + 0.01116943359375, + 0.0306396484375, + -0.0322265625, + -0.01953125, + -0.00799560546875, + 0.006317138671875, + -0.03173828125, + -0.04443359375, + -0.041748046875, + 0.051025390625, + -0.01080322265625, + 0.0118408203125, + -0.003265380859375, + 0.016357421875, + -0.0174560546875, + 0.0294189453125, + -0.0015106201171875, + -0.0157470703125, + -0.051513671875, + -0.0281982421875, + 0.031494140625, + 0.04638671875, + 0.041015625, + 0.0205078125, + 0.041748046875, + 0.0263671875, + -0.042236328125, + 0.00604248046875, + -0.060302734375, + -0.0595703125, + -0.028076171875, + -0.000804901123046875, + -0.06005859375, + 0.0164794921875, + -0.00946044921875, + 0.0106201171875, + -0.049560546875, + 0.0181884765625, + -0.04248046875, + 0.053955078125, + -0.0595703125, + 0.004608154296875, + -0.051025390625, + -0.0498046875, + 0.018798828125, + 0.00860595703125, + 0.0228271484375, + -0.0015411376953125, + -0.0189208984375, + -0.024658203125, + 0.0174560546875, + 0.03271484375, + 0.0037994384765625, + -0.04296875, + 0.0025634765625, + 0.0164794921875, + 0.047119140625, + -0.0390625, + -0.019287109375, + -0.02734375, + -0.038330078125, + -0.005889892578125, + -0.0142822265625, + 0.031982421875, + 0.05224609375, + -0.00787353515625, + 0.0013580322265625, + 0.0111083984375, + 0.00128173828125, + -0.0118408203125, + -0.03857421875, + 0.007049560546875, + 0.022216796875, + -0.0024871826171875, + 0.006683349609375, + 0.0146484375, + -0.0177001953125, + 0.04345703125, + 0.0174560546875, + -0.03857421875, + -0.0257568359375, + -0.0179443359375, + 0.0111083984375, + 0.014892578125, + 0.006317138671875, + 0.03955078125, + -0.031494140625, + 0.0147705078125, + 0.00244140625, + 0.0027313232421875, + -0.009765625, + -0.00106048583984375, + -0.035888671875, + 0.00860595703125, + -0.068359375, + 0.007659912109375, + 0.0250244140625, + 0.03369140625, + -0.050048828125, + 0.01519775390625, + 0.0390625, + -0.0306396484375, + 0.048583984375, + -0.0235595703125, + 0.041259765625, + -0.03125, + 0.0150146484375, + -0.00982666015625, + 0.02978515625, + 0.040771484375, + 0.031005859375, + -0.0576171875, + 0.03466796875, + 0.02734375, + 0.0216064453125, + 0.0072021484375, + -0.0595703125, + 0.0078125, + -0.0242919921875, + -0.0208740234375, + 0.04248046875, + -0.019287109375, + 0.015869140625, + 0.0140380859375, + -0.022216796875, + -0.0169677734375, + -0.021484375, + -0.0211181640625, + -0.005615234375, + -0.036376953125, + -0.0012054443359375, + 0.0146484375, + -0.00102996826171875, + 0.080078125, + -0.023193359375, + 0.01177978515625, + -0.01092529296875, + -0.031494140625, + -0.0255126953125, + 0.0250244140625, + 0.0120849609375, + -0.0242919921875, + -0.045654296875, + -0.005401611328125, + -0.01373291015625, + 0.004364013671875, + 0.003662109375, + -0.01019287109375, + -0.0242919921875, + -0.0223388671875, + 0.04052734375, + -0.010009765625, + -0.0050048828125, + 0.0150146484375, + 0.0252685546875, + 0.0107421875, + 0.022216796875, + -0.01043701171875, + 0.051025390625, + -0.0155029296875, + 0.052001953125, + 0.0218505859375, + -0.01373291015625, + -0.0177001953125, + 0.051513671875, + 0.00147247314453125, + 0.007049560546875, + 0.01708984375, + 0.0027313232421875, + -0.08203125, + -0.01507568359375, + -0.004425048828125, + 0.02490234375, + 0.05615234375, + 0.02490234375, + -0.00787353515625, + -0.00787353515625, + 0.05224609375, + -0.00848388671875, + 0.046875, + 0.0002193450927734375, + -0.01104736328125, + -0.01470947265625, + 0.0021209716796875, + 0.01312255859375, + -0.01953125, + 0.005615234375, + -0.00457763671875, + -0.03466796875, + 0.0269775390625, + -0.0274658203125, + 0.01708984375, + -0.039794921875, + 0.02880859375, + -0.00909423828125, + -0.0107421875, + 0.0013885498046875, + -0.000675201416015625, + -0.0230712890625, + -0.0147705078125, + -0.0205078125, + 0.0157470703125, + -0.0067138671875, + -0.0654296875, + -0.01287841796875, + -0.018310546875, + -0.0157470703125, + -0.0091552734375, + -0.010498046875, + 0.00885009765625, + -0.06005859375, + 0.047607421875, + -0.017578125, + 0.031494140625, + 0.0247802734375, + -0.033447265625, + 0.006988525390625, + -0.0087890625, + -0.0341796875, + 0.011474609375, + 0.058349609375, + -0.02294921875, + 0.004608154296875, + 0.005584716796875 + ], + "model": "BAAI/bge-m3", + "timing": { + "total_ms": 12.628009000003715, + "queue_ms": 0.10293199999722447, + "tokenization_ms": 0.019330000000650216, + "inference_ms": 12.387503000006461, + "postprocessing_ms": null + } + } + ], + "ranking": [ + { + "chunk_id": "chunk-3", + "text": "## Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses", + "score": 0.6185643545597242 + }, + { + "chunk_id": "chunk-8", + "text": "### What Documentation Was Missing?", + "score": 0.5668630864609291 + }, + { + "chunk_id": "chunk-2", + "text": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item.", + "score": 0.5504324904379904 + }, + { + "chunk_id": "chunk-10", + "text": "The review contractor completes the claim as an insufficient documentation error, and the MAC recoups payment.", + "score": 0.5301554025336029 + }, + { + "chunk_id": "chunk-4", + "text": "A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable flexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without varus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review contractor's request:", + "score": 0.5096365693845111 + }, + { + "chunk_id": "chunk-0", + "text": "https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses Page Last Modified: 02/11/2026 04:18 PM", + "score": 0.4476299516314615 + }, + { + "chunk_id": "chunk-9", + "text": "The doctor didn't document the face-to-face encounter within 6 months of proof of delivery.", + "score": 0.4422977003457754 + }, + { + "chunk_id": "chunk-7", + "text": "- Proof of delivery with face-to-face encounter 7 months ago", + "score": 0.4406839500199507 + }, + { + "chunk_id": "chunk-1", + "text": "## Billing & Coding Criteria", + "score": 0.43659250486605466 + }, + { + "chunk_id": "chunk-5", + "text": "- Standard written order with correct HCPCS coding", + "score": 0.4098438679267088 + }, + { + "chunk_id": "chunk-6", + "text": "- Treating practitioner's medical record that has adequate medical necessity information", + "score": 0.4093260116216656 + } + ] +} diff --git a/examples/prior-authorization-review-agent/verified-run/review.json b/examples/prior-authorization-review-agent/verified-run/review.json new file mode 100644 index 00000000..00cfb496 --- /dev/null +++ b/examples/prior-authorization-review-agent/verified-run/review.json @@ -0,0 +1,96 @@ +{ + "scope": "Reproduction of CMS's published L1851 insufficient-documentation example", + "route": "insufficient_documentation", + "headline": "The face-to-face encounter fell one month outside CMS's six-month window", + "hcpcs_code": "L1851", + "required_face_to_face_within_months": 6, + "documented_face_to_face_age_months": 7, + "overdue_by_months": 1, + "submitted_documentation": { + "order": "Standard written order with correct HCPCS coding", + "medical_record": "Treating practitioner's medical record that has adequate medical necessity information", + "proof_of_delivery": "Proof of delivery with face-to-face encounter 7 months ago" + }, + "missing_documentation": [ + "face-to-face encounter within 6 months of proof of delivery" + ], + "review_conclusion": "insufficient documentation error", + "payment_action": "MAC recoups payment", + "source": { + "publisher": "Centers for Medicare & Medicaid Services", + "title": "Lower Limb Orthoses", + "url": "https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses", + "page_last_modified": "2026-02-11" + }, + "ranked_source_evidence": [ + { + "chunk_id": "chunk-10", + "rank": 0, + "score": 0.9765625, + "text": "The review contractor completes the claim as an insufficient documentation error, and the MAC recoups payment." + }, + { + "chunk_id": "chunk-3", + "rank": 1, + "score": 0.8671875, + "text": "## Example of Improper Payments Due to Insufficient Documentation for Lower Limb Orthoses" + }, + { + "chunk_id": "chunk-9", + "rank": 2, + "score": 0.6796875, + "text": "The doctor didn't document the face-to-face encounter within 6 months of proof of delivery." + }, + { + "chunk_id": "chunk-4", + "rank": 3, + "score": 0.65234375, + "text": "A supplier bills the claim for L1851 (Knee orthosis (KO), single upright, thigh and calf, with adjustable flexion and extension joint (unicentric or polycentric), medial-lateral and rotation control, with or without varus/valgus adjustment, prefabricated, off-the-shelf) and submits the following documentation per the review contractor's request:" + }, + { + "chunk_id": "chunk-2", + "rank": 4, + "score": 0.59375, + "text": "We require prior authorization, a face-to-face encounter, and written order prior to delivery for HCPCS codes L1832 and L1851. Conduct the face-to-face encounter within the 6 months before prescribing the item." + }, + { + "chunk_id": "chunk-8", + "rank": 5, + "score": 0.173828125, + "text": "### What Documentation Was Missing?" + }, + { + "chunk_id": "chunk-5", + "rank": 6, + "score": 0.1005859375, + "text": "- Standard written order with correct HCPCS coding" + }, + { + "chunk_id": "chunk-7", + "rank": 7, + "score": 0.0419921875, + "text": "- Proof of delivery with face-to-face encounter 7 months ago" + }, + { + "chunk_id": "chunk-0", + "rank": 8, + "score": 0.004364013671875, + "text": "https://www.cms.gov/training-education/medicare-learning-networkr-mln/compliance/medicare-provider-compliance-tips/lower-limb-orthoses Page Last Modified: 02/11/2026 04:18 PM" + }, + { + "chunk_id": "chunk-1", + "rank": 9, + "score": 0.0023956298828125, + "text": "## Billing & Coding Criteria" + }, + { + "chunk_id": "chunk-6", + "rank": 10, + "score": 0.0012054443359375, + "text": "- Treating practitioner's medical record that has adequate medical necessity information" + } + ], + "published_example": true, + "coverage_decision": null, + "medical_decision": null +}