mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-09 05:12:12 +02:00
Provenance triples are now included directly in explain messages from GraphRAG, DocumentRAG, and Agent services, eliminating the need for follow-up knowledge graph queries to retrieve explainability details. Each explain message in the response stream now carries: - explain_id: root URI for this provenance step (unchanged) - explain_graph: named graph where triples are stored (unchanged) - explain_triples: the actual provenance triples for this step (new) Changes across the stack: - Schema: added explain_triples field to GraphRagResponse, DocumentRagResponse, and AgentResponse - Services: all explain message call sites pass triples through (graph_rag, document_rag, agent react, agent orchestrator) - Translators: encode explain_triples via TripleTranslator for gateway wire format - Python SDK: ProvenanceEvent now includes parsed ExplainEntity and raw triples; expanded event_type detection - CLI: invoke_graph_rag, invoke_agent, invoke_document_rag use inline entity when available, fall back to graph query - Tech specs updated Additional explainability test |
||
|---|---|---|
| .. | ||
| __init__.py | ||
| agent.py | ||
| base.py | ||
| collection.py | ||
| config.py | ||
| diagnosis.py | ||
| document_loading.py | ||
| embeddings.py | ||
| embeddings_query.py | ||
| flow.py | ||
| knowledge.py | ||
| library.py | ||
| metadata.py | ||
| nlp_query.py | ||
| primitives.py | ||
| prompt.py | ||
| retrieval.py | ||
| rows_query.py | ||
| sparql_query.py | ||
| structured_query.py | ||
| text_completion.py | ||
| tool.py | ||
| triples.py | ||