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

Method create

tests/extensions/sandbox/test_runloop.py:726–731  ·  view source on GitHub ↗
(self, **params: object)

Source from the content-addressed store, hash-verified

724 return devbox
725
726 async def create(self, **params: object) -> _FakeDevbox:
727 self.create_calls.append(dict(params))
728 return self._new_devbox(
729 environment_variables=cast(dict[str, str] | None, params.get("environment_variables")),
730 launch_parameters=cast(dict[str, object] | None, params.get("launch_parameters")),
731 )
732
733 async def create_from_snapshot(self, snapshot_id: str, **params: object) -> _FakeDevbox:
734 self.create_from_snapshot_calls.append((snapshot_id, dict(params)))

Callers

nothing calls this directly

Calls 3

_new_devboxMethod · 0.95
appendMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected