mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
* add a single-threaded server serving browsergym * update poetry * update browser page content * add import to make sure browsergym environments are registered properly * remove flask server, use multiprocess impl and Pipe * fix * refactor BrowserEnv * update browser action and obs to include more complete info * fix screenshot * update poetry lock * add playwright install to workflow * update * add better html to text conversion * update for better text conversion to maintain parity with the current handling of browseurlaction * update * update poetry * update multiprocessing mp * fix multiprocessing * update * update github workflow --------- Co-authored-by: Xingyao Wang <xingyao6@illinois.edu>
21 lines
312 B
Markdown
21 lines
312 B
Markdown
---
|
|
sidebar_label: browser_env
|
|
title: opendevin.browser.browser_env
|
|
---
|
|
|
|
## BrowserEnv Objects
|
|
|
|
```python
|
|
class BrowserEnv()
|
|
```
|
|
|
|
#### image\_to\_png\_base64\_url
|
|
|
|
```python
|
|
@staticmethod
|
|
def image_to_png_base64_url(image: np.ndarray | Image.Image)
|
|
```
|
|
|
|
Convert a numpy array to a base64 encoded png image url.
|
|
|