Skip to content

dependabit / detector/src / DetectedDependency

Interface: DetectedDependency

Defined in: packages/detector/src/llm/client.ts:64

A single dependency detected by the LLM.

Remarks

confidence is provider-supplied and not independently validated — treat values below 0.7 as low-quality detections that should be reviewed manually. The detector filters entries with confidence < 0.5.

Properties

PropertyTypeDescriptionDefined in
confidencenumberDetection confidence in the range [0.0, 1.0].packages/detector/src/llm/client.ts:76
description?string-packages/detector/src/llm/client.ts:67
namestring-packages/detector/src/llm/client.ts:66
reasoning?stringLLM's explanation of why this was classified as a dependency.packages/detector/src/llm/client.ts:78
type| "reference-implementation" | "schema" | "documentation" | "research-paper" | "api-example" | "other"-packages/detector/src/llm/client.ts:68
urlstring-packages/detector/src/llm/client.ts:65

Released under the MIT License.