decomposer: generate deliverable files for Define the normalized ingestion contract and pluggable source-connector interface for SCM, CMS, and other content sources.; Implement a GitHub SCM connector that conforms to the normalized ingestion contract and supports scoped full and incremental ingestion of Markdown, plain-text, and source files with webhook and revision metadata.; Implement a SharePoint CMS connector that conforms to the normalized ingestion contract and supports scoped full and incremental ingestion of PDF, DOCX, and HTML files with webhook and revision metadata.; Implement ingestion orchestration and triggers; Normalize, govern, and publish ingested content to the shared knowledge store.; Add deployment/configuration, tests, and documentation for the ingestion agent.; Validate end-to-end ingestion and downstream content availability.
Some checks failed
ci / test (push) Failing after 7s
Some checks failed
ci / test (push) Failing after 7s
This commit is contained in:
8
kab_ingestion/validation.py
Normal file
8
kab_ingestion/validation.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from .models import Document
|
||||
|
||||
def validate_documents(documents,tenant_id):
|
||||
errors=[]
|
||||
for d in documents:
|
||||
if d.tenant_id!=tenant_id or d.acl.tenant_id!=tenant_id: errors.append(d.id+": tenant isolation failure")
|
||||
if not d.provenance.source_id or not d.content_hash: errors.append(d.id+": missing provenance/hash")
|
||||
return {"passed":not errors,"errors":errors,"count":len(documents)}
|
||||
Reference in New Issue
Block a user