[PR #1052] [CLOSED] feat(cua): add hyperbrowser provider for cua agent #1204

Closed
opened 2026-02-15 19:17:39 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1052
Author: @NikhilShahi
Created: 3/27/2025
Status: Closed

Base: mainHead: add-hyperbrowser


📝 Commits (3)

📊 Changes

11 files changed (+1291 additions, -151 deletions)

View changed files

📝 libs/langgraph-cua/README.md (+118 -5)
📝 libs/langgraph-cua/package.json (+2 -0)
📝 libs/langgraph-cua/src/index.ts (+28 -0)
📝 libs/langgraph-cua/src/nodes/call-model.ts (+27 -8)
📝 libs/langgraph-cua/src/nodes/create-vm-instance.ts (+76 -6)
libs/langgraph-cua/src/nodes/handle-action.ts (+365 -0)
📝 libs/langgraph-cua/src/nodes/take-computer-action.ts (+124 -112)
📝 libs/langgraph-cua/src/tests/cua.int.test.ts (+81 -3)
📝 libs/langgraph-cua/src/types.ts (+32 -0)
📝 libs/langgraph-cua/src/utils.ts (+64 -3)
📝 yarn.lock (+374 -14)

📄 Description

This PR adds Hyperbrowser as an optional provider for using with LangGraph and CUA. It uses Hyperbrowser browser session and playwright to allow CUA to interact with the browser page. Scrapybara is kept as the default provider.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs/pull/1052 **Author:** [@NikhilShahi](https://github.com/NikhilShahi) **Created:** 3/27/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `add-hyperbrowser` --- ### 📝 Commits (3) - [`a0a48ee`](https://github.com/langchain-ai/langgraphjs/commit/a0a48eea6972ef04ed31bf1d059630c7a52e3e37) add hyperbrowser provider for cua agent - [`94e6668`](https://github.com/langchain-ai/langgraphjs/commit/94e66688fe3050b4a7b8ab0f2bf176e3fa07ed26) fixes - [`0a3e5ff`](https://github.com/langchain-ai/langgraphjs/commit/0a3e5ffb219dd8a3346904f6a26925117159561d) fixes ### 📊 Changes **11 files changed** (+1291 additions, -151 deletions) <details> <summary>View changed files</summary> 📝 `libs/langgraph-cua/README.md` (+118 -5) 📝 `libs/langgraph-cua/package.json` (+2 -0) 📝 `libs/langgraph-cua/src/index.ts` (+28 -0) 📝 `libs/langgraph-cua/src/nodes/call-model.ts` (+27 -8) 📝 `libs/langgraph-cua/src/nodes/create-vm-instance.ts` (+76 -6) ➕ `libs/langgraph-cua/src/nodes/handle-action.ts` (+365 -0) 📝 `libs/langgraph-cua/src/nodes/take-computer-action.ts` (+124 -112) 📝 `libs/langgraph-cua/src/tests/cua.int.test.ts` (+81 -3) 📝 `libs/langgraph-cua/src/types.ts` (+32 -0) 📝 `libs/langgraph-cua/src/utils.ts` (+64 -3) 📝 `yarn.lock` (+374 -14) </details> ### 📄 Description This PR adds Hyperbrowser as an optional provider for using with LangGraph and CUA. It uses [Hyperbrowser](https://docs.hyperbrowser.ai/) browser session and playwright to allow CUA to interact with the browser page. Scrapybara is kept as the default provider. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 19:17:39 -05:00
yindo closed this issue 2026-02-15 19:17:39 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#1204