From 201065b2801c8328bb4f390975ffb02c819eab9b Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Fri, 6 Dec 2024 18:25:40 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20synced=20local=20'skyvern/'=20wi?= =?UTF-8?q?th=20remote=20'skyvern/'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > [!IMPORTANT] > Enhance `FormsPage.tsx` with prompt editing and layout fixes, and refine tab management in `WorkflowBlockCollapsibleContent.tsx`. > > - **FormsPage.tsx**: > - Added `navigationGoal` to `contactFormTaskSchema` and default values. > - Introduced `showAdvancedContent` state to toggle advanced settings visibility. > - Removed `ScrollArea` and `ScrollAreaViewport` for layout simplification. > - Added prompt editing functionality with a toggle button for advanced settings. > - **WorkflowBlockCollapsibleContent.tsx**: > - Changed `activeTab` state to use string literals for better clarity. > - Added `statusIsFinalized` check to conditionally render tabs. > - Improved tab navigation logic for task status handling. > > This description was created by [Ellipsis](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral) for 8356b511e3332a06fdadbf8d4abba0abb0eff6be. It will automatically update as commits are pushed. --- skyvern/forge/sdk/db/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/skyvern/forge/sdk/db/models.py b/skyvern/forge/sdk/db/models.py index 2edc5702e..c3523d524 100644 --- a/skyvern/forge/sdk/db/models.py +++ b/skyvern/forge/sdk/db/models.py @@ -169,7 +169,6 @@ class ArtifactModel(Base): workflow_run_id = Column(String, ForeignKey("workflow_runs.workflow_run_id")) workflow_run_block_id = Column(String, ForeignKey("workflow_run_blocks.workflow_run_block_id")) observer_cruise_id = Column(String, ForeignKey("observer_cruises.observer_cruise_id")) - observer_thought_id = Column(String, ForeignKey("observer_thoughts.observer_thought_id")) task_id = Column(String, ForeignKey("tasks.task_id")) step_id = Column(String, ForeignKey("steps.step_id"), index=True) artifact_type = Column(String) @@ -525,7 +524,5 @@ class ObserverThought(Base): workflow_run_id = Column(String, ForeignKey("workflow_runs.workflow_run_id"), nullable=True) workflow_run_block_id = Column(String, ForeignKey("workflow_run_blocks.workflow_run_block_id"), nullable=True) workflow_id = Column(String, ForeignKey("workflows.workflow_id"), nullable=True) - user_input = Column(UnicodeText, nullable=True) - observation = Column(String, nullable=True) thought = Column(String, nullable=True) answer = Column(String, nullable=True)