Skip to content

Commit

Permalink
Fix remote API url
Browse files Browse the repository at this point in the history
  • Loading branch information
davidschlegel authored and MaxleDrut committed May 29, 2024
1 parent d0868b3 commit 29ce881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qiskit_alice_bob_provider/remote/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ 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,
):
"""
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,
Expand Down

0 comments on commit 29ce881

Please sign in to comment.