interface FindRequest {
    description?: string;
    finding_id?: string;
    mode?: Mode;
    source_files?: FileContent[];
}

Hierarchy

  • FindRequest$
    • FindRequest

Properties

description?: string

Additional context or custom instructions provided by the user to guide

the vulnerability analysis.

finding_id?: string

The identifier of a specific finding to verify. This is primarily used in

VERIFY mode to focus the agent's execution-based validation on a single vulnerability.

mode?: Mode

The mode of the find session.

source_files?: FileContent[]

A list of source files to provide as context for the scan.