suchintan's feedback + changelog (#4947)
Some checks are pending
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run

Co-authored-by: Ritik Sahni <ritiksahni0203@gmail.com>
This commit is contained in:
Naman 2026-03-03 00:11:31 +05:30 committed by GitHub
parent a4d9c9dd22
commit 59cd1e10bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
29 changed files with 885 additions and 148 deletions

View file

@ -332,7 +332,7 @@ async def main():
# Run workflow with saved profile, no login needed
result = await client.run_workflow(
workflow_id="wf_daily_metrics",
workflow_id="wpid_daily_metrics",
browser_profile_id="bp_490705123456789012",
wait_for_completion=True,
)
@ -351,7 +351,7 @@ async function main() {
// Run workflow with saved profile, no login needed
const result = await client.runWorkflow({
body: {
workflow_id: "wf_daily_metrics",
workflow_id: "wpid_daily_metrics",
browser_profile_id: "bp_490705123456789012",
},
waitForCompletion: true,
@ -368,7 +368,7 @@ curl -X POST "https://api.skyvern.com/v1/run/workflows" \
-H "x-api-key: $SKYVERN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workflow_id": "wf_daily_metrics",
"workflow_id": "wpid_daily_metrics",
"browser_profile_id": "bp_490705123456789012"
}'
```
@ -381,7 +381,7 @@ curl -X POST "https://api.skyvern.com/v1/run/workflows" \
"run_id": "wr_494469342201718946",
"status": "created",
"run_request": {
"workflow_id": "wf_daily_metrics",
"workflow_id": "wpid_daily_metrics",
"browser_profile_id": "bp_490705123456789012",
"proxy_location": "RESIDENTIAL"
}