Interface AssistantMessageEditorSessionContext

Information about the current open file in the editor session.

interface AssistantMessageEditorSessionContext {
    documentId?: string;
    editorSessionId: string;
    openAutoTestProgramIds?: string[];
}

Properties

documentId?: string

The id of the open document. May be omitted if there is no open file.

editorSessionId: string

The ID of the current editor session.

openAutoTestProgramIds?: string[]

SAFE program ids the editor currently has open. The order is preserved by the frontend and used downstream as a deterministic tiebreaker when more than one run covers the same step. Optional; absent means the editor has no open AutoTest results.