Task attempt 16132ff6-fd9b-4551-86b9-c6b161df4f57 - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-25 00:07:38 +01:00
parent 81434f52c1
commit bc82e4c189
5 changed files with 130 additions and 39 deletions

View File

@@ -62,6 +62,8 @@ export type TaskAttemptActivity = { id: string, execution_process_id: string, st
export type CreateTaskAttemptActivity = { execution_process_id: string, status: TaskAttemptStatus | null, note: string | null, };
export type TaskAttemptActivityWithPrompt = { id: string, execution_process_id: string, status: TaskAttemptStatus, note: string | null, created_at: string, prompt: string | null, };
export type DirectoryEntry = { name: string, path: string, is_directory: boolean, is_git_repo: boolean, };
export type DiffChunkType = "Equal" | "Insert" | "Delete";