-
Notifications
You must be signed in to change notification settings - Fork 121
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
V2 #324
Conversation
🦋 Changeset detectedLatest commit: 0459dba The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
* need to actually move to act to page now * move act -> page * fix e2e * fix tests * readme * changeset * package json and changeset * don't fail on combo evals
* move act evals to stagehand.page * add basic act and make act necessary in type
* move act evals to stagehand.page * add basic act and make act necessary in type * move extract and observe * example * changeset
* add docs, move scoring functions to scoring.ts, move experiment naming to utils.ts * add initStagehand.ts * break up index.evals.ts and utils into smaller files * export LogLineEval * typing * follow StagehandConfig pattern * choose api key based on model name * Use CI on v2 branch * branch * stagehand.page tests * dont run on BB * prettier * pls dont fail * headless --------- Co-authored-by: Anirudh Kamath <[email protected]>
* add extract evals for stagehand.page * fix typign * smh i didn't actually run extract
* change stagehand.observe to stagehand.page.observe in evals * changeset
ObserveResult, | ||
} from "./stagehand"; | ||
import type { z } from "zod"; | ||
export interface Page extends PlaywrightPage { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be named StagehandPage
imo to reduce potential confusion
* add docs, move scoring functions to scoring.ts, move experiment naming to utils.ts * add initStagehand.ts * break up index.evals.ts and utils into smaller files * export LogLineEval * typing * follow StagehandConfig pattern * choose api key based on model name * Use CI on v2 branch * branch * BrowserContext tests * file path --------- Co-authored-by: Anirudh Kamath <[email protected]>
why
We want act/extract/observe to be at the page level to give us the ability to modify the Playwright page as needed. act/extract/observe at the stagehand level will be deleted in v2, but it's deprecated as of now
what changed
stagehand.page
, forwardstagehand.act/extract/observe
intostagehand.page
, and deprecate act/extract/observe at the stagehand level.test plan