---
title: Options (v0.26)
description: API reference for qiskit_ibm_runtime.options.Options in qiskit-ibm-runtime v0.26
source: https://quantum.cloud.ibm.com/docs/en/api/qiskit-ibm-runtime/0.26/options-options
---

# Options

*class* `Options(optimization_level=None, resilience_level=None, max_execution_time=None, transpilation=<factory>, resilience=<factory>, execution=<factory>, environment=<factory>, simulator=<factory>)`

[GitHub](https://github.com/Qiskit/qiskit-ibm-runtime/tree/stable/0.26/qiskit_ibm_runtime/options/options.py#L234-L466)

Options for V1 primitives.

**Parameters**

- **optimization\_level** (`Optional`\[`int`]) –

  How much optimization to perform on the circuits. Higher levels generate more optimized circuits, at the expense of longer transpilation times. This is based on the `optimization_level` parameter in qiskit-terra but may include backend-specific optimization. Default: 3.

  - 0: no optimization
  - 1: light optimization
  - 2: heavy optimization
  - 3: even heavier optimization

- **resilience\_level** (`Optional`\[`int`]) –

  How much resilience to build against errors. Higher levels generate more accurate results, at the expense of longer processing times. Default: 1.

  - 0: No mitigation.
  - 1: Minimal mitigation costs. Mitigate error associated with readout errors.
  - 2: Medium mitigation costs. Typically reduces bias in estimators but is not guaranteed to be zero bias. Only applies to estimator.
  - 3: Heavy mitigation with layer sampling. Theoretically expected to deliver zero bias estimators. Only applies to estimator.

  Refer to the [Qiskit Runtime documentation](/docs/run/configure-error-mitigation). for more information about the error mitigation methods used at each level.

- **max\_execution\_time** (`Optional`\[`int`]) –

  Maximum execution time in seconds, which is based on system execution time (not wall clock time). System execution time is the amount of time that the system is dedicated to processing your job. If a job exceeds this time limit, it is forcibly cancelled. Simulator jobs continue to use wall clock time.

  Refer to the [Max execution time documentation](/docs/run/max-execution-time). for more information.

- **transpilation** (`Union`\[[`TranspilationOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-transpilation-options "qiskit_ibm_runtime.options.transpilation_options.TranspilationOptions"), `Dict`]) – Transpilation options. See [`TranspilationOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-transpilation-options "qiskit_ibm_runtime.options.TranspilationOptions") for all available options.

- **resilience** (`Union`\[[`ResilienceOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-resilience-options "qiskit_ibm_runtime.options.resilience_options.ResilienceOptions"), `Dict`]) – Advanced resilience options to fine tune the resilience strategy. See [`ResilienceOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-resilience-options "qiskit_ibm_runtime.options.ResilienceOptions") for all available options.

- **execution** (`Union`\[[`ExecutionOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-execution-options "qiskit_ibm_runtime.options.execution_options.ExecutionOptions"), `Dict`]) – Execution time options. See [`ExecutionOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-execution-options "qiskit_ibm_runtime.options.ExecutionOptions") for all available options.

- **environment** (`Union`\[[`EnvironmentOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-environment-options "qiskit_ibm_runtime.options.environment_options.EnvironmentOptions"), `Dict`]) – Options related to the execution environment. See [`EnvironmentOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-environment-options "qiskit_ibm_runtime.options.EnvironmentOptions") for all available options.

- **simulator** (`Union`\[[`SimulatorOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-simulator-options "qiskit_ibm_runtime.options.simulator_options.SimulatorOptions"), `Dict`]) – Simulator options. See [`SimulatorOptions`](/docs/api/qiskit-ibm-runtime/0.26/options-simulator-options "qiskit_ibm_runtime.options.SimulatorOptions") for all available options.

## Attributes

### max\_execution\_time

Type: `int | None`

Default value: `None`

### optimization\_level

Type: `int | None`

Default value: `None`

### resilience\_level

Type: `int | None`

Default value: `None`

### transpilation

Type: `TranspilationOptions | Dict`

### resilience

Type: `ResilienceOptions | Dict`

### execution

Type: `ExecutionOptions | Dict`

### environment

Type: `EnvironmentOptions | Dict`

### simulator

Type: `SimulatorOptions | Dict`

## Methods

### validate\_options

*static* `validate_options(options)`

[GitHub](https://github.com/Qiskit/qiskit-ibm-runtime/tree/stable/0.26/qiskit_ibm_runtime/options/options.py#L368-L396)

Validate that program inputs (options) are valid :raises ValueError: if optimization\_level is outside the allowed range. :raises ValueError: if max\_execution\_time is outside the allowed range.

**Return type**

`None`
