Skip to content

Commit

Permalink
🔄 synced local 'skyvern/' with remote 'skyvern/'
Browse files Browse the repository at this point in the history
<!-- ELLIPSIS_HIDDEN -->

> [!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.
>
> <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=Skyvern-AI%2Fskyvern-cloud&utm_source=github&utm_medium=referral)<sup> for 8356b511e3332a06fdadbf8d4abba0abb0eff6be. It will automatically update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
wintonzheng committed Dec 6, 2024
1 parent 3467382 commit 201065b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions skyvern/forge/sdk/db/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)

0 comments on commit 201065b

Please sign in to comment.