MCPcopy Create free account
hub / github.com/openai/openai-agents-python / open

Method open

examples/tools/computer_use.py:156–159  ·  view source on GitHub ↗

Open resources without using a context manager.

(self)

Source from the content-addressed store, hash-verified

154 return None
155
156 async def open(self) -> "LocalPlaywrightComputer":
157 """Open resources without using a context manager."""
158 await self.__aenter__()
159 return self
160
161 async def close(self) -> None:
162 """Close resources without using a context manager."""

Callers 15

persistMethod · 0.80
restoreMethod · 0.80
readMethod · 0.80
writeMethod · 0.80
persist_workspaceMethod · 0.80
hydrate_workspaceMethod · 0.80
hydrate_workspaceMethod · 0.80
_append_lineMethod · 0.80
_postMethod · 0.80
extract_tar_archiveMethod · 0.80
extract_zip_archiveMethod · 0.80

Calls 1

__aenter__Method · 0.95