-
Notifications
You must be signed in to change notification settings - Fork 1.2k
add cua replay example script #1162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,18 @@ | ||
| import { V3 } from "../../lib/v3"; | ||
| import { v3Logger } from "../../lib/v3/logger"; | ||
| import dotenv from "dotenv"; | ||
|
|
||
| dotenv.config(); | ||
|
|
||
| async function runDemo(runNumber: number) { | ||
| const startTime = Date.now(); | ||
|
|
||
| v3Logger({ | ||
| level: 1, | ||
| category: "demo", | ||
| message: `RUN ${runNumber}: ${runNumber === 1 ? "BUILDING CACHE" : "USING CACHE"}`, | ||
| }); | ||
|
|
||
| async function main() { | ||
| const v3 = new V3({ | ||
| env: "LOCAL", | ||
| verbose: 1, | ||
|
|
@@ -9,21 +21,77 @@ async function main() { | |
|
|
||
| await v3.init(); | ||
|
|
||
| const startPage = v3.context.pages()[0]; | ||
| await startPage.goto( | ||
| "https://browserbase.github.io/stagehand-eval-sites/sites/drag-drop/", | ||
| ); | ||
| const page = v3.context.pages()[0]; | ||
|
|
||
| await page.goto("https://v0-modern-login-flow.vercel.app/", { | ||
| waitUntil: "networkidle", | ||
| }); | ||
|
|
||
| const agent = v3.agent({ | ||
| cua: true, | ||
| model: "anthropic/claude-sonnet-4-20250514", | ||
| }); | ||
|
|
||
| const result = await agent.execute({ | ||
| instruction: "drag 'text' to zone A.", | ||
| instruction: `Sign in with the email address '[email protected]' and the password 'stagehand=goated'`, | ||
| maxSteps: 20, | ||
| }); | ||
|
|
||
| console.log(JSON.stringify(result, null, 2)); | ||
| const endTime = Date.now(); | ||
| const duration = (endTime - startTime) / 1000; | ||
|
|
||
| await v3.context.close(); | ||
|
|
||
| return { | ||
| duration, | ||
| success: result.success, | ||
| result, | ||
| }; | ||
| } | ||
|
|
||
| async function main() { | ||
| const metrics1 = await runDemo(1); | ||
|
|
||
| v3Logger({ | ||
| level: 1, | ||
| category: "demo", | ||
| message: "⏳ Waiting 2 seconds before cached run...", | ||
| }); | ||
| await new Promise((resolve) => setTimeout(resolve, 2000)); | ||
|
|
||
| v3Logger({ | ||
| level: 1, | ||
| category: "demo", | ||
| message: "Starting second run with cache...", | ||
| }); | ||
| const metrics2 = await runDemo(2); | ||
|
|
||
| const duration1 = `${metrics1.duration.toFixed(2)}s`; | ||
| const duration2 = `${metrics2.duration.toFixed(2)}s`; | ||
|
|
||
| v3Logger({ | ||
| level: 1, | ||
| category: "demo", | ||
| message: ` | ||
| ╔════════════════════════════════════════════════════════════╗ | ||
| ║ 📊 PERFORMANCE COMPARISON ║ | ||
| ╚════════════════════════════════════════════════════════════╝ | ||
|
|
||
| ┌─────────────────────┬──────────────────┬──────────────────┐ | ||
| │ Metric │ Run 1 (Cold) │ Run 2 (Cached) │ | ||
| ├─────────────────────┼──────────────────┼──────────────────┤ | ||
| │ Duration │ ${duration1.padEnd(16)} │ ${duration2.padEnd(16)} │ | ||
| └─────────────────────┴──────────────────┴──────────────────┘ | ||
|
|
||
| Performance Comparison: | ||
| • Speed: ${((1 - metrics2.duration / metrics1.duration) * 100).toFixed(1)}% faster with cache | ||
| • Time saved: ${(metrics1.duration - metrics2.duration).toFixed(2)} seconds | ||
|
|
||
| Insights: | ||
| • First run establishes the CUA action cache | ||
| • Second run reuses cached actions for instant execution | ||
| • Zero LLM tokens used on cached run`, | ||
| }); | ||
| } | ||
|
|
||
| main(); | ||
| main().catch(console.error); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.