3ba90f49cf
The user-named "right next runtime step": stop building knowledge, start using it automatically in onboarding — no sales training, no regulation picking. compliance/onboarding/ is an ORCHESTRATOR (not a new engine) wiring Company 2A -> RS-005 -> optimization -> completeness: advisor_start(input, cert_hypotheses, target_requirements, ...) -> AdvisorResult From (company + products + certifications + target) it returns inferred_assumptions, rejected_ assumptions, next_best_questions (<=5, ranked by information_gain + leverage + unknown_high_risk + evidence_missing, each self-explaining), capability_delta, top_measures, evidence_requests, unsupported_domains, completeness_summary. apply_answer() updates the profile (delta shrinks). Welt-1 throughout: certificates REDUCE questions but satisfy nothing automatically (verification_ required); relevance(evidence,target) keeps ISO 14001 out of the CRA result. Certificate->capability hypotheses + target requirements are INJECTED (curated knowledge, outsourced; not in code). All 7 acceptance criteria pass; mypy --strict clean. First app-caller wiring the engines into a product flow — still no endpoint/persistence, so 0 runtime effect -> no deploy yet (deploys when POST /onboarding/advisor-start + frontend are wired). check-loc 0.
63 lines
2.5 KiB
Python
63 lines
2.5 KiB
Python
"""Schemas for the Smart Onboarding Advisor — the onboarding RUNTIME step.
|
|
|
|
DTOs only. The Advisor ORCHESTRATES the existing engines (Company 2A, RS-005, optimization,
|
|
completeness) — no new reasoning engine, no new capability registry, no new meta-model. Welt-1
|
|
discipline: a certificate yields PROBABLE capabilities (verification required), never "erfüllt".
|
|
Python 3.9 compatible (no `|` unions).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class OnboardingInput(BaseModel):
|
|
company: str = ""
|
|
industry: Optional[str] = None
|
|
products: List[str] = Field(default_factory=list)
|
|
markets: List[str] = Field(default_factory=list)
|
|
certifications: List[str] = Field(default_factory=list)
|
|
known_evidence: List[str] = Field(default_factory=list)
|
|
target: List[str] = Field(default_factory=list) # informational; the delta uses injected requirements
|
|
|
|
|
|
class InferredAssumption(BaseModel):
|
|
certification: str
|
|
capabilities: List[str] = Field(default_factory=list) # RELEVANT-to-target caps the cert probably provides
|
|
verification_required: bool = True # Welt-1: never auto-satisfied
|
|
statement: str = ""
|
|
|
|
|
|
class RejectedAssumption(BaseModel):
|
|
certification: Optional[str] = None
|
|
statement: str = ""
|
|
reason: str = "" # e.g. "relevance(evidence, target) = 0"
|
|
|
|
|
|
class AdvisorQuestion(BaseModel):
|
|
capability_id: str
|
|
question_intent: str
|
|
why: str # every question explains itself
|
|
information_value: float = 0.0 # deterministic rank score
|
|
priority: str = "medium"
|
|
|
|
|
|
class AdvisorMeasure(BaseModel):
|
|
capability_id: str
|
|
leverage: int = 0
|
|
closes: List[str] = Field(default_factory=list)
|
|
|
|
|
|
class AdvisorResult(BaseModel):
|
|
inferred_assumptions: List[InferredAssumption] = Field(default_factory=list)
|
|
rejected_assumptions: List[RejectedAssumption] = Field(default_factory=list)
|
|
next_best_questions: List[AdvisorQuestion] = Field(default_factory=list) # max 5
|
|
capability_delta: List[str] = Field(default_factory=list)
|
|
top_measures: List[AdvisorMeasure] = Field(default_factory=list)
|
|
evidence_requests: List[str] = Field(default_factory=list)
|
|
unsupported_domains: List[str] = Field(default_factory=list)
|
|
completeness_summary: str = ""
|
|
headline: str = "" # "N erkannt, M wahrscheinlich abgedeckt, K zu klären"
|