Add observer in UI (#1409)

This commit is contained in:
Shuchang Zheng
2024-12-17 10:17:00 -08:00
committed by GitHub
parent 56ff9d11d6
commit 69687f121a
4 changed files with 141 additions and 5 deletions

View File

@@ -233,3 +233,15 @@ export type ActionsApiResponse = {
intention: string | null;
response: string | null;
};
export type ObserverCruise = {
observer_cruise_id: string;
status: Status;
workflow_run_id: string | null;
workflow_id: string | null;
workflow_permanent_id: string | null;
prompt: string | null;
url: string | null;
created_at: string;
modified_at: string;
};