-
Notifications
You must be signed in to change notification settings - Fork 263
Sample/form agent #54
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
Closed
Closed
Conversation
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
The Cloud logging client is not needed and breaks the test due to module level initialization. It's best to just remove it.
Set up continuous integration.
Add Vertex AI support to the computer use example
Bumps the npm_and_yarn group with 1 update in the /computers/puppeteer directory: [tar-fs](https://github.com/mafintosh/tar-fs). Updates `tar-fs` from 3.0.8 to 3.0.9 - [Commits](mafintosh/tar-fs@v3.0.8...v3.0.9) --- updated-dependencies: - dependency-name: tar-fs dependency-version: 3.0.9 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <[email protected]>
Implement the v2 actions.
Make the model configurable via flag.
Prepare code for 07/16 iteration.
Set `computer-use-exp-07-16` as the default model. Otherwise, you get a `"Thinking is not enabled for models/computer-use-exp"` error with the default model
Update default model
init hud computer
… Needed for copy and paste.
Add FunctionResponsePart Support, and fix issues when using Vertex API
…ample command and making the parallelism between AIS and Vertex clearer.
…ample command and making the parallelism between AIS and Vertex clearer. (google-gemini#40)
Fix hud scroll
* Add playwright launch flags. * Remove disable-blink-features flag.
…t this function calls that assume the default will have magnitude undefined.
* Add --initial-url option to browserbase environment * README update * update tests
* Address feedback. * Update comment.
Rename normalize to denormalize.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces the FormAgent, a new specialised agent that demonstrates the extensibility of the core BrowserAgent framework. The FormAgent is designed specifically for filling out web forms by reading structured data from local JSON files, bridging the gap between local data and web interfaces.
This change evolves the project from a single-purpose browser automation tool into a more robust agent framework, where specialised agents can be created by equipping them with custom tools tailored to specific tasks.