diff --git a/Cargo.lock b/Cargo.lock index 50e2a95b..e3fcab65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3000,7 +3000,7 @@ dependencies = [ [[package]] name = "elide-export" version = "0.1.0" -source = "git+https://github.com/nvisycom/elide-runtime?branch=main#9f800a84600d45a6c71b52645a3ac03db970ec55" +source = "git+https://github.com/nvisycom/elide-runtime?branch=main#1a27c2c779bd03ab80abe53da40ed8a29542d9b1" dependencies = [ "csv", "elide", @@ -3023,7 +3023,7 @@ dependencies = [ [[package]] name = "elide-governance" version = "0.1.0" -source = "git+https://github.com/nvisycom/elide-runtime?branch=main#9f800a84600d45a6c71b52645a3ac03db970ec55" +source = "git+https://github.com/nvisycom/elide-runtime?branch=main#1a27c2c779bd03ab80abe53da40ed8a29542d9b1" dependencies = [ "elide-core", "elide-operator", @@ -3161,7 +3161,7 @@ dependencies = [ [[package]] name = "elide-pipeline" version = "0.1.0" -source = "git+https://github.com/nvisycom/elide-runtime?branch=main#9f800a84600d45a6c71b52645a3ac03db970ec55" +source = "git+https://github.com/nvisycom/elide-runtime?branch=main#1a27c2c779bd03ab80abe53da40ed8a29542d9b1" dependencies = [ "bytes", "elide", @@ -3182,7 +3182,7 @@ dependencies = [ [[package]] name = "elide-provider" version = "0.1.0" -source = "git+https://github.com/nvisycom/elide-runtime?branch=main#9f800a84600d45a6c71b52645a3ac03db970ec55" +source = "git+https://github.com/nvisycom/elide-runtime?branch=main#1a27c2c779bd03ab80abe53da40ed8a29542d9b1" dependencies = [ "elide", "elide-bentoml", @@ -3206,7 +3206,7 @@ dependencies = [ [[package]] name = "elide-review" version = "0.1.0" -source = "git+https://github.com/nvisycom/elide-runtime?branch=main#9f800a84600d45a6c71b52645a3ac03db970ec55" +source = "git+https://github.com/nvisycom/elide-runtime?branch=main#1a27c2c779bd03ab80abe53da40ed8a29542d9b1" dependencies = [ "elide", "elide-governance", @@ -3230,7 +3230,7 @@ dependencies = [ [[package]] name = "elide-template" version = "0.1.0" -source = "git+https://github.com/nvisycom/elide-runtime?branch=main#9f800a84600d45a6c71b52645a3ac03db970ec55" +source = "git+https://github.com/nvisycom/elide-runtime?branch=main#1a27c2c779bd03ab80abe53da40ed8a29542d9b1" dependencies = [ "elide-core", "elide-governance", diff --git a/crates/nvisy-server/src/handler/detection_audits.rs b/crates/nvisy-server/src/handler/detection_audits.rs index 7f69c001..7a4b4b18 100644 --- a/crates/nvisy-server/src/handler/detection_audits.rs +++ b/crates/nvisy-server/src/handler/detection_audits.rs @@ -142,9 +142,10 @@ fn get_detection_intermediates_docs(op: TransformOperation) -> TransformOperatio op.summary("Get detection intermediates") .description( "Returns the detection's enrichment intermediates — an image's OCR layout, an audio \ - clip's transcript, or tokenized text — as `{ body, parts }`, so a client can search \ - the extracted content and add entities the analysis missed. A detection whose \ - analysis ran no enricher has no intermediates (404).", + clip's transcript, or tokenized text — as an object with a `parts` list, each part \ + carrying its path `id`, `modality`, and the extracted `artifact`, so a client can \ + search the content and add entities the analysis missed. A detection whose analysis \ + ran no enricher has no intermediates (404).", ) .response::<200, Json>() .response::<401, Json>()