mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
* feat(crewai): add first-class CrewAI integration (#962) Add native CrewAI support so Crew agents can share a ContextGraph and AgentContext via BaseTool subclasses and a BaseKnowledgeSource, matching the existing agno integration pattern. - SemanticaKGTool: 5 KG actions (extract_entities, extract_relations, add_to_graph, query_graph, find_related) with sync run()/async arun() - SemanticaDecisionTool: 5 decision-intelligence actions (record_decision, find_precedents, trace_causal_chain, analyze_impact, check_policy) over AgentContext - SemanticaKnowledgeSource: serializes a ContextGraph into crew knowledge storage; bridges legacy load_content() and current validate_content()/aadd() contracts for crewai>=0.80.0 - All classes degrade gracefully when crewai is absent - New pip extra crewai=... included in the all bundle - 70 new tests (stub-based present-case + subprocess degradation path) - Docs: integrations/crewai.md, docs.json nav, README matrix updates * fix(crewai): harden tools against real Semantica dataclass shapes (#962) Bugs found during live testing with crewai 1.15.16: - SemanticaKGTool.add_to_graph crashed on real Entity/Relation dataclasses ('str' object has no attribute 'end_char'): string names were passed to extract_relations(entities=...), which requires Entity objects, and the tool read .name/.source/.target instead of Entity's .text/.label and Relation's .subject/.object. Add shape-agnostic field helpers. - SemanticaDecisionTool() created an AgentContext without a knowledge_graph, so _decision_backend was never set and record_decision raised 'Decision tracking is not enabled'. Wire in a ContextGraph. - record_decision hard-failed when the agent omitted optional fields; fall back to category='general', reasoning='agent decision', outcome='recorded'. Add tests covering real Entity/Relation dataclass shapes and the live auto-created AgentContext path (now 77 crewai tests, 212 total). * fix(crewai): make find_related traverse edges undirected (#962) ContextGraph.get_neighbors only follows outgoing edges, so a node whose only edge is incoming (A -> B) reported no related concepts. Rebuild a bidirectional adjacency from find_edges() in SemanticaKGTool._find_related so 'related' honors both directions. * fix(crewai): harden tools for checkpoint serialization and correct action semantics (#962) - Exclude live graph/context/extractor state from JSON serialization (model_dump(mode="json")) so CrewAI checkpointing no longer raises PydanticSerializationError; model_post_init self-heals defaults on restore - query_graph now searches node content via graph.query() plus id/type - trace_causal_chain returns an explicit error when causal tracing is unavailable instead of substituting similarity precedents; call trace_decision_causality(..., max_depth=...) with the correct kwarg name - find_precedents propagates max_precedents/limit to the backend instead of being silently capped at 10 - Serialize add_to_graph batches under a module lock to prevent concurrent double-counting; skip nameless entities instead of creating repr()-junk nodes - aadd() runs CPU-bound serialization in a thread executor - Mirror crewai args_schema serialize/restore in the conftest stub and add serialization regression tests (crewai: 92 tests) * fix(crewai): correct check_policy coercion, guard causal tracing, and harden concurrency (#962) - _eval_rule now coerces rule values type-aware: bool("false") was truthy, so 'enabled == false' reported a violation for enabled=false, and string datums like "0.90" were compared lexicographically instead of numerically - _trace_causal_chain no longer raises AttributeError (which escaped _run) when the decision context lacks knowledge_graph; returns honest error JSON - SemanticaKnowledgeSource storage failures log an actionable ERROR; without a configured crew embedder agents previously retrieved nothing silently - add_to_graph uses a per-graph re-entrant lock (WeakKeyDictionary) instead of a process-global one: independent graphs no longer serialize each other and re-entrant extractor callbacks cannot deadlock - entity/relation confidence=None normalizes to 1.0 instead of failing the whole extraction with float(None) - add subprocess integration test against real crewai covering Crew-level serialization round-trip and checkpoint restore (stub tests cannot see it) - docs: embedder requirement for SemanticaKnowledgeSource; resume contract note * fix(crewai): surface knowledge-source save failures at ERROR when storage is wired (#962) Re-verification against real crewai showed the embedder-missing failure raises ValueError even though storage IS wired, so the old except-ValueError branch mislabeled it as 'storage not wired' and logged DEBUG — hiding the failure. Distinguish by storage presence instead of exception type: storage is None -> DEBUG keep-in-memory (legitimate standalone use); storage wired but save() raises -> actionable ERROR. Add regression test mirroring real crewai's ValueError-on-missing-embedder behavior. * fix(crewai): expose run()/arun() entry points in degraded mode (#962) The public crewai contract is run()/arun(); without crewai installed they were missing (only the private _run existed), so the documented 'usable without crewai' path raised AttributeError at the entry point. Define them in degraded mode only, leaving crewai's BaseTool implementations untouched when present. Extend the degradation subprocess test to exercise run() and arun(). * fix(crewai): standardize query shape, field-name rules, and restore-state flag - _query_graph: id/type matches now return the same schema as content matches (id/type/label/content/score) instead of a bare list - _eval_rule: non-greedy field capture so hyphen/dot/space JSON keys (e.g. "risk-score >= 0.9") are addressable in policy rules - add had_live_state/reconstructed_state so checkpoint-restored tools and knowledge sources signal that their live graph/context was lost and an empty one reconstructed; knowledge source no longer hides the loss by eagerly rebuilding its graph inside __init__ (pydantic calls __init__ during model_validate) * fix(crewai): address Qodo review — confidence errors, string trim, holistic availability - record_decision: stop calling float() in _run, so malformed confidence values surface as JSON errors (via _record_decision's handling) instead of crashing the tool - _coerce_value: return the stripped string for non-numeric literals so whitespace-padded decision_data fields match policy rules - centralize crewai availability in _availability.py so the exported CREWAI_AVAILABLE flag is holistic across tools and knowledge source (previously each module probed crewai independently and the package flag came from decision_tool only) * ci: regenerate requirements-ci.txt for the crewai extra The crewai extra in pyproject.toml brings in crewai, crewai-tools and transitive deps (chromadb, lancedb, ...). Recompile with uv==0.12.1 per CONTRIBUTING.md so the CI staleness check passes. * ci: keep crewai out of the locked CI dependency set crewai (all versions) hard-requires chromadb~=1.1.0, which carries a pre-authentication code-injection advisory (CVE-2026-45829 / GHSA-f4j7-r4q5-qw2c) with NO fixed release — even the latest 1.5.9 is affected. Keeping crewai in the 'all' extra failed pip-audit and the safety check on requirements-ci.txt. - drop crewai from the 'all' aggregate (standalone semantica[crewai] extra is unchanged and still installs crewai) - stop listing crewai-tools in the extra: the integration only uses crewai core (BaseTool, BaseKnowledgeSource) and crewai-tools pulled extra transitive deps - regenerate requirements-ci.txt: OSV/pip-audit 0 vulnerabilities, safety 0 vulnerabilities, staleness check matches * docs(crewai): document crewai extra scope and chromadb CVE-2026-45829 - CHANGELOG: extra is crewai>=0.80.0 only (no crewai-tools) and is not part of the 'all' bundle, with the chromadb CVE-2026-45829 reason - integrations/crewai/README.md: add a security warning that installing the extra pulls chromadb~=1.1.0, which is affected by the unpatched pre-auth code-injection CVE-2026-45829 ---------
574 lines
22 KiB
Python
574 lines
22 KiB
Python
"""
|
|
SemanticaKGTool — a CrewAI ``BaseTool`` exposing Semantica's knowledge-graph
|
|
pipeline (``NERExtractor``, ``RelationExtractor``, ``ContextGraph``) to agents.
|
|
|
|
Lets agents build and query a shared ``ContextGraph`` as part of their
|
|
reasoning loop.
|
|
|
|
Install
|
|
-------
|
|
pip install semantica[crewai]
|
|
|
|
Example
|
|
-------
|
|
>>> from integrations.crewai import SemanticaKGTool
|
|
>>> from semantica.context import ContextGraph
|
|
>>> from crewai import Agent, Crew, Task
|
|
>>> graph = ContextGraph()
|
|
>>> tool = SemanticaKGTool(graph=graph)
|
|
>>> crew = Crew(
|
|
... agents=[Agent(role="...", goal="...", backstory="...", tools=[tool])],
|
|
... tasks=[...],
|
|
... )
|
|
|
|
Tools exposed
|
|
-------------
|
|
extract_entities — Extract named entities from text
|
|
extract_relations — Extract relationships between entities
|
|
add_to_graph — Extract entities/relations from text and add them to the graph
|
|
query_graph — Query the graph by keyword
|
|
find_related — Find concepts related to a given entity within ``hops``
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
import threading
|
|
import weakref
|
|
from typing import Any, Dict, List, Literal, Optional, Sequence, Type
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from semantica.utils.logging import get_logger
|
|
|
|
from ._availability import CREWAI_AVAILABLE, CREWAI_IMPORT_ERROR # noqa: F401
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Optional: CrewAI BaseTool base class
|
|
# ---------------------------------------------------------------------------
|
|
_BaseTool: Any = object
|
|
|
|
if CREWAI_AVAILABLE:
|
|
from crewai.tools import BaseTool as _BaseTool # type: ignore
|
|
|
|
# One re-entrant lock per graph so concurrent tool invocations sharing a graph
|
|
# cannot double-count duplicate adds (check-then-act is not atomic), while
|
|
# independent graphs are never serialised against each other. An RLock also
|
|
# means an extractor callback that re-enters add_to_graph on the same graph
|
|
# cannot deadlock.
|
|
_graph_locks_guard = threading.Lock()
|
|
_graph_locks: "weakref.WeakKeyDictionary[Any, threading.RLock]" = (
|
|
weakref.WeakKeyDictionary()
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Input schema
|
|
# ---------------------------------------------------------------------------
|
|
class SemanticaKGToolInput(BaseModel):
|
|
"""
|
|
Input schema for ``SemanticaKGTool``.
|
|
|
|
Exactly one action is dispatched per call; the remaining fields are only
|
|
used by the actions that need them.
|
|
"""
|
|
|
|
action: Literal[
|
|
"extract_entities",
|
|
"extract_relations",
|
|
"add_to_graph",
|
|
"query_graph",
|
|
"find_related",
|
|
] = Field(
|
|
...,
|
|
description=(
|
|
"Which graph operation to run. One of: 'extract_entities', "
|
|
"'extract_relations', 'add_to_graph', 'query_graph', 'find_related'."
|
|
),
|
|
)
|
|
text: Optional[str] = Field(
|
|
None,
|
|
description=(
|
|
"Input text. Used by 'extract_entities', 'extract_relations' and "
|
|
"'add_to_graph'."
|
|
),
|
|
)
|
|
query: Optional[str] = Field(
|
|
None, description="Search query. Used by 'query_graph'."
|
|
)
|
|
entity: Optional[str] = Field(
|
|
None,
|
|
description="Root entity name. Used by 'find_related'.",
|
|
)
|
|
hops: int = Field(
|
|
1,
|
|
ge=1,
|
|
le=10,
|
|
description="Maximum relationship hops. Used by 'find_related'.",
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# SemanticaKGTool
|
|
# ---------------------------------------------------------------------------
|
|
class SemanticaKGTool(_BaseTool): # type: ignore[misc]
|
|
"""
|
|
CrewAI tool that surfaces Semantica's KG pipeline as agent actions.
|
|
|
|
Parameters
|
|
----------
|
|
graph:
|
|
A ``semantica.context.ContextGraph`` to read/write. A fresh in-memory
|
|
graph is used when ``None``.
|
|
ner_extractor:
|
|
A ``semantica.semantic_extract.NERExtractor`` instance; auto-created
|
|
when ``None``.
|
|
relation_extractor:
|
|
A ``semantica.semantic_extract.RelationExtractor`` instance; auto-
|
|
created when ``None``.
|
|
"""
|
|
|
|
name: str = "semantica_knowledge_graph"
|
|
description: str = (
|
|
"Build and query a semantic knowledge graph. Actions: "
|
|
"'extract_entities' (extract named entities from 'text'), "
|
|
"'extract_relations' (extract relationships from 'text'), "
|
|
"'add_to_graph' (extract entities/relations from 'text' and add them "
|
|
"to the shared graph), 'query_graph' (keyword search using 'query'), "
|
|
"'find_related' (find concepts related to 'entity' within 'hops' "
|
|
"hops). Returns JSON."
|
|
)
|
|
args_schema: Type[BaseModel] = SemanticaKGToolInput
|
|
graph: Any = Field(default=None, exclude=True)
|
|
ner_extractor: Any = Field(default=None, exclude=True)
|
|
relation_extractor: Any = Field(default=None, exclude=True)
|
|
had_live_state: bool = False
|
|
reconstructed_state: bool = Field(default=False, exclude=True)
|
|
|
|
def __init__(
|
|
self,
|
|
graph: Any = None,
|
|
ner_extractor: Any = None,
|
|
relation_extractor: Any = None,
|
|
**kwargs: Any,
|
|
) -> None:
|
|
if CREWAI_AVAILABLE:
|
|
super().__init__(
|
|
graph=graph,
|
|
ner_extractor=ner_extractor,
|
|
relation_extractor=relation_extractor,
|
|
**kwargs,
|
|
)
|
|
else:
|
|
super().__init__()
|
|
self.graph = graph
|
|
self.ner_extractor = ner_extractor
|
|
self.relation_extractor = relation_extractor
|
|
# Degraded mode is a plain class — no model_post_init lifecycle.
|
|
self._ensure_defaults()
|
|
|
|
logger.info("SemanticaKGTool initialised (crewai=%s)", CREWAI_AVAILABLE)
|
|
|
|
def model_post_init(self, __context: Any) -> None:
|
|
"""Re-create default state after validation/deserialisation.
|
|
|
|
``graph``/extractors are excluded from JSON serialisation (CrewAI
|
|
checkpoints serialise every tool via ``model_dump(mode="json")``), so a
|
|
tool restored from a checkpoint has ``None`` state until this runs.
|
|
"""
|
|
self._ensure_defaults()
|
|
super().model_post_init(__context)
|
|
|
|
def _ensure_defaults(self) -> None:
|
|
"""Lazy-import and build defaults for any missing shared state."""
|
|
# Lazy imports keep the module importable without heavy deps
|
|
if self.graph is None:
|
|
from semantica.context import ContextGraph
|
|
|
|
self.graph = ContextGraph()
|
|
if self.had_live_state:
|
|
self.reconstructed_state = True
|
|
logger.warning(
|
|
"SemanticaKGTool: the live graph was lost during "
|
|
"serialization/checkpoint restore — an EMPTY graph was "
|
|
"reconstructed; re-attach the original graph before "
|
|
"continuing"
|
|
)
|
|
else:
|
|
logger.warning(
|
|
"SemanticaKGTool created a fresh in-memory ContextGraph — "
|
|
"agents sharing this tool's graph must be wired explicitly"
|
|
)
|
|
self.had_live_state = True
|
|
if self.ner_extractor is None:
|
|
from semantica.semantic_extract import NERExtractor
|
|
|
|
self.ner_extractor = NERExtractor()
|
|
if self.relation_extractor is None:
|
|
from semantica.semantic_extract import RelationExtractor
|
|
|
|
self.relation_extractor = RelationExtractor()
|
|
|
|
# ------------------------------------------------------------------
|
|
# CrewAI entry points
|
|
# ------------------------------------------------------------------
|
|
|
|
def _run(
|
|
self,
|
|
action: str,
|
|
text: Optional[str] = None,
|
|
query: Optional[str] = None,
|
|
entity: Optional[str] = None,
|
|
hops: int = 1,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""
|
|
Dispatch a graph action. Always returns a JSON string so the agent
|
|
receives a structured, parseable result.
|
|
"""
|
|
valid = {
|
|
"extract_entities",
|
|
"extract_relations",
|
|
"add_to_graph",
|
|
"query_graph",
|
|
"find_related",
|
|
}
|
|
if action not in valid:
|
|
return json.dumps(
|
|
{
|
|
"error": f"Unknown action '{action}'. Valid actions: "
|
|
+ ", ".join(sorted(valid))
|
|
}
|
|
)
|
|
|
|
if action == "extract_entities":
|
|
return self._extract_entities(text or "")
|
|
if action == "extract_relations":
|
|
return self._extract_relations(text or "")
|
|
if action == "add_to_graph":
|
|
return self._add_from_text(text or "")
|
|
if action == "query_graph":
|
|
return self._query_graph(query or "")
|
|
return self._find_related(entity or "", hops=hops)
|
|
|
|
async def _arun(
|
|
self,
|
|
action: str,
|
|
text: Optional[str] = None,
|
|
query: Optional[str] = None,
|
|
entity: Optional[str] = None,
|
|
hops: int = 1,
|
|
**kwargs: Any,
|
|
) -> str:
|
|
"""
|
|
Async variant of ``_run`` for CrewAI's async tool path.
|
|
"""
|
|
return self._run(
|
|
action=action, text=text, query=query, entity=entity, hops=hops, **kwargs
|
|
)
|
|
|
|
# ------------------------------------------------------------------
|
|
# Entity/relation field access (handles both Semantica dataclasses and
|
|
# third-party shapes like MagicMock/plain dicts in stubs)
|
|
# ------------------------------------------------------------------
|
|
|
|
@staticmethod
|
|
def _first_str(obj: Any, attrs: Sequence[str]) -> str:
|
|
"""Return the first attribute value that is a non-empty string."""
|
|
for attr in attrs:
|
|
value = getattr(obj, attr, None)
|
|
if isinstance(value, str) and value:
|
|
return value
|
|
if isinstance(obj, dict):
|
|
for key in attrs:
|
|
value = obj.get(key)
|
|
if isinstance(value, str) and value:
|
|
return value
|
|
return ""
|
|
|
|
@classmethod
|
|
def _entity_name(cls, e: Any) -> str:
|
|
"""Best-effort name for an entity-like object."""
|
|
return cls._first_str(e, ("name", "text", "label", "node_id", "id"))
|
|
|
|
@classmethod
|
|
def _entity_type(cls, e: Any) -> str:
|
|
"""Best-effort type/label for an entity-like object."""
|
|
return cls._first_str(e, ("type", "label")) or "Entity"
|
|
|
|
@classmethod
|
|
def _relation_source(cls, r: Any) -> str:
|
|
"""Best-effort source of a relation-like object."""
|
|
src = cls._first_str(r, ("source",))
|
|
if not src:
|
|
src = cls._entity_name(getattr(r, "subject", None))
|
|
return src
|
|
|
|
@classmethod
|
|
def _relation_target(cls, r: Any) -> str:
|
|
"""Best-effort target of a relation-like object."""
|
|
tgt = cls._first_str(r, ("target",))
|
|
if not tgt:
|
|
tgt = cls._entity_name(getattr(r, "object", None))
|
|
return tgt
|
|
|
|
@classmethod
|
|
def _relation_type(cls, r: Any) -> str:
|
|
"""Best-effort relation type of a relation-like object."""
|
|
rtype = cls._first_str(r, ("type", "relation", "predicate"))
|
|
return rtype or "related_to"
|
|
|
|
@classmethod
|
|
def _confidence(cls, e: Any) -> float:
|
|
"""Normalise an entity/relation confidence value to a float."""
|
|
try:
|
|
val = getattr(e, "confidence", None)
|
|
if val is None:
|
|
return 1.0
|
|
return round(float(val), 4)
|
|
except (TypeError, ValueError):
|
|
return 1.0
|
|
|
|
@classmethod
|
|
def _graph_lock(cls, graph: Any) -> threading.RLock:
|
|
"""Return the re-entrant lock guarding a specific graph."""
|
|
with _graph_locks_guard:
|
|
lock = _graph_locks.get(graph)
|
|
if lock is None:
|
|
lock = threading.RLock()
|
|
_graph_locks[graph] = lock
|
|
return lock
|
|
|
|
# ------------------------------------------------------------------
|
|
# Actions
|
|
# ------------------------------------------------------------------
|
|
|
|
def _extract_entities(self, text: str) -> str:
|
|
"""Extract named entities from ``text``."""
|
|
try:
|
|
raw = self.ner_extractor.extract_entities(text) or []
|
|
entities = [
|
|
{
|
|
"name": self._entity_name(e),
|
|
"type": self._entity_type(e),
|
|
"confidence": self._confidence(e),
|
|
}
|
|
for e in raw
|
|
if self._entity_name(e)
|
|
]
|
|
logger.debug("extract_entities → %d entities", len(entities))
|
|
return json.dumps({"entities": entities, "count": len(entities)})
|
|
except Exception as exc:
|
|
logger.warning("extract_entities failed: %s", exc)
|
|
return json.dumps({"entities": [], "count": 0, "error": str(exc)})
|
|
|
|
def _extract_relations(self, text: str) -> str:
|
|
"""Extract relationships between entities in ``text``."""
|
|
try:
|
|
raw = self.relation_extractor.extract_relations(text) or []
|
|
relations = [
|
|
{
|
|
"source": self._relation_source(r),
|
|
"relation": self._relation_type(r),
|
|
"target": self._relation_target(r),
|
|
"confidence": self._confidence(r),
|
|
}
|
|
for r in raw
|
|
]
|
|
logger.debug("extract_relations → %d relations", len(relations))
|
|
return json.dumps({"relations": relations, "count": len(relations)})
|
|
except Exception as exc:
|
|
logger.warning("extract_relations failed: %s", exc)
|
|
return json.dumps({"relations": [], "count": 0, "error": str(exc)})
|
|
|
|
def _add_from_text(self, text: str) -> str:
|
|
"""
|
|
Extract entities and relations from ``text`` and add them to the graph.
|
|
|
|
Duplicate nodes/edges (same id, or same source/type/target) are
|
|
skipped so repeated calls are idempotent. Returns JSON with the
|
|
number of nodes/edges added.
|
|
"""
|
|
nodes_added = 0
|
|
edges_added = 0
|
|
try:
|
|
with self._graph_lock(self.graph):
|
|
existing_nodes = {
|
|
n.get("id") or n.get("node_id")
|
|
for n in (
|
|
self.graph.find_nodes() or [] # type: ignore[attr-defined]
|
|
)
|
|
if n.get("id") or n.get("node_id")
|
|
}
|
|
existing_edges = {
|
|
(e.get("source"), e.get("type") or "related_to", e.get("target"))
|
|
for e in (
|
|
self.graph.find_edges() or [] # type: ignore[attr-defined]
|
|
)
|
|
if e.get("source") and e.get("target")
|
|
}
|
|
|
|
raw_entities = self.ner_extractor.extract_entities(text) or []
|
|
entities: List[Any] = []
|
|
seen: set = set()
|
|
for e in raw_entities:
|
|
name = self._entity_name(e)
|
|
ntype = self._entity_type(e)
|
|
if not name or name in seen:
|
|
continue
|
|
seen.add(name)
|
|
entities.append(e)
|
|
if name in existing_nodes:
|
|
continue
|
|
try:
|
|
if self.graph.add_node(node_id=name, node_type=ntype):
|
|
nodes_added += 1
|
|
existing_nodes.add(name)
|
|
except Exception as exc:
|
|
logger.debug("add_node(%r) failed: %s", name, exc)
|
|
|
|
raw_relations = (
|
|
self.relation_extractor.extract_relations(text, entities=entities)
|
|
or []
|
|
)
|
|
for r in raw_relations:
|
|
src = self._relation_source(r)
|
|
tgt = self._relation_target(r)
|
|
rtype = self._relation_type(r)
|
|
if not src or not tgt:
|
|
continue
|
|
key = (src, rtype, tgt)
|
|
if key in existing_edges:
|
|
continue
|
|
try:
|
|
if self.graph.add_edge(
|
|
source_id=src, target_id=tgt, edge_type=rtype
|
|
):
|
|
edges_added += 1
|
|
existing_edges.add(key)
|
|
except Exception as exc:
|
|
logger.debug("add_edge(%r) failed: %s", key, exc)
|
|
logger.debug("add_to_graph: +%d nodes, +%d edges", nodes_added, edges_added)
|
|
return json.dumps({"nodes_added": nodes_added, "edges_added": edges_added})
|
|
except Exception as exc:
|
|
logger.warning("add_to_graph failed: %s", exc)
|
|
return json.dumps({"nodes_added": 0, "edges_added": 0, "error": str(exc)})
|
|
|
|
def _query_graph(self, query: str) -> str:
|
|
"""Keyword-search graph nodes by id, type and content."""
|
|
try:
|
|
q = (query or "").strip().lower()
|
|
out: List[dict] = []
|
|
seen: set = set()
|
|
|
|
query_method = getattr(self.graph, "query", None)
|
|
if query_method is not None:
|
|
for match in query_method(query) or []:
|
|
node = match.get("node") or {}
|
|
nid = node.get("id", "") or node.get("node_id", "")
|
|
if not nid or nid in seen:
|
|
continue
|
|
seen.add(nid)
|
|
content = match.get("content") or node.get("content", "")
|
|
out.append(
|
|
{
|
|
"id": nid,
|
|
"type": node.get("type", "") or node.get("node_type", ""),
|
|
"label": nid,
|
|
"content": str(content)[:500],
|
|
"score": round(float(match.get("score") or 0.0), 4),
|
|
}
|
|
)
|
|
|
|
if q:
|
|
for n in self.graph.find_nodes() or []: # type: ignore[attr-defined]
|
|
if isinstance(n, dict):
|
|
nid = n.get("id", "") or n.get("node_id", "")
|
|
ntype = n.get("type", "") or n.get("node_type", "")
|
|
content = str(
|
|
n.get("content")
|
|
or (n.get("properties") or {}).get("content", "")
|
|
or ""
|
|
)
|
|
else:
|
|
nid = getattr(n, "id", getattr(n, "label", ""))
|
|
ntype = getattr(n, "node_type", "")
|
|
content = str(getattr(n, "content", "") or "")
|
|
if not nid or nid in seen:
|
|
continue
|
|
if q in str(nid).lower() or q in str(ntype).lower():
|
|
seen.add(nid)
|
|
out.append(
|
|
{
|
|
"id": nid,
|
|
"type": ntype,
|
|
"label": nid,
|
|
"content": content[:500],
|
|
"score": 1.0,
|
|
}
|
|
)
|
|
return json.dumps({"results": out, "count": len(out)})
|
|
except Exception as exc:
|
|
logger.warning("query_graph failed: %s", exc)
|
|
return json.dumps({"results": [], "count": 0, "error": str(exc)})
|
|
|
|
def _find_related(self, entity: str, hops: int = 1) -> str:
|
|
"""Find concepts related to ``entity`` within ``hops`` graph hops.
|
|
|
|
Traversal is undirected — an edge counts as related regardless of
|
|
direction, so both outgoing and incoming edges are honored.
|
|
"""
|
|
try:
|
|
adjacency: Dict[str, List[str]] = {}
|
|
for edge in self.graph.find_edges() or []: # type: ignore[attr-defined]
|
|
if isinstance(edge, dict):
|
|
src = edge.get("source")
|
|
tgt = edge.get("target")
|
|
else:
|
|
src = getattr(edge, "source", None)
|
|
tgt = getattr(edge, "target", None)
|
|
if not src or not tgt:
|
|
continue
|
|
adjacency.setdefault(src, []).append(tgt)
|
|
adjacency.setdefault(tgt, []).append(src)
|
|
|
|
related: List[str] = []
|
|
frontier = [entity]
|
|
visited = {entity}
|
|
for _ in range(max(1, hops)):
|
|
next_frontier: List[str] = []
|
|
for e in frontier:
|
|
for n in adjacency.get(e, []):
|
|
if n in visited:
|
|
continue
|
|
visited.add(n)
|
|
next_frontier.append(n)
|
|
related.append(n)
|
|
frontier = next_frontier
|
|
|
|
logger.debug("find_related('%s', hops=%d) → %d", entity, hops, len(related))
|
|
return json.dumps(
|
|
{"entity": entity, "related": related, "count": len(related)}
|
|
)
|
|
except Exception as exc:
|
|
logger.warning("find_related failed: %s", exc)
|
|
return json.dumps(
|
|
{"entity": entity, "related": [], "count": 0, "error": str(exc)}
|
|
)
|
|
|
|
# When crewai is absent there is no BaseTool to provide the public
|
|
# ``run``/``arun`` entry points, so expose them directly. With crewai
|
|
# installed these are left untouched so crewai's own implementations
|
|
# (usage tracking, ``result_as_answer``) win.
|
|
if not CREWAI_AVAILABLE:
|
|
|
|
def run(self, *args: Any, **kwargs: Any) -> str:
|
|
"""Run the tool synchronously (degraded mode, no crewai)."""
|
|
return self._run(*args, **kwargs)
|
|
|
|
async def arun(self, *args: Any, **kwargs: Any) -> str:
|
|
"""Run the tool asynchronously (degraded mode, no crewai)."""
|
|
return self._run(*args, **kwargs)
|