# ============================================================================ # agent verf - Core Package # Version: 0.1.0 # Last Updated: 2026-01-13 # # The verification engine - this is the brain of the system. # All interfaces (API, bots, web) use this package to verify content. # # Main exports: # - verify(): Main entry point for verification # - VerificationResult: The result model # - LLMClient: Abstracted LLM interface # ============================================================================ from src.models.receipt import VerificationReceipt from src.models.verdict import Verdict, VerdictStatus __version__ = "0.1.0" __all__ = [ "VerificationReceipt", "Verdict", "VerdictStatus", ]