未翻訳
このページはまだ翻訳されていません。英語の原文を表示しています。
Overview of available plans
IBM Quantum Platform has Open (free access) and paid plans, as described below. See IBM Quantum access plans for full details.
If you want access to multiple plans, you can create multiple instances and assign different plans to them. For example, you can have an Open Plan instance and a Pay-As-You-Go Plan instance. You can set preferred instances to use in the QiskitRuntimeService initializer or QiskitRuntimeService.save_account() method. Example:
from qiskit_ibm_runtime import QiskitRuntimeService
service = QiskitRuntimeService.save_account(
token="<your-API_KEY>", # Use the 44-character API_KEY you created and saved from the IBM Quantum Platform Home dashboard.
# Your token is confidential. Do not share your key in public code.
instance="<IBM Cloud CRN or instance name>", # Optionally specify the instance to use.
plans_preference="['open', 'premium']", # Optionally set the types of plans to prioritize. This is ignored if the instance is specified.
# Additionally, instances of a certain plan type are excluded if the plan name is not specified.
region="us-east", # Optionally set the region to prioritize. Accepted values are 'us-east' or 'eu-de'. This is ignored if the instance is specified.
name="<account-name>", # Optionally name this set of account credentials.
set_as_default=True, # Optionally set these as your default credentials.
)