ltcai 0.5.0 → 0.6.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.
- package/README.md +10 -8
- package/docs/CHANGELOG.md +59 -0
- package/kg_schema.py +179 -518
- package/knowledge_graph.py +183 -80
- package/latticeai/core/agent.py +2 -2
- package/latticeai/core/agent_prompts.py +101 -0
- package/latticeai/core/tool_registry.py +288 -0
- package/latticeai/server_app.py +5806 -0
- package/package.json +2 -2
- package/server.py +13 -6259
- package/tools.py +6 -5
package/knowledge_graph.py
CHANGED
|
@@ -23,14 +23,23 @@ from pathlib import Path
|
|
|
23
23
|
from typing import Any, Dict, Iterable, List, Optional, Tuple
|
|
24
24
|
|
|
25
25
|
try:
|
|
26
|
-
from kg_schema import KGStoreV2
|
|
26
|
+
from kg_schema import KGStoreV2, NodeType, EdgeType, _exec_script
|
|
27
27
|
except Exception: # pragma: no cover - v2 schema is optional at import time
|
|
28
28
|
KGStoreV2 = None # type: ignore[assignment]
|
|
29
|
+
NodeType = None # type: ignore[assignment]
|
|
30
|
+
EdgeType = None # type: ignore[assignment]
|
|
31
|
+
_exec_script = None # type: ignore[assignment]
|
|
29
32
|
|
|
30
33
|
# Default read source for the graph queries: v2 reconstruction views.
|
|
31
34
|
# Override with LATTICEAI_KG_READ_V2=0 to fall back to the legacy tables.
|
|
32
35
|
_READ_FROM_V2_DEFAULT = os.getenv("LATTICEAI_KG_READ_V2", "1") != "0"
|
|
33
36
|
|
|
37
|
+
# Bump when the v2 projection layout changes (columns, normalization rules).
|
|
38
|
+
# On init, a stale projection is dropped and rebuilt from the authoritative
|
|
39
|
+
# legacy tables — safe because nodes_v2/edges_v2 only ever hold a derived view.
|
|
40
|
+
# v4: summary nullable + verbatim (byte-faithful) projection of legacy values.
|
|
41
|
+
_PROJECTION_VERSION = 4
|
|
42
|
+
|
|
34
43
|
_llm_router_ref = None
|
|
35
44
|
|
|
36
45
|
def set_llm_router(router_instance):
|
|
@@ -916,133 +925,192 @@ class KnowledgeGraphStore:
|
|
|
916
925
|
)
|
|
917
926
|
self._init_v2_schema()
|
|
918
927
|
|
|
919
|
-
# SQL views that reconstruct the *exact* legacy row shape on top of the
|
|
920
|
-
# tables, so the read methods
|
|
921
|
-
# projection
|
|
922
|
-
#
|
|
923
|
-
#
|
|
928
|
+
# SQL views that reconstruct the *exact* legacy row shape on top of the
|
|
929
|
+
# normalized v2 tables, so the read methods run unchanged against either
|
|
930
|
+
# source. The projection stores the raw legacy type string in ``legacy_type``
|
|
931
|
+
# and promotes summary + metadata to first-class columns (no more
|
|
932
|
+
# ``attrs._kg`` passthrough / ``evidence`` abuse), so these views are
|
|
933
|
+
# byte-faithful to the legacy nodes/edges tables.
|
|
924
934
|
_V2_VIEWS_SQL = """
|
|
925
935
|
CREATE VIEW IF NOT EXISTS kgv2_nodes AS
|
|
926
|
-
SELECT id,
|
|
936
|
+
SELECT id,
|
|
937
|
+
COALESCE(legacy_type, type) AS type,
|
|
927
938
|
label AS title,
|
|
928
|
-
|
|
929
|
-
|
|
939
|
+
summary,
|
|
940
|
+
attrs AS metadata_json,
|
|
930
941
|
created_at, updated_at
|
|
931
942
|
FROM nodes_v2;
|
|
932
943
|
CREATE VIEW IF NOT EXISTS kgv2_edges AS
|
|
933
|
-
SELECT id, source AS from_node, target AS to_node,
|
|
934
|
-
COALESCE(
|
|
944
|
+
SELECT id, source AS from_node, target AS to_node,
|
|
945
|
+
COALESCE(legacy_type, type) AS type,
|
|
946
|
+
weight,
|
|
947
|
+
metadata AS metadata_json,
|
|
948
|
+
created_at
|
|
935
949
|
FROM edges_v2;
|
|
936
950
|
"""
|
|
937
951
|
|
|
938
952
|
def _init_v2_schema(self) -> None:
|
|
939
|
-
"""Initialize the v2 tables + reconstruction views
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
953
|
+
"""Initialize the normalized v2 tables + reconstruction views, migrating
|
|
954
|
+
the projection layout when it is stale — **atomically**.
|
|
955
|
+
|
|
956
|
+
The entire DROP → CREATE → VIEWS → BACKFILL → version-stamp sequence runs
|
|
957
|
+
in a single transaction on one connection: on any failure it rolls back,
|
|
958
|
+
leaving the prior projection untouched and the version unchanged, so the
|
|
959
|
+
next startup simply retries. The migration only ever touches the v2
|
|
960
|
+
tables/views and the ``projection_version`` key — never the authoritative
|
|
961
|
+
legacy ``nodes``/``edges`` — so legacy data cannot be corrupted even if
|
|
962
|
+
the rebuild fails midway.
|
|
945
963
|
"""
|
|
946
|
-
if KGStoreV2 is None:
|
|
964
|
+
if KGStoreV2 is None or _exec_script is None:
|
|
947
965
|
return
|
|
948
966
|
try:
|
|
949
|
-
KGStoreV2(self.db_path).init_schema()
|
|
950
967
|
with self._connect() as conn:
|
|
951
|
-
conn.
|
|
952
|
-
|
|
968
|
+
conn.execute("BEGIN")
|
|
969
|
+
stale = self._projection_version(conn) != _PROJECTION_VERSION
|
|
970
|
+
if stale:
|
|
971
|
+
# The projection is non-authoritative; drop it so init_schema
|
|
972
|
+
# recreates the tables with the current normalized columns.
|
|
973
|
+
for stmt in (
|
|
974
|
+
"DROP VIEW IF EXISTS kgv2_edges",
|
|
975
|
+
"DROP VIEW IF EXISTS kgv2_nodes",
|
|
976
|
+
"DROP TABLE IF EXISTS edges_v2",
|
|
977
|
+
"DROP TABLE IF EXISTS nodes_v2",
|
|
978
|
+
):
|
|
979
|
+
conn.execute(stmt)
|
|
980
|
+
# init_schema(conn=...) joins this transaction (no implicit commit)
|
|
981
|
+
KGStoreV2(self.db_path).init_schema(conn=conn)
|
|
982
|
+
_exec_script(conn, self._V2_VIEWS_SQL)
|
|
983
|
+
self._backfill_v2_on(conn, force=stale)
|
|
984
|
+
# version stamp commits together with the backfill — never stranded
|
|
985
|
+
conn.execute(
|
|
986
|
+
"INSERT OR REPLACE INTO kg_meta(key, value) VALUES ('projection_version', ?)",
|
|
987
|
+
(str(_PROJECTION_VERSION),),
|
|
988
|
+
)
|
|
953
989
|
except Exception as e:
|
|
954
990
|
logging.warning("knowledge_graph: v2 schema init/backfill skipped: %s", e)
|
|
955
991
|
|
|
956
|
-
def
|
|
957
|
-
"""
|
|
992
|
+
def _projection_version(self, conn: sqlite3.Connection) -> int:
|
|
993
|
+
"""Return the stored v2 projection layout version (0 if unknown).
|
|
994
|
+
|
|
995
|
+
A fresh DB (kg_meta absent) raises ``sqlite3.OperationalError`` here and
|
|
996
|
+
is correctly treated as version 0 → rebuild. Only sqlite errors are
|
|
997
|
+
swallowed so a real bug doesn't masquerade as a stale projection.
|
|
998
|
+
"""
|
|
999
|
+
try:
|
|
1000
|
+
row = conn.execute(
|
|
1001
|
+
"SELECT value FROM kg_meta WHERE key='projection_version'"
|
|
1002
|
+
).fetchone()
|
|
1003
|
+
return int(row["value"]) if row and row["value"] is not None else 0
|
|
1004
|
+
except sqlite3.Error:
|
|
1005
|
+
return 0
|
|
1006
|
+
|
|
1007
|
+
def _backfill_v2_if_needed(self, *, force: bool = False) -> None:
|
|
1008
|
+
"""Project legacy nodes/edges into v2 on a fresh transaction.
|
|
958
1009
|
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
stay faithful. Idempotent: no-ops once v2 carries the current projection.
|
|
1010
|
+
Thin wrapper around :meth:`_backfill_v2_on` for callers (tests, ad-hoc
|
|
1011
|
+
re-sync) that aren't already inside the migration transaction.
|
|
962
1012
|
"""
|
|
963
1013
|
try:
|
|
964
1014
|
with self._connect() as conn:
|
|
965
|
-
|
|
966
|
-
legacy_nodes = conn.execute("SELECT COUNT(*) FROM nodes").fetchone()[0]
|
|
967
|
-
if legacy_nodes == 0:
|
|
968
|
-
return
|
|
969
|
-
if v2_nodes > 0:
|
|
970
|
-
has_kg = conn.execute(
|
|
971
|
-
"SELECT COUNT(*) FROM nodes_v2 WHERE json_extract(attrs,'$._kg') IS NOT NULL"
|
|
972
|
-
).fetchone()[0]
|
|
973
|
-
if has_kg > 0:
|
|
974
|
-
return # current projection already present
|
|
975
|
-
# (re)project: clear v2 graph (not authoritative) and rebuild
|
|
976
|
-
conn.execute("DELETE FROM edges_v2")
|
|
977
|
-
conn.execute("DELETE FROM nodes_v2")
|
|
978
|
-
n = e = 0
|
|
979
|
-
for r in conn.execute(
|
|
980
|
-
"SELECT id, type, title, summary, metadata_json, created_at, updated_at FROM nodes"
|
|
981
|
-
).fetchall():
|
|
982
|
-
self._v2_project_node(
|
|
983
|
-
conn, r["id"], r["type"], r["title"] or "", r["summary"] or "",
|
|
984
|
-
_safe_loads(r["metadata_json"]),
|
|
985
|
-
created_at=r["created_at"], updated_at=r["updated_at"],
|
|
986
|
-
)
|
|
987
|
-
n += 1
|
|
988
|
-
for r in conn.execute(
|
|
989
|
-
"SELECT id, from_node, to_node, type, weight, metadata_json, created_at FROM edges"
|
|
990
|
-
).fetchall():
|
|
991
|
-
self._v2_project_edge(
|
|
992
|
-
conn, r["from_node"], r["to_node"], r["type"], float(r["weight"] or 1.0),
|
|
993
|
-
_safe_loads(r["metadata_json"]), edge_id=r["id"], created_at=r["created_at"],
|
|
994
|
-
)
|
|
995
|
-
e += 1
|
|
996
|
-
logging.info("knowledge_graph: projected legacy → v2 (%d nodes, %d edges)", n, e)
|
|
1015
|
+
self._backfill_v2_on(conn, force=force)
|
|
997
1016
|
except Exception as ex:
|
|
998
1017
|
logging.warning("knowledge_graph: v2 backfill skipped: %s", ex)
|
|
999
1018
|
|
|
1000
|
-
|
|
1019
|
+
def _backfill_v2_on(self, conn: sqlite3.Connection, *, force: bool = False) -> None:
|
|
1020
|
+
"""Project legacy nodes/edges into the normalized v2 tables on ``conn``.
|
|
1021
|
+
|
|
1022
|
+
Non-destructive to legacy. ``force`` rebuilds unconditionally (used after
|
|
1023
|
+
a layout migration); otherwise it only projects when v2 is empty. The v2
|
|
1024
|
+
graph is a derived projection, so clearing + rebuilding it is always safe.
|
|
1025
|
+
Idempotent: no-ops once v2 carries the current projection. Copies the
|
|
1026
|
+
legacy column values **verbatim** so the kgv2_* views are byte-faithful.
|
|
1027
|
+
"""
|
|
1028
|
+
legacy_nodes = conn.execute("SELECT COUNT(*) FROM nodes").fetchone()[0]
|
|
1029
|
+
if legacy_nodes == 0:
|
|
1030
|
+
return
|
|
1031
|
+
v2_nodes = conn.execute("SELECT COUNT(*) FROM nodes_v2").fetchone()[0]
|
|
1032
|
+
if v2_nodes > 0 and not force:
|
|
1033
|
+
return # current projection already present
|
|
1034
|
+
# (re)project: clear v2 graph (not authoritative) and rebuild
|
|
1035
|
+
conn.execute("DELETE FROM edges_v2")
|
|
1036
|
+
conn.execute("DELETE FROM nodes_v2")
|
|
1037
|
+
n = e = 0
|
|
1038
|
+
for r in conn.execute(
|
|
1039
|
+
"SELECT id, type, title, summary, metadata_json, created_at, updated_at FROM nodes"
|
|
1040
|
+
).fetchall():
|
|
1041
|
+
self._v2_project_node(
|
|
1042
|
+
conn, r["id"], r["type"], r["title"], r["summary"], r["metadata_json"],
|
|
1043
|
+
created_at=r["created_at"], updated_at=r["updated_at"],
|
|
1044
|
+
)
|
|
1045
|
+
n += 1
|
|
1046
|
+
for r in conn.execute(
|
|
1047
|
+
"SELECT id, from_node, to_node, type, weight, metadata_json, created_at FROM edges"
|
|
1048
|
+
).fetchall():
|
|
1049
|
+
self._v2_project_edge(
|
|
1050
|
+
conn, r["from_node"], r["to_node"], r["type"], float(r["weight"] or 1.0),
|
|
1051
|
+
r["metadata_json"], edge_id=r["id"], created_at=r["created_at"],
|
|
1052
|
+
)
|
|
1053
|
+
e += 1
|
|
1054
|
+
logging.info("knowledge_graph: projected legacy → v2 (%d nodes, %d edges)", n, e)
|
|
1055
|
+
|
|
1056
|
+
# ── v2 dual-write projection (normalized type, byte-faithful legacy values) ──
|
|
1057
|
+
# The projection stores the legacy ``title``/``summary``/``metadata_json``
|
|
1058
|
+
# values it is handed VERBATIM (no truncation or JSON re-encoding) so the
|
|
1059
|
+
# kgv2_* views reproduce the legacy rows exactly. Callers (_upsert_* and the
|
|
1060
|
+
# backfill) pass the already-canonical legacy column values.
|
|
1001
1061
|
def _v2_project_node(
|
|
1002
1062
|
self, conn: sqlite3.Connection, node_id: str, node_type: str, title: str,
|
|
1003
|
-
summary: str,
|
|
1063
|
+
summary: Optional[str], metadata_json: Optional[str],
|
|
1004
1064
|
*, created_at: Optional[str] = None, updated_at: Optional[str] = None,
|
|
1005
1065
|
) -> None:
|
|
1006
1066
|
if KGStoreV2 is None:
|
|
1007
1067
|
return
|
|
1008
1068
|
ts = updated_at or _now()
|
|
1009
|
-
|
|
1069
|
+
norm_type = NodeType.from_legacy(node_type).value if NodeType is not None else node_type
|
|
1010
1070
|
try:
|
|
1011
1071
|
conn.execute(
|
|
1012
1072
|
"""
|
|
1013
|
-
INSERT INTO nodes_v2(id, type,
|
|
1014
|
-
created_at, updated_at,
|
|
1015
|
-
|
|
1073
|
+
INSERT INTO nodes_v2(id, type, legacy_type, label, summary, attrs,
|
|
1074
|
+
owner_id, visibility, created_at, updated_at,
|
|
1075
|
+
importance_score)
|
|
1076
|
+
VALUES (?, ?, ?, ?, ?, ?, NULL, 'private', ?, ?, 0.0)
|
|
1016
1077
|
ON CONFLICT(id) DO UPDATE SET
|
|
1017
|
-
type=excluded.type,
|
|
1078
|
+
type=excluded.type, legacy_type=excluded.legacy_type,
|
|
1079
|
+
label=excluded.label, summary=excluded.summary,
|
|
1018
1080
|
attrs=excluded.attrs, updated_at=excluded.updated_at
|
|
1019
1081
|
""",
|
|
1020
|
-
(node_id, node_type,
|
|
1082
|
+
(node_id, norm_type, node_type, title, summary,
|
|
1083
|
+
metadata_json if metadata_json is not None else "{}",
|
|
1084
|
+
created_at or ts, ts),
|
|
1021
1085
|
)
|
|
1022
1086
|
except Exception as ex:
|
|
1023
1087
|
logging.debug("knowledge_graph: v2 node projection skipped (%s): %s", node_id, ex)
|
|
1024
1088
|
|
|
1025
1089
|
def _v2_project_edge(
|
|
1026
1090
|
self, conn: sqlite3.Connection, from_node: str, to_node: str, edge_type: str,
|
|
1027
|
-
weight: float,
|
|
1091
|
+
weight: float, metadata_json: Optional[str],
|
|
1028
1092
|
*, edge_id: Optional[str] = None, created_at: Optional[str] = None,
|
|
1029
1093
|
) -> None:
|
|
1030
1094
|
if KGStoreV2 is None:
|
|
1031
1095
|
return
|
|
1032
|
-
meta = metadata or {}
|
|
1033
1096
|
eid = edge_id or f"edge:{_sha256_text(f'{from_node}|{edge_type}|{to_node}')[:24]}"
|
|
1097
|
+
norm_type = EdgeType.from_legacy(edge_type).value if EdgeType is not None else edge_type
|
|
1098
|
+
meta_str = metadata_json if metadata_json is not None else "{}"
|
|
1099
|
+
confidence = float(_safe_loads(meta_str).get("confidence", 1.0))
|
|
1034
1100
|
try:
|
|
1035
1101
|
conn.execute(
|
|
1036
1102
|
"""
|
|
1037
|
-
INSERT INTO edges_v2(id, source, target, type,
|
|
1038
|
-
evidence, created_by, created_at)
|
|
1039
|
-
VALUES (?, ?, ?, ?, ?, ?, ?, 'legacy', ?)
|
|
1040
|
-
ON CONFLICT(source, target,
|
|
1103
|
+
INSERT INTO edges_v2(id, source, target, type, legacy_type, weight,
|
|
1104
|
+
confidence, evidence, metadata, created_by, created_at)
|
|
1105
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, '[]', ?, 'legacy', ?)
|
|
1106
|
+
ON CONFLICT(source, target, legacy_type) DO UPDATE SET
|
|
1107
|
+
type=excluded.type,
|
|
1041
1108
|
weight=max(edges_v2.weight, excluded.weight),
|
|
1042
|
-
|
|
1109
|
+
confidence=excluded.confidence,
|
|
1110
|
+
metadata=excluded.metadata
|
|
1043
1111
|
""",
|
|
1044
|
-
(eid, from_node, to_node, edge_type, float(weight),
|
|
1045
|
-
|
|
1112
|
+
(eid, from_node, to_node, norm_type, edge_type, float(weight),
|
|
1113
|
+
confidence, meta_str, created_at or _now()),
|
|
1046
1114
|
)
|
|
1047
1115
|
except Exception as ex:
|
|
1048
1116
|
logging.debug("knowledge_graph: v2 edge projection skipped (%s->%s): %s", from_node, to_node, ex)
|
|
@@ -1069,6 +1137,35 @@ class KnowledgeGraphStore:
|
|
|
1069
1137
|
except Exception as ex:
|
|
1070
1138
|
logging.debug("knowledge_graph: v2 edge delete mirror skipped: %s", ex)
|
|
1071
1139
|
|
|
1140
|
+
def _v2_sync_report(self) -> Dict[str, Any]:
|
|
1141
|
+
"""Diagnose the dual-write invariant: legacy node/edge id sets must equal
|
|
1142
|
+
the v2 projection's. Returns counts + any drift (ids missing from / extra
|
|
1143
|
+
in v2). ``in_sync`` is True only when both id sets match exactly.
|
|
1144
|
+
|
|
1145
|
+
All legacy writes go through _upsert_node/_upsert_edge (which dual-write)
|
|
1146
|
+
and every legacy delete is mirrored, so a non-empty drift signals a
|
|
1147
|
+
bypassed write path — this is the runtime guard for that invariant.
|
|
1148
|
+
"""
|
|
1149
|
+
if KGStoreV2 is None:
|
|
1150
|
+
return {"available": False, "in_sync": True}
|
|
1151
|
+
with self._connect() as conn:
|
|
1152
|
+
legacy_nodes = {r[0] for r in conn.execute("SELECT id FROM nodes")}
|
|
1153
|
+
v2_nodes = {r[0] for r in conn.execute("SELECT id FROM nodes_v2")}
|
|
1154
|
+
legacy_edges = {r[0] for r in conn.execute("SELECT id FROM edges")}
|
|
1155
|
+
v2_edges = {r[0] for r in conn.execute("SELECT id FROM edges_v2")}
|
|
1156
|
+
return {
|
|
1157
|
+
"available": True,
|
|
1158
|
+
"in_sync": legacy_nodes == v2_nodes and legacy_edges == v2_edges,
|
|
1159
|
+
"nodes_legacy": len(legacy_nodes),
|
|
1160
|
+
"nodes_v2": len(v2_nodes),
|
|
1161
|
+
"edges_legacy": len(legacy_edges),
|
|
1162
|
+
"edges_v2": len(v2_edges),
|
|
1163
|
+
"nodes_missing_from_v2": sorted(legacy_nodes - v2_nodes),
|
|
1164
|
+
"nodes_extra_in_v2": sorted(v2_nodes - legacy_nodes),
|
|
1165
|
+
"edges_missing_from_v2": sorted(legacy_edges - v2_edges),
|
|
1166
|
+
"edges_extra_in_v2": sorted(v2_edges - legacy_edges),
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1072
1169
|
def _upsert_node(
|
|
1073
1170
|
self,
|
|
1074
1171
|
conn: sqlite3.Connection,
|
|
@@ -1080,6 +1177,11 @@ class KnowledgeGraphStore:
|
|
|
1080
1177
|
raw: Optional[Dict[str, Any]] = None,
|
|
1081
1178
|
) -> str:
|
|
1082
1179
|
now = _now()
|
|
1180
|
+
# Canonical stored values, computed once and shared with the v2
|
|
1181
|
+
# projection so legacy and v2 hold byte-identical strings.
|
|
1182
|
+
title_s = title[:240]
|
|
1183
|
+
summary_s = summary[:1000]
|
|
1184
|
+
meta_json = _json(metadata)
|
|
1083
1185
|
conn.execute(
|
|
1084
1186
|
"""
|
|
1085
1187
|
INSERT INTO nodes(id, type, title, summary, metadata_json, raw_json, created_at, updated_at)
|
|
@@ -1091,10 +1193,10 @@ class KnowledgeGraphStore:
|
|
|
1091
1193
|
raw_json=excluded.raw_json,
|
|
1092
1194
|
updated_at=excluded.updated_at
|
|
1093
1195
|
""",
|
|
1094
|
-
(node_id, node_type,
|
|
1196
|
+
(node_id, node_type, title_s, summary_s, meta_json, _json(raw), now, now),
|
|
1095
1197
|
)
|
|
1096
1198
|
# dual-write: project into the v2 graph on the same transaction
|
|
1097
|
-
self._v2_project_node(conn, node_id, node_type,
|
|
1199
|
+
self._v2_project_node(conn, node_id, node_type, title_s, summary_s, meta_json,
|
|
1098
1200
|
created_at=now, updated_at=now)
|
|
1099
1201
|
return node_id
|
|
1100
1202
|
|
|
@@ -1109,6 +1211,7 @@ class KnowledgeGraphStore:
|
|
|
1109
1211
|
) -> str:
|
|
1110
1212
|
edge_id = f"edge:{_sha256_text(f'{from_node}|{edge_type}|{to_node}')[:24]}"
|
|
1111
1213
|
now = _now()
|
|
1214
|
+
meta_json = _json(metadata) # canonical string shared with the projection
|
|
1112
1215
|
conn.execute(
|
|
1113
1216
|
"""
|
|
1114
1217
|
INSERT INTO edges(id, from_node, to_node, type, weight, metadata_json, created_at)
|
|
@@ -1117,10 +1220,10 @@ class KnowledgeGraphStore:
|
|
|
1117
1220
|
weight=max(edges.weight, excluded.weight),
|
|
1118
1221
|
metadata_json=excluded.metadata_json
|
|
1119
1222
|
""",
|
|
1120
|
-
(edge_id, from_node, to_node, edge_type, float(weight),
|
|
1223
|
+
(edge_id, from_node, to_node, edge_type, float(weight), meta_json, now),
|
|
1121
1224
|
)
|
|
1122
1225
|
# dual-write: project into the v2 graph on the same transaction
|
|
1123
|
-
self._v2_project_edge(conn, from_node, to_node, edge_type, float(weight),
|
|
1226
|
+
self._v2_project_edge(conn, from_node, to_node, edge_type, float(weight), meta_json,
|
|
1124
1227
|
edge_id=edge_id, created_at=now)
|
|
1125
1228
|
return edge_id
|
|
1126
1229
|
|
|
@@ -3072,7 +3175,7 @@ class KnowledgeGraphStore:
|
|
|
3072
3175
|
conn.execute(
|
|
3073
3176
|
"""
|
|
3074
3177
|
DELETE FROM nodes_v2
|
|
3075
|
-
WHERE
|
|
3178
|
+
WHERE legacy_type='Topic'
|
|
3076
3179
|
AND id NOT IN (SELECT target FROM edges_v2)
|
|
3077
3180
|
AND id NOT IN (SELECT source FROM edges_v2)
|
|
3078
3181
|
"""
|
package/latticeai/core/agent.py
CHANGED
|
@@ -8,13 +8,13 @@ no globals, and no I/O of its own — every collaborator is injected through
|
|
|
8
8
|
|
|
9
9
|
Two adapters justify the seam:
|
|
10
10
|
|
|
11
|
-
* production wires ``AgentDeps`` from
|
|
11
|
+
* production wires ``AgentDeps`` from ``latticeai.server_app``'s ``LLMRouter``, governance
|
|
12
12
|
map, audit log, and prompts;
|
|
13
13
|
* tests pass fake ports (an LLM that returns canned JSON, a recording tool
|
|
14
14
|
executor) and drive a full PLAN→EXECUTE→VERIFY→DONE cycle without a server.
|
|
15
15
|
|
|
16
16
|
HTTP concerns — request parsing, chat-history persistence, response shaping,
|
|
17
|
-
scheduling the background memory update — stay in
|
|
17
|
+
scheduling the background memory update — stay in the app layer. This module
|
|
18
18
|
only owns the state machine.
|
|
19
19
|
"""
|
|
20
20
|
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
"""Role prompts for the Lattice multi-role agent runtime."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from latticeai.core.tool_registry import TOOL_CATALOG_BRIEF
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
PLANNER_PROMPT = """You are the PLANNER role in Lattice AI's multi-role agent harness.
|
|
9
|
+
Your ONLY job: analyze the request and produce a structured execution plan.
|
|
10
|
+
You do NOT call tools or write code.
|
|
11
|
+
|
|
12
|
+
Respond with exactly ONE JSON object (no markdown, no fences):
|
|
13
|
+
{
|
|
14
|
+
"action": "plan",
|
|
15
|
+
"state": "PLANNING",
|
|
16
|
+
"goal": "one-sentence goal in the user's language",
|
|
17
|
+
"steps": [
|
|
18
|
+
{"id": 1, "description": "what this step does", "action": "expected_tool", "purpose": "why needed"}
|
|
19
|
+
],
|
|
20
|
+
"requires_approval": true,
|
|
21
|
+
"rollback_strategy": "git",
|
|
22
|
+
"estimated_steps": 3
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
Rules:
|
|
26
|
+
- requires_approval = true if ANY step uses write/exec tools (edit_file, write_file, run_command, etc.)
|
|
27
|
+
- rollback_strategy = "git" if steps modify existing files; "none" otherwise
|
|
28
|
+
- Keep steps realistic: 2-4 for simple tasks, up to 10 for complex ones
|
|
29
|
+
- Do NOT specify full tool args -- that is the Executor's job
|
|
30
|
+
|
|
31
|
+
Available tools:""" + TOOL_CATALOG_BRIEF
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
EXECUTOR_PROMPT = """You are the EXECUTOR role in Lattice AI's multi-role agent harness.
|
|
35
|
+
You have a plan from the Planner. Execute it step by step using exactly one tool per response.
|
|
36
|
+
|
|
37
|
+
You think and act like a senior software engineer:
|
|
38
|
+
- Read (read_file, grep) BEFORE editing -- never guess at file contents
|
|
39
|
+
- Prefer edit_file over write_file for existing files
|
|
40
|
+
- Keep changes small and precise
|
|
41
|
+
- Verify after changes with build_project or run_command
|
|
42
|
+
|
|
43
|
+
Respond with exactly ONE JSON object per step:
|
|
44
|
+
{"thoughts": "what you learned / why this next action", "action": "tool_name", "args": {...}}
|
|
45
|
+
|
|
46
|
+
When the task is fully done AND a tool result in this run confirms it:
|
|
47
|
+
{"thoughts": "verified", "action": "final", "message": "한국어로 무엇을 했고 어디서 검증했는지 요약"}
|
|
48
|
+
|
|
49
|
+
ANTI-PATTERNS (will halt the loop):
|
|
50
|
+
- Editing without reading first -> read_file + grep BEFORE edit_file
|
|
51
|
+
- Repeating the same action+args -> check the transcript
|
|
52
|
+
- Claiming done without a verification tool result in transcript
|
|
53
|
+
- Hallucinating imports or file paths that were never confirmed by a tool result
|
|
54
|
+
|
|
55
|
+
Available tools:""" + TOOL_CATALOG_BRIEF
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
CRITIC_PROMPT = """You are the CRITIC / REVIEWER role in Lattice AI's multi-role agent harness.
|
|
59
|
+
Review the execution transcript and determine whether the goal was achieved.
|
|
60
|
+
|
|
61
|
+
Respond with exactly ONE JSON object:
|
|
62
|
+
{
|
|
63
|
+
"action": "verdict",
|
|
64
|
+
"state": "VERIFYING",
|
|
65
|
+
"verdict": "PASS",
|
|
66
|
+
"reason": "why you think it passed or failed (cite specific tool results)",
|
|
67
|
+
"corrections": [],
|
|
68
|
+
"confidence": 0.95,
|
|
69
|
+
"next_state": "DONE"
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
verdict: "PASS" | "FAIL"
|
|
73
|
+
next_state:
|
|
74
|
+
"DONE" -- task succeeded; finish
|
|
75
|
+
"EXECUTING" -- task failed but corrections can fix it (use corrections field for retry)
|
|
76
|
+
"ROLLBACK" -- task failed AND file changes should be undone
|
|
77
|
+
|
|
78
|
+
Criteria for PASS: a tool result in the transcript explicitly confirms success.
|
|
79
|
+
Be strict. Claiming done without evidence = FAIL."""
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
MEMORY_UPDATER_PROMPT = """You are the MEMORY UPDATER role in Lattice AI's multi-role agent harness.
|
|
83
|
+
After a completed task, extract reusable learnings.
|
|
84
|
+
|
|
85
|
+
Respond with exactly ONE JSON object:
|
|
86
|
+
{
|
|
87
|
+
"action": "memory",
|
|
88
|
+
"state": "DONE",
|
|
89
|
+
"learnings": ["one concise fact about this codebase or task"],
|
|
90
|
+
"artifacts": ["relative/path/to/created_or_modified_file"],
|
|
91
|
+
"save_to_knowledge": false
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
Rules:
|
|
95
|
+
- max 5 learnings, one sentence each
|
|
96
|
+
- save_to_knowledge = true only if learnings are genuinely useful across future sessions
|
|
97
|
+
- artifacts = files the Executor actually created or modified (from transcript)
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
AGENT_SYSTEM_PROMPT = EXECUTOR_PROMPT
|