v.2.0.1 - SynthID and C2PA Exposure via OpenAI Provenance Detection #35
focusjordan
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Overview
ORBIT v2.0.1 is a stabilization and ecosystem modernization release building directly on the v2.0.0 architecture.
This release introduces native integration with the OpenAI Content Provenance API (supporting both SynthID neural watermark detection and C2PA credentials), achieves zero-error codebase hygiene, standardizes enterprise security badging across all modular sub-packages, and synchronizes all 7 NPM packages to
v2.0.1.1. OpenAI Content Provenance & SynthID Detection
ORBIT now natively integrates with OpenAI's official Content Provenance endpoints (
POST /v1/content_provenance_checks) to detect AI-generated audio origins:src/engines/openai-provenance.js/@ohnrshyp/forensics):OPENAI_API_KEYis not provided or if network boundaries are offline, returning non-blocking diagnostic statuses (unconfigured,not_detected, orerror) without interrupting registration pipelines.src/ml/ai-detection.js):OPENAI_SYNTHID_DETECTED/OPENAI_C2PA_DETECTED) and locks the classification floor to1.0(Likely AI) upon positive cryptographic or neural signal detection.@ohnrshyp/forensics(checkOpenAIProvenance(buffer)).POST /api/v2/analyzeand the core verification pipeline.2. Full Ecosystem & NPM Registry Synchronization (v2.0.1)
@ohnrshyp/orbit-cli:@ohnrshyp/orbit-clidirectly on the public NPM registry. Developers and CI/CD pipelines can now install the CLI globally (npm install -g @ohnrshyp/orbit-cli) or execute one-off commands vianpx @ohnrshyp/orbit-clito run diagnostics (orbit doctor), batch audio ingestions, and verify provenance without needing to clone the core repository.All 7 modular NPM packages are synchronized and published to the public registry under the
@ohnrshypscope:@ohnrshyp/orbit-sdk(v2.0.1): Universal client SDK for interacting with ORBIT nodes.@ohnrshyp/orbit-cli(v2.0.1): Standalone terminal tooling and pipeline automation engine.@ohnrshyp/forensics(v2.0.1): Spectral forensics, anomaly scoring, and OpenAI SynthID/C2PA verification.@ohnrshyp/watermark(v2.0.1): AudioSeal & PERTH neural watermarking controllers.@ohnrshyp/ledger(v2.0.1): Zero-allocation CBOR serialization, Ed25519 cryptography, and pgvector operations.@ohnrshyp/dsp(v2.0.1): High-throughput CPU-only audio feature extraction.@ohnrshyp/metadata(v2.0.1): Lazy-loaded audio classification and tagger.3. Codebase Hardening, Zero-Lint Status & Test Suite
tests/engines/openai-provenance.test.jsvalidating mock detection responses, invalid audio edge cases, error resilience, and AI detection overrides (8/8 test suites passing).c8unit test coverage instrumentation across core engines, ML pipelines, utilities, and the client SDK.4. Standardized Security Badging & Package Documentation
5. Upgrading to v2.0.1
Updating NPM Dependencies
All reactions