mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-09-09 04:00:52 +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 ---------
454 lines
17 KiB
Python
454 lines
17 KiB
Python
"""
|
|
Tests for SemanticaKGTool — knowledge graph CrewAI tool.
|
|
|
|
Runs with the crewai stubs installed by conftest, so ``CREWAI_AVAILABLE`` is
|
|
``True`` and the real Pydantic/BaseTool subclassing path is exercised.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import json
|
|
import unittest
|
|
from unittest.mock import MagicMock
|
|
|
|
from integrations.crewai import SemanticaKGTool as ImportedSemanticaKGTool
|
|
from integrations.crewai.kg_tool import (
|
|
CREWAI_AVAILABLE,
|
|
CREWAI_IMPORT_ERROR,
|
|
SemanticaKGTool,
|
|
SemanticaKGToolInput,
|
|
)
|
|
from semantica.context import ContextGraph
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Fakes
|
|
# ---------------------------------------------------------------------------
|
|
def _fake_entity(name="Tesla", etype="ORG", conf=0.9):
|
|
e = MagicMock()
|
|
e.name = name
|
|
e.type = etype
|
|
e.confidence = conf
|
|
return e
|
|
|
|
|
|
def _fake_relation(src="Tesla", rel="FOUNDED_BY", tgt="Elon Musk", conf=0.85):
|
|
r = MagicMock()
|
|
r.source = src
|
|
r.type = rel
|
|
r.target = tgt
|
|
r.confidence = conf
|
|
return r
|
|
|
|
|
|
class _FakeNER:
|
|
def extract_entities(self, text):
|
|
return [_fake_entity("Tesla"), _fake_entity("Elon Musk", "PERSON")]
|
|
|
|
|
|
class _FakeRelExtractor:
|
|
def extract_relations(self, text, entities=None):
|
|
return [_fake_relation()]
|
|
|
|
|
|
class _DataclassNER:
|
|
"""Returns Semantica's real ``Entity`` dataclass shape (text/label, no name)."""
|
|
|
|
def extract_entities(self, text):
|
|
from semantica.semantic_extract.types import Entity
|
|
|
|
return [
|
|
Entity(text="Tesla", label="ORG", start_char=0, end_char=5),
|
|
Entity(text="Elon Musk", label="PERSON", start_char=17, end_char=26),
|
|
]
|
|
|
|
|
|
class _DataclassRelExtractor:
|
|
"""Returns Semantica's real ``Relation`` dataclass shape (subject/object)."""
|
|
|
|
def __init__(self):
|
|
self.received_entities = None
|
|
|
|
def extract_relations(self, text, entities=None):
|
|
from semantica.semantic_extract.types import Entity, Relation
|
|
|
|
self.received_entities = entities
|
|
return [
|
|
Relation(
|
|
subject=Entity(text="Tesla", label="ORG", start_char=0, end_char=5),
|
|
predicate="FOUNDED_BY",
|
|
object=Entity(
|
|
text="Elon Musk", label="PERSON", start_char=17, end_char=26
|
|
),
|
|
)
|
|
]
|
|
|
|
|
|
class TestSemanticaKGToolInit(unittest.TestCase):
|
|
|
|
def test_crewai_available_via_stub(self):
|
|
self.assertTrue(CREWAI_AVAILABLE)
|
|
self.assertIsNone(CREWAI_IMPORT_ERROR)
|
|
|
|
def test_is_base_tool_subclass(self):
|
|
from crewai.tools import BaseTool
|
|
|
|
self.assertTrue(issubclass(SemanticaKGTool, BaseTool))
|
|
|
|
def test_exposed_from_package_init(self):
|
|
self.assertIs(ImportedSemanticaKGTool, SemanticaKGTool)
|
|
|
|
def test_creates_with_explicit_graph(self):
|
|
graph = ContextGraph()
|
|
tool = SemanticaKGTool(graph=graph)
|
|
self.assertIs(tool.graph, graph)
|
|
|
|
def test_creates_fresh_graph_when_none(self):
|
|
tool = SemanticaKGTool(
|
|
ner_extractor=_FakeNER(), relation_extractor=_FakeRelExtractor()
|
|
)
|
|
self.assertIsNotNone(tool.graph)
|
|
self.assertIsInstance(tool.graph, ContextGraph)
|
|
|
|
def test_default_metadata(self):
|
|
tool = SemanticaKGTool(
|
|
ner_extractor=_FakeNER(), relation_extractor=_FakeRelExtractor()
|
|
)
|
|
self.assertEqual(tool.name, "semantica_knowledge_graph")
|
|
self.assertTrue(tool.description)
|
|
self.assertEqual(tool.args_schema, SemanticaKGToolInput)
|
|
|
|
def test_input_schema_validates(self):
|
|
inp = SemanticaKGToolInput(action="query_graph", query="privacy", hops=2)
|
|
self.assertEqual(inp.hops, 2)
|
|
with self.assertRaises(Exception):
|
|
SemanticaKGToolInput(action="bogus")
|
|
|
|
def test_custom_kwargs_forwarded(self):
|
|
tool = SemanticaKGTool(
|
|
ner_extractor=_FakeNER(),
|
|
relation_extractor=_FakeRelExtractor(),
|
|
result_as_answer=True,
|
|
)
|
|
self.assertTrue(tool.result_as_answer)
|
|
|
|
|
|
class TestSemanticaKGToolSerialization(unittest.TestCase):
|
|
"""CrewAI checkpoints serialise tools via ``model_dump(mode="json")`` — the
|
|
live graph/extractors must not break that (regression for
|
|
PydanticSerializationError on arbitrary state objects)."""
|
|
|
|
def setUp(self):
|
|
self.tool = SemanticaKGTool(
|
|
graph=ContextGraph(),
|
|
ner_extractor=_FakeNER(),
|
|
relation_extractor=_FakeRelExtractor(),
|
|
)
|
|
|
|
def test_model_dump_json_excludes_shared_state(self):
|
|
dumped = self.tool.model_dump(mode="json")
|
|
self.assertNotIn("graph", dumped)
|
|
self.assertNotIn("ner_extractor", dumped)
|
|
self.assertNotIn("relation_extractor", dumped)
|
|
self.assertEqual(dumped["name"], "semantica_knowledge_graph")
|
|
|
|
def test_model_validate_restores_defaults(self):
|
|
restored = SemanticaKGTool.model_validate(self.tool.model_dump(mode="json"))
|
|
self.assertIsInstance(restored.graph, ContextGraph)
|
|
self.assertIs(restored.args_schema, SemanticaKGToolInput)
|
|
self.assertEqual(restored.name, "semantica_knowledge_graph")
|
|
|
|
def test_model_validate_restored_tool_still_runs(self):
|
|
restored = SemanticaKGTool.model_validate(self.tool.model_dump(mode="json"))
|
|
restored.graph.add_node(node_id="privacy", node_type="policy")
|
|
result = json.loads(restored._run(action="query_graph", query="privacy"))
|
|
self.assertEqual(result["count"], 1)
|
|
|
|
def test_restore_flags_lost_live_state(self):
|
|
"""A tool restored from a checkpoint must signal that its live graph
|
|
was excluded and an empty one reconstructed (``reconstructed_state``)."""
|
|
dumped = self.tool.model_dump(mode="json")
|
|
self.assertTrue(dumped["had_live_state"])
|
|
self.assertNotIn("reconstructed_state", dumped)
|
|
restored = SemanticaKGTool.model_validate(dumped)
|
|
self.assertTrue(restored.reconstructed_state)
|
|
self.assertFalse(SemanticaKGTool().reconstructed_state)
|
|
|
|
|
|
class TestSemanticaKGToolActions(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.graph = ContextGraph()
|
|
self.tool = SemanticaKGTool(
|
|
graph=self.graph,
|
|
ner_extractor=_FakeNER(),
|
|
relation_extractor=_FakeRelExtractor(),
|
|
)
|
|
|
|
def test_extract_entities(self):
|
|
result = json.loads(
|
|
self.tool._run(
|
|
action="extract_entities", text="Tesla was founded by Elon Musk"
|
|
)
|
|
)
|
|
self.assertEqual(result["count"], 2)
|
|
self.assertEqual(result["entities"][0]["name"], "Tesla")
|
|
self.assertEqual(result["entities"][0]["type"], "ORG")
|
|
|
|
def test_extract_relations(self):
|
|
result = json.loads(
|
|
self.tool._run(
|
|
action="extract_relations", text="Tesla was founded by Elon Musk"
|
|
)
|
|
)
|
|
self.assertEqual(result["count"], 1)
|
|
self.assertEqual(result["relations"][0]["source"], "Tesla")
|
|
self.assertEqual(result["relations"][0]["target"], "Elon Musk")
|
|
|
|
def test_add_to_graph_populates_graph(self):
|
|
result = json.loads(
|
|
self.tool._run(action="add_to_graph", text="Tesla was founded by Elon Musk")
|
|
)
|
|
self.assertGreaterEqual(result["nodes_added"], 2)
|
|
self.assertGreaterEqual(result["edges_added"], 1)
|
|
nodes = self.graph.find_nodes()
|
|
node_ids = {n["id"] for n in nodes}
|
|
self.assertIn("Tesla", node_ids)
|
|
self.assertIn("Elon Musk", node_ids)
|
|
|
|
def test_add_to_graph_is_idempotent(self):
|
|
self.tool._run(action="add_to_graph", text="Tesla was founded by Elon Musk")
|
|
second = json.loads(
|
|
self.tool._run(action="add_to_graph", text="Tesla was founded by Elon Musk")
|
|
)
|
|
self.assertEqual(second["nodes_added"], 0)
|
|
self.assertEqual(second["edges_added"], 0)
|
|
|
|
def test_query_graph_finds_matching_node(self):
|
|
self.graph.add_node(
|
|
node_id="privacy", node_type="policy", content="privacy policy doc"
|
|
)
|
|
result = json.loads(self.tool._run(action="query_graph", query="privacy"))
|
|
self.assertEqual(result["count"], 1)
|
|
self.assertEqual(result["results"][0]["id"], "privacy")
|
|
|
|
def test_query_graph_no_match(self):
|
|
result = json.loads(
|
|
self.tool._run(action="query_graph", query="nothing-matches")
|
|
)
|
|
self.assertEqual(result["count"], 0)
|
|
self.assertEqual(result["results"], [])
|
|
|
|
def test_query_graph_searches_node_content(self):
|
|
"""query_graph must match node content, not just ids/types."""
|
|
self.graph.add_node(
|
|
node_id="n1",
|
|
node_type="policy",
|
|
content="all refunds must be processed within 30 days",
|
|
)
|
|
result = json.loads(self.tool._run(action="query_graph", query="refunds"))
|
|
self.assertEqual(result["count"], 1)
|
|
self.assertEqual(result["results"][0]["id"], "n1")
|
|
|
|
def test_query_graph_matches_type(self):
|
|
self.graph.add_node(node_id="n2", node_type="risk")
|
|
result = json.loads(self.tool._run(action="query_graph", query="risk"))
|
|
self.assertEqual(result["count"], 1)
|
|
self.assertEqual(result["results"][0]["id"], "n2")
|
|
|
|
def test_query_graph_result_shape_is_consistent(self):
|
|
"""Every result — content match or id/type match — must carry the same
|
|
keys (id, type, label, content, score) so agents get one schema."""
|
|
self.graph.add_node(
|
|
node_id="n1",
|
|
node_type="policy",
|
|
content="all refunds within 30 days",
|
|
)
|
|
by_content = json.loads(self.tool._run(action="query_graph", query="refunds"))[
|
|
"results"
|
|
][0]
|
|
expected_keys = {"id", "type", "label", "content", "score"}
|
|
self.assertEqual(set(by_content.keys()), expected_keys)
|
|
|
|
by_id = json.loads(self.tool._run(action="query_graph", query="n1"))["results"][
|
|
0
|
|
]
|
|
self.assertEqual(set(by_id.keys()), expected_keys)
|
|
self.assertEqual(by_id["content"], "all refunds within 30 days")
|
|
self.assertEqual(by_id["score"], 1.0)
|
|
|
|
def test_extract_entities_skips_nameless_entities(self):
|
|
class _NamelessNER:
|
|
def extract_entities(self, text):
|
|
e = MagicMock()
|
|
e.name = None
|
|
e.type = "MISC"
|
|
e.confidence = 0.5
|
|
return [e]
|
|
|
|
tool = SemanticaKGTool(
|
|
graph=self.graph,
|
|
ner_extractor=_NamelessNER(),
|
|
relation_extractor=_FakeRelExtractor(),
|
|
)
|
|
result = json.loads(tool._run(action="extract_entities", text="text"))
|
|
self.assertEqual(result["count"], 0)
|
|
self.assertEqual(result["entities"], [])
|
|
|
|
def test_find_related_multi_hop(self):
|
|
self.graph.add_node(node_id="A", node_type="concept")
|
|
self.graph.add_node(node_id="B", node_type="concept")
|
|
self.graph.add_node(node_id="C", node_type="concept")
|
|
self.graph.add_edge(source_id="A", target_id="B", edge_type="related_to")
|
|
self.graph.add_edge(source_id="B", target_id="C", edge_type="related_to")
|
|
result = json.loads(self.tool._run(action="find_related", entity="A", hops=2))
|
|
self.assertEqual(result["count"], 2)
|
|
self.assertIn("B", result["related"])
|
|
self.assertIn("C", result["related"])
|
|
|
|
def test_find_related_unknown_entity(self):
|
|
result = json.loads(
|
|
self.tool._run(action="find_related", entity="Ghost", hops=1)
|
|
)
|
|
self.assertEqual(result["count"], 0)
|
|
self.assertEqual(result["related"], [])
|
|
|
|
def test_find_related_honors_incoming_edges(self):
|
|
"""find_related must be undirected: a node whose only edge is
|
|
incoming (A -> B) is still related to A."""
|
|
self.graph.add_node(node_id="OpenAI", node_type="ORG")
|
|
self.graph.add_node(node_id="Google", node_type="ORG")
|
|
self.graph.add_edge(
|
|
source_id="OpenAI", target_id="Google", edge_type="related_to"
|
|
)
|
|
result = json.loads(self.tool._run(action="find_related", entity="Google"))
|
|
self.assertEqual(result["related"], ["OpenAI"])
|
|
result_out = json.loads(self.tool._run(action="find_related", entity="OpenAI"))
|
|
self.assertEqual(result_out["related"], ["Google"])
|
|
|
|
def test_unknown_action_returns_error(self):
|
|
result = json.loads(self.tool._run(action="do_something_else"))
|
|
self.assertIn("error", result)
|
|
self.assertIn("do_something_else", result["error"])
|
|
|
|
def test_extract_entities_empty_text_is_graceful(self):
|
|
result = json.loads(self.tool._run(action="extract_entities", text=""))
|
|
self.assertIn("entities", result)
|
|
|
|
def test_extract_entities_confidence_none_defaults_to_one(self):
|
|
"""A single entity with ``confidence=None`` must not nuke the whole
|
|
extract result — it normalises to 1.0 instead of raising float(None)."""
|
|
|
|
class _NoneConfNER:
|
|
def extract_entities(self, text):
|
|
e = MagicMock()
|
|
e.name = "X"
|
|
e.type = "MISC"
|
|
e.confidence = None
|
|
return [e]
|
|
|
|
tool = SemanticaKGTool(
|
|
graph=self.graph,
|
|
ner_extractor=_NoneConfNER(),
|
|
relation_extractor=_FakeRelExtractor(),
|
|
)
|
|
result = json.loads(tool._run(action="extract_entities", text="text"))
|
|
self.assertEqual(result["count"], 1)
|
|
self.assertEqual(result["entities"][0]["name"], "X")
|
|
self.assertEqual(result["entities"][0]["confidence"], 1.0)
|
|
self.assertNotIn("error", result)
|
|
|
|
def test_graph_lock_is_per_graph(self):
|
|
"""Independent graphs must not share a batch lock."""
|
|
g2 = ContextGraph()
|
|
lock_a = self.tool._graph_lock(self.graph)
|
|
lock_a_again = self.tool._graph_lock(self.graph)
|
|
lock_b = self.tool._graph_lock(g2)
|
|
self.assertIs(lock_a, lock_a_again)
|
|
self.assertIsNot(lock_a, lock_b)
|
|
|
|
|
|
class TestSemanticaKGToolDataclassShapes(unittest.TestCase):
|
|
"""Real Semantica ``Entity``/``Relation`` dataclasses (text/label,
|
|
subject/object) instead of MagicMock-shaped fakes."""
|
|
|
|
def setUp(self):
|
|
self.ner = _DataclassNER()
|
|
self.rel = _DataclassRelExtractor()
|
|
self.graph = ContextGraph()
|
|
self.tool = SemanticaKGTool(
|
|
graph=self.graph, ner_extractor=self.ner, relation_extractor=self.rel
|
|
)
|
|
|
|
def test_extract_entities_reads_text_label(self):
|
|
result = json.loads(
|
|
self.tool._run(action="extract_entities", text="Tesla founded by Elon Musk")
|
|
)
|
|
self.assertEqual(result["count"], 2)
|
|
self.assertEqual(result["entities"][0]["name"], "Tesla")
|
|
self.assertEqual(result["entities"][0]["type"], "ORG")
|
|
self.assertEqual(result["entities"][1]["name"], "Elon Musk")
|
|
self.assertEqual(result["entities"][1]["type"], "PERSON")
|
|
|
|
def test_extract_relations_reads_subject_object(self):
|
|
result = json.loads(
|
|
self.tool._run(
|
|
action="extract_relations", text="Tesla founded by Elon Musk"
|
|
)
|
|
)
|
|
self.assertEqual(result["count"], 1)
|
|
self.assertEqual(result["relations"][0]["source"], "Tesla")
|
|
self.assertEqual(result["relations"][0]["relation"], "FOUNDED_BY")
|
|
self.assertEqual(result["relations"][0]["target"], "Elon Musk")
|
|
|
|
def test_add_to_graph_passes_entity_objects_to_relation_extractor(self):
|
|
result = json.loads(
|
|
self.tool._run(action="add_to_graph", text="Tesla founded by Elon Musk")
|
|
)
|
|
self.assertEqual(result["nodes_added"], 2)
|
|
self.assertEqual(result["edges_added"], 1)
|
|
from semantica.semantic_extract.types import Entity
|
|
|
|
self.assertIsNotNone(self.rel.received_entities)
|
|
for e in self.rel.received_entities:
|
|
self.assertIsInstance(e, Entity)
|
|
node_ids = {n["id"] for n in self.graph.find_nodes()}
|
|
self.assertIn("Tesla", node_ids)
|
|
self.assertIn("Elon Musk", node_ids)
|
|
edge_keys = {
|
|
(e["source"], e["type"], e["target"]) for e in self.graph.find_edges()
|
|
}
|
|
self.assertIn(("Tesla", "FOUNDED_BY", "Elon Musk"), edge_keys)
|
|
|
|
|
|
class TestSemanticaKGToolCrewAIEntrypoints(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self.tool = SemanticaKGTool(
|
|
graph=ContextGraph(),
|
|
ner_extractor=_FakeNER(),
|
|
relation_extractor=_FakeRelExtractor(),
|
|
)
|
|
|
|
def test_run_delegates_to_run(self):
|
|
result = json.loads(
|
|
self.tool.run(action="extract_entities", text="Tesla led by Elon Musk")
|
|
)
|
|
self.assertEqual(result["count"], 2)
|
|
|
|
def test_arun_async(self):
|
|
async def _call():
|
|
return await self.tool.arun(action="query_graph", query="x")
|
|
|
|
result = json.loads(asyncio.run(_call()))
|
|
self.assertIn("results", result)
|
|
|
|
def test_run_returns_string(self):
|
|
out = self.tool.run(action="extract_entities", text="hello world")
|
|
self.assertIsInstance(out, str)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|