@geravant/sinain 1.10.1 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/sinain-agent/CLAUDE.md +1 -1
  3. package/sinain-agent/run.sh +66 -7
  4. package/sinain-core/src/agent/analyzer.ts +4 -27
  5. package/sinain-core/src/agent/loop.ts +10 -40
  6. package/sinain-core/src/agent/situation-writer.ts +0 -16
  7. package/sinain-core/src/config.ts +1 -9
  8. package/sinain-core/src/escalation/escalator.ts +44 -16
  9. package/sinain-core/src/escalation/message-builder.ts +45 -118
  10. package/sinain-core/src/index.ts +20 -36
  11. package/sinain-core/src/learning/local-curation.ts +4 -4
  12. package/sinain-core/src/overlay/commands.ts +46 -13
  13. package/sinain-core/src/overlay/ws-handler.ts +13 -1
  14. package/sinain-core/src/server.ts +121 -0
  15. package/sinain-core/src/types.ts +25 -28
  16. package/sinain-mcp-server/index.ts +28 -0
  17. package/sinain-memory/__pycache__/graph_query.cpython-312.pyc +0 -0
  18. package/sinain-memory/__pycache__/triplestore.cpython-312.pyc +0 -0
  19. package/sinain-memory/eval/__pycache__/__init__.cpython-312.pyc +0 -0
  20. package/sinain-memory/eval/assertions.py +0 -21
  21. package/sinain-memory/eval/benchmarks/__init__.py +0 -0
  22. package/sinain-memory/eval/benchmarks/__pycache__/__init__.cpython-312.pyc +0 -0
  23. package/sinain-memory/eval/benchmarks/__pycache__/base_adapter.cpython-312.pyc +0 -0
  24. package/sinain-memory/eval/benchmarks/__pycache__/config.cpython-312.pyc +0 -0
  25. package/sinain-memory/eval/benchmarks/__pycache__/evaluate.cpython-312.pyc +0 -0
  26. package/sinain-memory/eval/benchmarks/__pycache__/ingest.cpython-312.pyc +0 -0
  27. package/sinain-memory/eval/benchmarks/__pycache__/longmemeval_adapter.cpython-312.pyc +0 -0
  28. package/sinain-memory/eval/benchmarks/__pycache__/query.cpython-312.pyc +0 -0
  29. package/sinain-memory/eval/benchmarks/__pycache__/report.cpython-312.pyc +0 -0
  30. package/sinain-memory/eval/benchmarks/__pycache__/runner.cpython-312.pyc +0 -0
  31. package/sinain-memory/eval/benchmarks/base_adapter.py +43 -0
  32. package/sinain-memory/eval/benchmarks/config.py +23 -0
  33. package/sinain-memory/eval/benchmarks/evaluate.py +146 -0
  34. package/sinain-memory/eval/benchmarks/ingest.py +152 -0
  35. package/sinain-memory/eval/benchmarks/judges/__init__.py +0 -0
  36. package/sinain-memory/eval/benchmarks/judges/__pycache__/__init__.cpython-312.pyc +0 -0
  37. package/sinain-memory/eval/benchmarks/judges/__pycache__/qa_judge.cpython-312.pyc +0 -0
  38. package/sinain-memory/eval/benchmarks/judges/qa_judge.py +81 -0
  39. package/sinain-memory/eval/benchmarks/longmemeval_adapter.py +177 -0
  40. package/sinain-memory/eval/benchmarks/query.py +172 -0
  41. package/sinain-memory/eval/benchmarks/report.py +87 -0
  42. package/sinain-memory/eval/benchmarks/runner.py +276 -0
  43. package/sinain-memory/koog-config.json +11 -0
  44. package/sinain-core/src/agent/traits.ts +0 -520
