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
| Property | Type | Description | Defined in |
|---|---|---|---|
confidence | number | Detection confidence in the range [0.0, 1.0]. | packages/detector/src/llm/client.ts:76 |
description? | string | - | packages/detector/src/llm/client.ts:67 |
name | string | - | packages/detector/src/llm/client.ts:66 |
reasoning? | string | LLM'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 |
url | string | - | packages/detector/src/llm/client.ts:65 |