Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/runloop_api_client/resources/scenarios/scenarios.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ def start_run_and_await_env_ready(
*,
scenario_id: str,
benchmark_run_id: Optional[str] | NotGiven = NOT_GIVEN,
metadata: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
run_name: Optional[str] | NotGiven = NOT_GIVEN,
polling_config: PollingConfig | None = None,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
Expand Down Expand Up @@ -455,6 +456,7 @@ def start_run_and_await_env_ready(
run = self.start_run(
scenario_id=scenario_id,
benchmark_run_id=benchmark_run_id,
metadata=metadata,
run_name=run_name,
extra_headers=extra_headers,
extra_query=extra_query,
Expand Down Expand Up @@ -842,6 +844,7 @@ async def start_run_and_await_env_ready(
self,
scenario_id: str,
benchmark_run_id: Optional[str] | NotGiven = NOT_GIVEN,
metadata: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
run_name: Optional[str] | NotGiven = NOT_GIVEN,
polling_config: PollingConfig | None = None,
) -> ScenarioRunView:
Expand All @@ -863,6 +866,7 @@ async def start_run_and_await_env_ready(
run = await self.start_run(
scenario_id=scenario_id,
benchmark_run_id=benchmark_run_id,
metadata=metadata,
run_name=run_name,
)

Expand Down
Loading
Loading