group workflows interfaces - create_workflow, update_workflow, delete_workflow (#2405)

This commit is contained in:
Shuchang Zheng
2025-05-20 16:57:37 -07:00
committed by GitHub
parent ad2ea8d069
commit a210d26668
7 changed files with 277 additions and 249 deletions

View File

@@ -114,16 +114,15 @@ This quickstart guide will walk you through getting Skyvern up and running on yo
```
A local browser will pop up. Skyvern will start executing the task in the browser and close the it when the task is done. You will be able to review the task from http://localhost:8080/history
You can also send a task to Skyvern Cloud:
You can also run a task autonomously on Skyvern Cloud:
```python
from skyvern import Skyvern
skyvern = Skyvern()
skyvern = Skyvern(api_key="SKYVERN API KEY")
task = await skyvern.agent.run_task(prompt="Find the top post on hackernews today")
print(task)
```
Or send the task anywhere Skyvern is hosted:
Or any hosted Skyvern service:
```python
skyvern = Skyvern(base_url="http://localhost:8000", api_key="SKYVERN API KEY")
task = await skyvern.agent.run_task(prompt="Find the top post on hackernews today")