Add ability to use observer in the prompt section (#1406)

This commit is contained in:
Shuchang Zheng
2024-12-17 06:53:17 -08:00
committed by GitHub
parent be48737b5e
commit b70559392c
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;
};