CodeGen part1 - move ActionType to it's own py file (#2655)

This commit is contained in:
Shuchang Zheng
2025-06-09 20:21:43 -07:00
committed by GitHub
parent 7ef2b11f34
commit 7fa002c500
7 changed files with 47 additions and 43 deletions

View File

@@ -5,7 +5,8 @@ from skyvern.forge import app
from skyvern.forge.prompts import prompt_engine
from skyvern.forge.sdk.models import Step
from skyvern.forge.sdk.schemas.tasks import Task
from skyvern.webeye.actions.actions import Action, ActionStatus, ActionType, SelectOption
from skyvern.webeye.actions.action_types import ActionType
from skyvern.webeye.actions.actions import Action, ActionStatus, SelectOption
from skyvern.webeye.scraper.scraper import ScrapedPage
LOG = structlog.get_logger()