Save assistant message (vibe-kanban) (#47)

* Task attempt bc7ef54d-3955-4902-8086-6676c7924f1b - Final changes

* Task attempt bc7ef54d-3955-4902-8086-6676c7924f1b - Final changes

* Task attempt bc7ef54d-3955-4902-8086-6676c7924f1b - Final changes

* Task attempt bc7ef54d-3955-4902-8086-6676c7924f1b - Final changes

* Task attempt bc7ef54d-3955-4902-8086-6676c7924f1b - Final changes

* Cargo fmt
This commit is contained in:
Louis Knight-Webb
2025-07-01 17:45:12 +01:00
committed by GitHub
parent e22988da51
commit 2aed3c06c8
10 changed files with 247 additions and 26 deletions

View File

@@ -94,11 +94,11 @@ export type CreateExecutionProcess = { task_attempt_id: string, process_type: Ex
export type UpdateExecutionProcess = { status: ExecutionProcessStatus | null, exit_code: bigint | null, completed_at: string | null, };
export type ExecutorSession = { id: string, task_attempt_id: string, execution_process_id: string, session_id: string | null, prompt: string | null, created_at: string, updated_at: string, };
export type ExecutorSession = { id: string, task_attempt_id: string, execution_process_id: string, session_id: string | null, prompt: string | null, summary: string | null, created_at: string, updated_at: string, };
export type CreateExecutorSession = { task_attempt_id: string, execution_process_id: string, prompt: string | null, };
export type UpdateExecutorSession = { session_id: string | null, prompt: string | null, };
export type UpdateExecutorSession = { session_id: string | null, prompt: string | null, summary: string | null, };
// Generated constants
export const EXECUTOR_TYPES: string[] = [