From 1acc7304fce4cc48e0fffe37fe45643d4c7ad213 Mon Sep 17 00:00:00 2001 From: Kerem Yilmaz Date: Mon, 24 Jun 2024 04:44:48 -0700 Subject: [PATCH] stop generating extracted information schema (#500) Co-authored-by: Muhammed Salih Altun --- skyvern/forge/prompts/skyvern/generate-task.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/skyvern/forge/prompts/skyvern/generate-task.j2 b/skyvern/forge/prompts/skyvern/generate-task.j2 index e10192b5..caf19877 100644 --- a/skyvern/forge/prompts/skyvern/generate-task.j2 +++ b/skyvern/forge/prompts/skyvern/generate-task.j2 @@ -10,7 +10,6 @@ data_extraction_goal_reasoning: str. This is a required field. The reason why da is_data_extraction_goal_required: bool. This is a required field. Based on data_extraction_goal_reasoning, whether the data extraction goal is required to achieve the goal. data_extraction_goal: str. This is an optional field. The value should be a string that we can use as an input to a Large Language Modal. It needs to tell the agent the goal in terms of extracting data. It needs to be a single goal. navigation_payload: json. This is an optional field. The value should be JSON. Use this field if there is any information for the agent to be able to complete the task such as values that can help fill a form, parameters for queries and so on. -extracted_information_schema: json. This is an optional field. The exact schema of the data to be extracted. This field should be provided if there is a data_extraction_goal. This should be a JSON object that defines the schema of the data to be extracted. At least one of navigation goal or data extraction goal should be provided. The agent can't proceed without any goals.