WorldMind Evidence POC

Entity-Based Licensing with Schema Validation • Powered by WorldMind

Read Our Paper Proxy experiment for AWS AI/ML Competition • Built with Kiro IDE & AWS serverless tools
WorldMind Evidence: 90% Accuracy
200 queries • 11 FP vs RAG's 45 FP • 4x more reliable
View Methodology

WorldMind Evidence vs Traditional RAG

How Entity Extraction Works

WorldMind Evidence extracts three key entities from your query to ensure precise matching with clinical evidence:

Endpoint

The clinical measurement being queried

Examples: NT50, seroresponse, adverse events

Population

The patient group being studied

Examples: Children 5-11 Years, Adults ≥12 Years

Timepoint

When the measurement was taken

Examples: 1 month post-dose 2, baseline

Why this matters: By matching these entities, WorldMind Evidence ensures answers are based on evidence that precisely matches your query's clinical context, reducing false positives by 4x compared to traditional RAG.

About Our Research

This proof-of-concept implements the Licensing Oracle framework from our paper "Stemming Hallucination in Language Models Using a Licensing Oracle" (arxiv.org/abs/2511.06073). The paper introduces a quality control mechanism that evaluates queries before generating answers, abstaining when confidence is too low. This POC extends the theoretical framework with entity-based validation—extracting clinical entities (endpoint, population, timepoint) and matching them against structured evidence holons. The result is a system that achieves 4x fewer false positives than traditional RAG while maintaining full source traceability. The entity extraction layer addresses the "subtle misbinding" problem where queries have high similarity to evidence but don't precisely match the clinical context.

Read the Full Paper

Team

Richard Ackermann

Founder of WorldMind and co-author of the Licensing Oracle framework, with 30+ years of experience in regulated domains including large-scale assessment systems.

LinkedIn Profile

Dr. Simeon Emanuilov

PhD, AWS Certified. Led technical implementation and AWS architecture for this proof-of-concept, focusing on serverless design and production readiness.

LinkedIn Profile

Try Demo Queries

Ask Your Question

Extracted Entities (Schema Validation)

Endpoint
{{ result.query_entities.endpoint || 'Not specified' }}
Population
{{ result.query_entities.population || 'Not specified' }}
Timepoint
{{ result.query_entities.timepoint || 'Not specified' }}

Licensing Decision

{{ result.licensed ? 'APPROVED' : 'NOT APPROVED' }}
Confidence
{{ result.licensing_decision.confidence.toUpperCase() }}
Schema Matches
{{ result.licensing_decision.schema_matched || 0 }}
Top Similarity
{{ ((result.licensing_decision.top_score || 0) * 100).toFixed(1) }}%
Holons Retrieved
{{ result.holons ? result.holons.length : 0 }}
Decision Rationale
{{ result.licensing_decision.reason }}

Generated Answer

{{ result.answer }}

Judge Validation

Validating...
{{ judgeValidation.consensus.toUpperCase() }} (UNANIMOUS)
{{ judge.model }}
{{ judge.verdict }}
{{ judge.explanation }}
Validation will appear here once complete