@@ -37,7 +37,7 @@ class QiskitServerless:
3737 Credentials can be saved to disk by calling the `save_account()` method::
3838
3939 from qiskit_ibm_catalog import QiskitServerless
40- QiskitServerless.save_account(token=<INSERT_IBM_QUANTUM_TOKEN>)
40+ QiskitServerless.save_account(token=<INSERT_IBM_QUANTUM_TOKEN>, instance=<INSERT_CRN> )
4141
4242 Once the credentials are saved, you can simply instantiate the serverless with no
4343 constructor args, as shown below.
@@ -49,15 +49,15 @@ class QiskitServerless:
4949 serverless with the API token::
5050
5151 from qiskit_ibm_catalog import QiskitServerless
52- serverless = QiskitServerless(token=<INSERT_IBM_QUANTUM_TOKEN>)
52+ serverless = QiskitServerless(token=<INSERT_IBM_QUANTUM_TOKEN>, instance=<INSERT_CRN> )
5353 """
5454
5555 PRE_FILTER_KEYWORD : str = "serverless"
5656
5757 def __init__ (
5858 self ,
5959 token : Optional [str ] = None ,
60- channel : str = Channel .IBM_QUANTUM .value ,
60+ channel : str = Channel .IBM_QUANTUM_PLATFORM .value ,
6161 instance : Optional [str ] = None ,
6262 name : Optional [str ] = None ,
6363 ) -> None :
@@ -223,7 +223,7 @@ def __repr__(self) -> str:
223223 @staticmethod
224224 def save_account (
225225 token : Optional [str ] = None ,
226- channel : str = Channel .IBM_QUANTUM .value ,
226+ channel : str = Channel .IBM_QUANTUM_PLATFORM .value ,
227227 instance : Optional [str ] = None ,
228228 name : Optional [str ] = None ,
229229 overwrite : Optional [bool ] = False ,
0 commit comments