@@ -0,0 +1,177 @@
1
+ """LongMemEval (ICLR 2025) adapter — download + parse into sinain format.
2
+
3
+ Dataset: https://huggingface.co/datasets/xiaowu0162/longmemeval-cleaned
4
+ Paper: https://arxiv.org/abs/2410.10813
5
+
6
+ Fields per item:
7
+ question_id, question_type, question, answer, question_date,
8
+ haystack_session_ids, haystack_dates, haystack_sessions, answer_session_ids
9
+
10
+ haystack_sessions entries: {"role": "user"/"assistant", "content": "...", "has_answer": bool}
11
+ """
12
+
13
+ from __future__ import annotations
14
+
15
+ import hashlib
16
+ import json
17
+ from datetime import datetime, timedelta, timezone
18
+ from pathlib import Path
19
+
20
+ from .base_adapter import BenchmarkAdapter, BenchmarkInstance, BenchmarkQuestion
21
+
22
+
23
+ def _download_dataset(data_dir: Path) -> Path:
24
+ """Download LongMemEval from HuggingFace if not cached."""
25
+ cache_path = data_dir / "longmemeval" / "longmemeval_s_cleaned.json"
26
+ if cache_path.exists():
27
+ return cache_path
28
+
29
+ cache_path.parent.mkdir(parents=True, exist_ok=True)
30
+
31
+ url = "https://huggingface.co/datasets/xiaowu0162/longmemeval-cleaned/resolve/main/longmemeval_s_cleaned.json"
32
+ print(f"[longmemeval] downloading from {url} ...")
33
+
34
+ # Use curl to avoid macOS Python SSL cert issues
35
+ import subprocess
36
+ result = subprocess.run(
37
+ ["curl", "-fSL", "-o", str(cache_path), url],
38
+ capture_output=True, text=True, timeout=120,
39
+ )
40
+ if result.returncode != 0:
41
+ raise RuntimeError(f"Download failed: {result.stderr[:200]}")
42
+ print(f"[longmemeval] saved to {cache_path} ({cache_path.stat().st_size} bytes)")
43
+ return cache_path
44
+
45
+
46
+ def _session_hash(sessions: list[dict]) -> str:
47
+ """Content hash for a haystack (for grouping questions with shared context)."""
48
+ raw = json.dumps(sessions, sort_keys=True, ensure_ascii=False)
49
+ return hashlib.sha256(raw.encode()).hexdigest()[:16]
50
+
51
+
52
+ def _sessions_to_feed_items(
53
+ haystack_sessions: list[list[dict]],
54
+ haystack_session_ids: list[str],
55
+ haystack_dates: list[str],
56
+ ) -> list[list[dict]]:
57
+ """Convert LongMemEval haystack into sinain feed item sessions.
58
+
59
+ haystack_sessions is a list of sessions, each a list of turn dicts:
60
+ sessions[i][j] = {"role": "user"/"assistant", "content": "..."}
61
+
62
+ Each session becomes a list of feed items with synthesized timestamps.
63
+ User turns → source: "audio", assistant turns → source: "agent".
64
+ """
65
+ result: list[list[dict]] = []
66
+
67
+ for i, session_turns in enumerate(haystack_sessions):
68
+ if not session_turns:
69
+ continue
70
+
71
+ base_ts = haystack_dates[i] if i < len(haystack_dates) else "2025-01-01T10:00:00Z"
72
+ base_dt = _parse_date(base_ts)
73
+
74
+ items = []
75
+ for j, turn in enumerate(session_turns):
76
+ ts = (base_dt + timedelta(seconds=30 * j)).isoformat()
77
+ source = "audio" if turn.get("role") == "user" else "agent"
78
+ items.append({
79
+ "source": source,
80
+ "text": turn.get("content", ""),
81
+ "ts": ts,
82
+ "channel": "benchmark",
83
+ })
84
+ if items:
85
+ result.append(items)
86
+
87
+ return result
88
+
89
+
90
+ def _parse_date(s: str) -> datetime:
91
+ """Best-effort date parsing."""
92
+ for fmt in ("%Y-%m-%dT%H:%M:%SZ", "%Y-%m-%dT%H:%M:%S", "%Y-%m-%d", "%m/%d/%Y"):
93
+ try:
94
+ return datetime.strptime(s, fmt).replace(tzinfo=timezone.utc)
95
+ except (ValueError, TypeError):
96
+ continue
97
+ return datetime(2025, 1, 1, 10, 0, tzinfo=timezone.utc)
98
+
99
+
100
+ class LongMemEvalAdapter(BenchmarkAdapter):
101
+ """Adapter for LongMemEval (ICLR 2025) benchmark."""
102
+
103
+ @property
104
+ def name(self) -> str:
105
+ return "longmemeval"
106
+
107
+ def load_dataset(self, data_dir: str) -> list[BenchmarkInstance]:
108
+ """Download and parse LongMemEval, grouping questions by shared haystack."""
109
+ path = _download_dataset(Path(data_dir))
110
+ with open(path) as f:
111
+ raw_items = json.load(f)
112
+
113
+ # Group questions by haystack content hash
114
+ groups: dict[str, dict] = {}
115
+ for item in raw_items:
116
+ h = _session_hash(item.get("haystack_sessions", []))
117
+ if h not in groups:
118
+ groups[h] = {
119
+ "haystack_sessions": item["haystack_sessions"],
120
+ "haystack_session_ids": item.get("haystack_session_ids", []),
121
+ "haystack_dates": item.get("haystack_dates", []),
122
+ "questions": [],
123
+ }
124
+ groups[h]["questions"].append(item)
125
+
126
+ instances = []
127
+ for h, group in groups.items():
128
+ feed_sessions = _sessions_to_feed_items(
129
+ group["haystack_sessions"],
130
+ group["haystack_session_ids"],
131
+ group["haystack_dates"],
132
+ )
133
+
134
+ questions = []
135
+ for item in group["questions"]:
136
+ questions.append(BenchmarkQuestion(
137
+ id=item["question_id"],
138
+ text=item["question"],
139
+ gold_answer=str(item["answer"]),
140
+ category=item.get("question_type", "unknown"),
141
+ evidence_session_ids=item.get("answer_session_ids", []),
142
+ metadata={
143
+ "question_date": item.get("question_date", ""),
144
+ },
145
+ ))
146
+
147
+ instances.append(BenchmarkInstance(
148
+ id=f"lme-{h}",
149
+ sessions=feed_sessions,
150
+ questions=questions,
151
+ raw_sessions=group["haystack_sessions"],
152
+ metadata={
153
+ "haystack_hash": h,
154
+ "num_sessions": len(feed_sessions),
155
+ "num_turns": len(group["haystack_sessions"]),
156
+ },
157
+ ))
158
+
159
+ print(f"[longmemeval] loaded {sum(len(i.questions) for i in instances)} questions "
160
+ f"across {len(instances)} unique haystacks")
161
+ return instances
162
+
163
+ def format_full_context(self, instance: BenchmarkInstance) -> str:
164
+ """Render the full conversation history for the baseline condition."""
165
+ lines = []
166
+ for session in instance.raw_sessions:
167
+ if isinstance(session, list):
168
+ for turn in session:
169
+ role = turn.get("role", "unknown").capitalize()
170
+ content = turn.get("content", "")
171
+ lines.append(f"{role}: {content}")
172
+ lines.append("---") # session separator
173
+ elif isinstance(session, dict):
174
+ role = session.get("role", "unknown").capitalize()
175
+ content = session.get("content", "")
176
+ lines.append(f"{role}: {content}")
177
+ return "\n\n".join(lines)
@@ -0,0 +1,172 @@
1
+ """Query pipeline — benchmark questions → LLM answers under 3 conditions.
2
+
3
+ Condition A (sinain-memory): answer from knowledge graph facts
4
+ Condition B (full-context): answer from full conversation history
5
+ Condition C (knowledge-doc): answer from portable knowledge document
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ import sys
11
+ from pathlib import Path
12
+
13
+ # Add sinain-memory to path
14
+ _koog_dir = str(Path(__file__).resolve().parent.parent.parent)
15
+ if _koog_dir not in sys.path:
16
+ sys.path.insert(0, _koog_dir)
17
+
18
+ from common import call_llm # noqa: E402
19
+
20
+ from .base_adapter import BenchmarkQuestion
21
+ from .config import QA_MODEL, MAX_FACTS_PER_QUERY
22
+
23
+
24
+ def _extract_keywords(query: str) -> list[str]:
25
+ """Extract search keywords (reuses logic from retrieval_evaluator)."""
26
+ import re
27
+ words = re.findall(r"[a-zA-Z][a-zA-Z0-9-]+", query.lower())
28
+ stopwords = {
29
+ "the", "is", "in", "on", "for", "and", "or", "of", "to", "a", "an",
30
+ "it", "was", "not", "how", "what", "when", "does", "did", "do", "my",
31
+ "your", "their", "have", "has", "had", "are", "were", "been", "being",
32
+ "about", "from", "with", "that", "this", "which", "who", "whom",
33
+ "where", "why", "can", "could", "would", "should",
34
+ }
35
+ return [w for w in words if len(w) > 2 and w not in stopwords]
36
+
37
+
38
+ def _get_all_facts_text(db_path: str) -> str:
39
+ """Dump ALL facts from the knowledge graph as formatted text.
40
+
41
+ Sinain triplestores are small (10-50 facts per session), so including
42
+ everything is feasible and avoids tag-matching failures.
43
+ """
44
+ from graph_query import query_top_facts, format_facts_text
45
+
46
+ facts = query_top_facts(db_path, limit=50)
47
+ if not facts:
48
+ return "(no knowledge available)"
49
+ return format_facts_text(facts, max_chars=6000)
50
+
51
+
52
+ def _query_knowledge(db_path: str, question: str) -> str:
53
+ """Query sinain knowledge graph for facts relevant to a question.
54
+
55
+ Strategy: first try tag-based retrieval (targeted). If nothing found,
56
+ fall back to full DB dump (sinain stores are small enough).
57
+ """
58
+ from graph_query import query_facts_by_entities, format_facts_text
59
+
60
+ keywords = _extract_keywords(question)
61
+ if keywords:
62
+ facts = query_facts_by_entities(db_path, keywords, max_facts=MAX_FACTS_PER_QUERY)
63
+ if facts:
64
+ return format_facts_text(facts, max_chars=3000)
65
+
66
+ # Fallback: include all facts (DB is small, typically 10-30 facts)
67
+ return _get_all_facts_text(db_path)
68
+
69
+
70
+ def _get_retrieved_facts(db_path: str, question: str, k: int = 10) -> list[dict]:
71
+ """Get facts retrieved for a question (for retrieval evaluation)."""
72
+ from graph_query import query_facts_by_entities, query_top_facts
73
+
74
+ keywords = _extract_keywords(question)
75
+ if keywords:
76
+ facts = query_facts_by_entities(db_path, keywords, max_facts=k)
77
+ if facts:
78
+ return facts
79
+
80
+ # Fallback: top facts by confidence
81
+ return query_top_facts(db_path, limit=k)
82
+
83
+
84
+ def compute_content_recall(
85
+ retrieved_facts: list[dict],
86
+ gold_answer: str,
87
+ k_values: list[int] | None = None,
88
+ ) -> dict:
89
+ """Content-based retrieval metric: do retrieved facts contain the answer?
90
+
91
+ Instead of matching entity IDs (which don't align between LongMemEval
92
+ session IDs and sinain entity IDs), we check whether the gold answer's
93
+ key terms appear in any retrieved fact's content.
94
+ """
95
+ from .config import K_VALUES
96
+ ks = k_values or K_VALUES
97
+
98
+ gold_terms = set(_extract_keywords(str(gold_answer)))
99
+ if not gold_terms:
100
+ return {f"content_recall@{k}": 0.0 for k in ks}
101
+
102
+ result = {}
103
+ for k in ks:
104
+ top_k = retrieved_facts[:k]
105
+ # Check if any fact in top-k contains gold answer terms
106
+ for fact in top_k:
107
+ fact_text = f"{fact.get('entity', '')} {fact.get('value', '')}".lower()
108
+ fact_terms = set(_extract_keywords(fact_text))
109
+ overlap = gold_terms & fact_terms
110
+ if len(overlap) >= max(1, len(gold_terms) // 2): # ≥50% of gold terms
111
+ result[f"content_recall@{k}"] = 1.0
112
+ break
113
+ else:
114
+ result[f"content_recall@{k}"] = 0.0
115
+
116
+ return result
117
+
118
+
119
+ def answer_question(
120
+ question: BenchmarkQuestion,
121
+ condition: str,
122
+ *,
123
+ db_path: str | None = None,
124
+ full_context: str | None = None,
125
+ knowledge_doc: str | None = None,
126
+ model: str | None = None,
127
+ ) -> str:
128
+ """Generate an answer for a benchmark question under a specific condition.
129
+
130
+ Returns the LLM's answer text.
131
+ """
132
+ qa_model = model or QA_MODEL
133
+
134
+ if condition == "sinain-memory":
135
+ assert db_path, "db_path required for sinain-memory condition"
136
+ facts = _query_knowledge(db_path, question.text)
137
+ system = (
138
+ "Answer the question using ONLY the provided knowledge facts. "
139
+ "If the facts don't contain enough information to answer, say \"I don't know.\""
140
+ )
141
+ user = f"## Knowledge Facts\n{facts}\n\n## Question\n{question.text}"
142
+
143
+ elif condition == "full-context":
144
+ assert full_context, "full_context required for full-context condition"
145
+ system = (
146
+ "Answer the question based on the conversation history below. "
147
+ "Be concise and specific."
148
+ )
149
+ # Truncate context if too large (some models have limits)
150
+ ctx = full_context[:100_000] if len(full_context) > 100_000 else full_context
151
+ user = f"## Conversation History\n{ctx}\n\n## Question\n{question.text}"
152
+
153
+ elif condition == "knowledge-doc":
154
+ assert knowledge_doc, "knowledge_doc required for knowledge-doc condition"
155
+ system = (
156
+ "Answer the question using ONLY the knowledge document provided. "
157
+ "If the document doesn't contain enough information, say \"I don't know.\""
158
+ )
159
+ user = f"## Knowledge Document\n{knowledge_doc}\n\n## Question\n{question.text}"
160
+
161
+ else:
162
+ raise ValueError(f"Unknown condition: {condition}")
163
+
164
+ try:
165
+ return call_llm(
166
+ system_prompt=system,
167
+ user_prompt=user,
168
+ model=qa_model,
169
+ max_tokens=300,
170
+ ).strip()
171
+ except Exception as e:
172
+ return f"(error: {e})"
@@ -0,0 +1,87 @@
1
+ """Report generation — markdown, JSON, and LaTeX output."""
2
+
3
+ from __future__ import annotations
4
+
5
+ import json
6
+ from datetime import datetime, timezone
7
+
8
+
9
+ def generate_markdown(benchmark_name: str, summary: dict, details: list[dict]) -> str:
10
+ """Generate a publishable markdown report."""
11
+ lines = [
12
+ f"# Sinain Knowledge Graph — {benchmark_name} Results",
13
+ f"\nGenerated: {datetime.now(timezone.utc).strftime('%Y-%m-%d %H:%M UTC')}",
14
+ "",
15
+ ]
16
+
17
+ # Headline IPR
18
+ ipr = summary.get("ipr")
19
+ if ipr:
20
+ lines.append(f"**Information Preservation Rate (IPR)**: {ipr:.1%}")
21
+ lines.append("")
22
+
23
+ # Condition scores table
24
+ conditions = summary.get("conditions", {})
25
+ if conditions:
26
+ cond_names = sorted(conditions.keys())
27
+ header = "| Condition | Mean Score (1-5) | Mean F1 | N |"
28
+ sep = "|-----------|------------------|---------|---|"
29
+ lines.extend([header, sep])
30
+ for cond in cond_names:
31
+ c = conditions[cond]
32
+ lines.append(f"| {cond} | {c['mean_score']:.2f} | {c.get('mean_f1', 0):.2f} | {c['n']} |")
33
+ lines.append("")
34
+
35
+ # Retrieval metrics
36
+ retrieval = summary.get("retrieval", {})
37
+ if retrieval:
38
+ lines.append("## Retrieval Quality")
39
+ lines.append("| Metric | Score |")
40
+ lines.append("|--------|-------|")
41
+ for k, v in sorted(retrieval.items()):
42
+ lines.append(f"| {k} | {v:.1%} |")
43
+ lines.append("")
44
+
45
+ # Category breakdown
46
+ categories = summary.get("categories", {})
47
+ if categories:
48
+ lines.append("## By Category")
49
+ cond_names = sorted(set(c for cat in categories.values() for c in cat))
50
+ header = "| Category | " + " | ".join(cond_names) + " |"
51
+ sep = "|----------|" + "|".join(["------"] * len(cond_names)) + "|"
52
+ lines.extend([header, sep])
53
+ for cat in sorted(categories):
54
+ cells = []
55
+ for cond in cond_names:
56
+ if cond in categories[cat]:
57
+ cells.append(f"{categories[cat][cond]['mean_score']:.2f} (n={categories[cat][cond]['n']})")
58
+ else:
59
+ cells.append("-")
60
+ lines.append(f"| {cat} | " + " | ".join(cells) + " |")
61
+ lines.append("")
62
+
63
+ # Failures (worst questions)
64
+ if details:
65
+ sm_details = [d for d in details if d.get("answers", {}).get("sinain-memory", {}).get("score") is not None]
66
+ sm_details.sort(key=lambda d: d["answers"]["sinain-memory"]["score"])
67
+ if sm_details:
68
+ lines.append("## Hardest Questions for sinain-memory (bottom 5)")
69
+ for d in sm_details[:5]:
70
+ sm = d["answers"]["sinain-memory"]
71
+ fc = d["answers"].get("full-context", {})
72
+ lines.append(f"- **{d['id']}** [{d['category']}]: score={sm['score']}/5 "
73
+ f"(full-context: {fc.get('score', '?')}/5)")
74
+ lines.append(f" Q: {d['question'][:100]}...")
75
+ lines.append("")
76
+
77
+ return "\n".join(lines)
78
+
79
+
80
+ def generate_json(benchmark_name: str, summary: dict, details: list[dict]) -> str:
81
+ """Generate JSON report."""
82
+ return json.dumps({
83
+ "benchmark": benchmark_name,
84
+ "timestamp": datetime.now(timezone.utc).isoformat(),
85
+ "summary": summary,
86
+ "details": details,
87
+ }, indent=2, ensure_ascii=False)