import { Button } from "@/components/ui/button"; import { PlusIcon, ReloadIcon } from "@radix-ui/react-icons"; import { useCreateWorkflowMutation } from "./hooks/useCreateWorkflowMutation"; import { ImportWorkflowButton } from "./ImportWorkflowButton"; import { WorkflowCreateYAMLRequest } from "./types/workflowYamlTypes"; const emptyWorkflowRequest: WorkflowCreateYAMLRequest = { title: "New Workflow", description: "", workflow_definition: { blocks: [], parameters: [], }, }; function WorkflowsPageBanner() { const createNewWorkflowMutation = useCreateWorkflowMutation(); return (

Workflows

Workflows let you create complex web-agents that can:
1
Save browser sessions and re-use them in subsequent runs
2
Connect multiple agents together to carry out complex objectives
3
Allow Skyvern agents to execute non-browser tasks such as sending emails, or parsing PDFs
); } export { WorkflowsPageBanner };