Task generation UI changes (#721)

Co-authored-by: Muhammed Salih Altun <muhammedsalihaltun@gmail.com>
This commit is contained in:
Kerem Yilmaz
2024-08-23 23:54:07 +03:00
committed by GitHub
parent 931726a9ca
commit 047e534194
2 changed files with 115 additions and 6 deletions

View File

@@ -244,3 +244,12 @@ export type WorkflowRunStatusApiResponse = {
recording_url: string | null;
outputs: Record<string, unknown> | null;
};
export type TaskGenerationApiResponse = {
suggested_title: string | null;
url: string | null;
navigation_goal: string | null;
data_extraction_goal: string | null;
navigation_payload: Record<string, unknown> | null;
extracted_information_schema: Record<string, unknown> | null;
};