Interface EditedOutput

Human's edited version of draft output.

interface EditedOutput {
    draftId: string;
    editedContent: string;
    hasSignificantChanges: boolean;
    changeSummary?: string;
    editedBy: string;
    editedAt: Date;
    feedback?: string;
}

Properties

draftId: string

Original draft ID

editedContent: string

Edited content

hasSignificantChanges: boolean

Whether significant changes were made

changeSummary?: string

Summary of changes

editedBy: string

Who edited

editedAt: Date

Timestamp

feedback?: string

Feedback for agent improvement