Skip to content

Commit

Permalink
fix unintended default api base url change
Browse files Browse the repository at this point in the history
  • Loading branch information
axl1313 authored Aug 4, 2023
1 parent c6f51bd commit 5a72bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cleanlab_studio/internal/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from cleanlab_studio.version import __version__


base_url = os.environ.get("CLEANLAB_API_BASE_URL", "https://api.dev-bc26qf4m.cleanlab.ai/api")
base_url = os.environ.get("CLEANLAB_API_BASE_URL", "https://api.cleanlab.ai/api")
cli_base_url = f"{base_url}/cli/v0"
upload_base_url = f"{base_url}/upload/v0"
dataset_base_url = f"{base_url}/datasets"
Expand Down

0 comments on commit 5a72bb7

Please sign in to comment.