From 29ce881971b95f989a3fe21990695134d702bafb Mon Sep 17 00:00:00 2001 From: davidschlegel Date: Wed, 29 May 2024 01:01:47 +0200 Subject: [PATCH] Fix remote API url --- qiskit_alice_bob_provider/remote/provider.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qiskit_alice_bob_provider/remote/provider.py b/qiskit_alice_bob_provider/remote/provider.py index 0af1f3c..dcc83ae 100644 --- a/qiskit_alice_bob_provider/remote/provider.py +++ b/qiskit_alice_bob_provider/remote/provider.py @@ -32,7 +32,7 @@ class AliceBobRemoteProvider(ProviderV1): def __init__( self, api_key: str, - url: str = 'https://api.alice-bob.com/', + url: str = 'https://api-gcp.alice-bob.com/', retries: int = 5, wait_between_retries_seconds: int = 1, ): @@ -40,7 +40,7 @@ def __init__( Args: api_key (str): an API key for the Alice & Bob API url (str): Base URL of the Alice & Bob API. - Defaults to 'https://api.alice-bob.com/'. + Defaults to 'https://api-gcp.alice-bob.com/'. """ client = ApiClient( api_key=api_key,