Skip to main content

A new Python project.

Project description

coreason-synthesis

Grounded Synthetic Data Generation (SDG) for the CoReason-AI platform.

License Build Status Code Style: ruff Documentation

Overview

coreason-synthesis is the "Amplifier" of the CoReason platform. It solves the "Cold Start Problem" of evaluation by manufacturing high-quality, domain-specific Benchmark Evaluation Corpora (BEC) from a small set of user-provided examples.

Unlike standard GenAI approaches that rely on hallucination, this library implements a Grounded Synthesis Pipeline:

  1. Learns the testing pattern from user-provided Seeds.
  2. Forages for real, semantically similar documents via MCP.
  3. Extracts verbatim text slices (The "Real Data").
  4. Composites synthetic questions around that data (The "Fake Scenario").
  5. Appraises and ranks the results by complexity and diversity.

The output is a rigorous, stratified test suite that validates the agent against actual enterprise data variances, not idealized synthetic text.

Features

  • Pattern-Forage-Fabricate-Rank Loop: A complete pipeline for generating high-quality test data.
  • Few-Shot Intent Inference: Infers testing intent from a few examples.
  • Verbatim Defense: Uses pixel-perfect copies of real data (preserving errors/formatting) as context.
  • Lineage Transparency: Distinguishes between "Verbatim/Real" and "Adversarial/Perturbed" data.
  • Quality Ranking: Appraises and ranks cases by complexity, ambiguity, diversity, and validity.
  • Safety & Privacy: Includes PII Sanitization filters.

For detailed requirements and specifications, see docs/product_requirements.md.

Installation

pip install coreason-synthesis

Usage

Here is a concise example of how to initialize and use the library (using built-in mocks for demonstration):

import uuid
from coreason_synthesis.pipeline import SynthesisPipeline
from coreason_synthesis.analyzer import PatternAnalyzerImpl
from coreason_synthesis.forager import ForagerImpl
from coreason_synthesis.extractor import ExtractorImpl
from coreason_synthesis.compositor import CompositorImpl
from coreason_synthesis.perturbator import PerturbatorImpl
from coreason_synthesis.appraiser import AppraiserImpl
from coreason_synthesis.models import SeedCase, Document

# Import mocks for demonstration (replace with real implementations in prod)
from coreason_synthesis.mocks.teacher import MockTeacher
from coreason_synthesis.mocks.embedding import DummyEmbeddingService
from coreason_synthesis.mocks.mcp import MockMCPClient

# 1. Initialize Dependencies
teacher = MockTeacher()
embedder = DummyEmbeddingService()
mcp_client = MockMCPClient(
    documents=[
        Document(
            content="Standard Dose: 50mg. Included: Adults.",
            source_urn="doc:1"
        )
    ]
)

# 2. Initialize Components
analyzer = PatternAnalyzerImpl(teacher, embedder)
forager = ForagerImpl(mcp_client, embedder)
extractor = ExtractorImpl()
compositor = CompositorImpl(teacher)
perturbator = PerturbatorImpl()
appraiser = AppraiserImpl(teacher, embedder)

# 3. Assemble Pipeline
pipeline = SynthesisPipeline(
    analyzer=analyzer,
    forager=forager,
    extractor=extractor,
    compositor=compositor,
    perturbator=perturbator,
    appraiser=appraiser
)

# 4. Define Seeds
seeds = [
    SeedCase(
        id=uuid.uuid4(),
        question="Calculate BSA for 180cm, 80kg patient",
        expected_output={"bsa": 2.0},
        context="Formula: sqrt((height*weight)/3600)"
    )
]

# 5. Run Synthesis
config = {
    "target_count": 5,
    "perturbation_rate": 0.5,
    "sort_by": "complexity_desc"
}
user_context = {"user_id": "demo-user"}

results = pipeline.run(seeds, config, user_context)

# 6. Use Results
for case in results:
    print(f"Generated Case ({case.provenance}): {case.synthetic_question}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

coreason_synthesis-0.1.0.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coreason_synthesis-0.1.0-py3-none-any.whl (39.2 kB view details)

Uploaded Python 3

File details

Details for the file coreason_synthesis-0.1.0.tar.gz.

File metadata

  • Download URL: coreason_synthesis-0.1.0.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for coreason_synthesis-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c5628c3d3e56ad9d7c40a33ffe395ef82db7695eeefb05946303cced676b92ca
MD5 040fbd689e3047ce32394a35cdd0935f
BLAKE2b-256 e7754fa3a3fdad10344c2b792a01e98c90211a3a0020132f110f7a140146dead

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreason_synthesis-0.1.0.tar.gz:

Publisher: publish.yml on CoReason-AI/coreason-synthesis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file coreason_synthesis-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for coreason_synthesis-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a82a49231f31416720afd9087f05d52b38e2deae31bc759dfa85f77602924c09
MD5 cea8314e0468769bac4f95c2f7112592
BLAKE2b-256 1b50739f82cc6694653fb87232ae0f0625c376fa39a9467821dc514ff823ca13

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreason_synthesis-0.1.0-py3-none-any.whl:

Publisher: publish.yml on CoReason-AI/coreason-synthesis

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page