555e282cc4
pi-agent-plugin checks / lint (push) Has been cancelled
pi-agent-plugin checks / test (20) (push) Has been cancelled
pi-agent-plugin checks / test (22) (push) Has been cancelled
pi-agent-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / check_changes (push) Has been cancelled
TypeScript SDK CI / changelog_check (push) Has been cancelled
ci / changelog_check (push) Has been cancelled
ci / check_changes (push) Has been cancelled
ci / build_mem0 (3.10) (push) Has been cancelled
ci / build_mem0 (3.11) (push) Has been cancelled
ci / build_mem0 (3.12) (push) Has been cancelled
CLI Node CI / lint (push) Has been cancelled
CLI Node CI / test (20) (push) Has been cancelled
CLI Node CI / test (22) (push) Has been cancelled
CLI Node CI / build (push) Has been cancelled
CLI Python CI / lint (push) Has been cancelled
CLI Python CI / test (3.10) (push) Has been cancelled
CLI Python CI / test (3.11) (push) Has been cancelled
CLI Python CI / test (3.12) (push) Has been cancelled
CLI Python CI / build (push) Has been cancelled
openclaw checks / lint (push) Has been cancelled
openclaw checks / test (20) (push) Has been cancelled
openclaw checks / test (22) (push) Has been cancelled
openclaw checks / build (push) Has been cancelled
opencode-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (22) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (22) (push) Has been cancelled
104 lines
3.2 KiB
Python
104 lines
3.2 KiB
Python
"""Shared mem0 search API helper.
|
|
|
|
Wraps POST /v3/memories/search/ into a single function call.
|
|
All pre-fetch hooks use this instead of duplicating urllib boilerplate.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import os
|
|
import urllib.request
|
|
|
|
SEARCH_URL = "https://api.mem0.ai/v3/memories/search/"
|
|
SEARCH_TIMEOUT = 5
|
|
|
|
|
|
def should_rerank() -> bool:
|
|
"""Whether auto-injection searches should request Platform reranking.
|
|
|
|
The REST search endpoint does not rerank when ``rerank`` is omitted, so
|
|
auto-injected context is ordered by raw vector similarity and the single
|
|
most relevant memory can fall outside the injected top_k window. We default
|
|
reranking ON for the hook-driven injection path (the extra ~150-200ms is
|
|
well within the hook's curl budget) and let users opt out via MEM0_RERANK.
|
|
|
|
MEM0_RERANK is read case-insensitively; ``0``, ``false``, ``no``, and
|
|
``off`` disable reranking. Anything else (including unset) enables it.
|
|
"""
|
|
raw = os.environ.get("MEM0_RERANK")
|
|
if raw is None:
|
|
return True
|
|
return raw.strip().lower() not in ("0", "false", "no", "off", "")
|
|
|
|
|
|
def _do_search(api_key: str, payload: dict) -> list[dict]:
|
|
body = json.dumps(payload).encode()
|
|
req = urllib.request.Request(
|
|
SEARCH_URL,
|
|
data=body,
|
|
headers={"Authorization": f"Token {api_key}", "Content-Type": "application/json"},
|
|
method="POST",
|
|
)
|
|
with urllib.request.urlopen(req, timeout=SEARCH_TIMEOUT) as r:
|
|
data = json.loads(r.read())
|
|
return data if isinstance(data, list) else data.get("results", [])
|
|
|
|
|
|
def search_memories(
|
|
api_key: str,
|
|
user_id: str,
|
|
project_id: str,
|
|
query: str,
|
|
metadata_type: str | None = None,
|
|
metadata_filters: dict | None = None,
|
|
top_k: int = 3,
|
|
min_score: float = 0.0,
|
|
rerank: bool = False,
|
|
threshold: float = 0.3,
|
|
global_search: bool = False,
|
|
) -> list[dict]:
|
|
if not api_key:
|
|
return []
|
|
|
|
if global_search:
|
|
filters: dict = {"OR": [{"user_id": "*"}]}
|
|
else:
|
|
base_clauses: list[dict] = [{"user_id": user_id}, {"app_id": project_id}]
|
|
if metadata_type:
|
|
base_clauses.append({"metadata": {"type": metadata_type}})
|
|
if metadata_filters:
|
|
for key, value in metadata_filters.items():
|
|
base_clauses.append({"metadata": {key: value}})
|
|
filters = {"AND": base_clauses}
|
|
|
|
base_payload: dict = {"query": query, "top_k": top_k, "threshold": threshold}
|
|
if rerank:
|
|
base_payload["rerank"] = True
|
|
|
|
try:
|
|
payload = {**base_payload, "filters": filters}
|
|
results = _do_search(api_key, payload)[:top_k]
|
|
|
|
if min_score > 0:
|
|
results = [m for m in results if m.get("score", 0) >= min_score]
|
|
return results
|
|
except Exception:
|
|
return []
|
|
|
|
|
|
def format_results_for_context(
|
|
memories: list[dict],
|
|
heading: str = "Relevant memories",
|
|
) -> str:
|
|
if not memories:
|
|
return ""
|
|
lines = [f"### {heading}", ""]
|
|
for m in memories:
|
|
mid = m.get("id", "?")[:8]
|
|
text = m.get("memory", "")[:200]
|
|
cat = (m.get("metadata") or {}).get("type", "unknown")
|
|
lines.append(f"- [{cat}] {text} [mem0:{mid}]")
|
|
lines.append("")
|
|
return "\n".join(lines)
|