interface FixRequest {
    description?: string;
    finding_id?: string;
    source_files?: FileContent[];
}

Hierarchy

  • FixRequest$
    • FixRequest

Properties

description?: string

Additional context or custom instructions provided by the user to guide

the patch generation process.

finding_id?: string

The identifier of the specific security finding to be remediated. This ID

maps to a previously discovered vulnerability.

source_files?: FileContent[]

A list of source files providing context for the remediation. These files

are typically the ones containing the identified vulnerability.