Skip to content

Commit

Permalink
Fixed broken experiment link in colab (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverre authored Oct 9, 2024
1 parent 76144c5 commit fd9c847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/src/opik/url_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_experiment_url(dataset_name: str, experiment_id: str) -> str:
config = opik.config.OpikConfig()
ui_url = get_ui_url()

return f'{ui_url}/{config.workspace}/experiments/{dataset_id}/compare?experiments=%5B"{experiment_id}"%5D'
return f"{ui_url}/{config.workspace}/experiments/{dataset_id}/compare?experiments=%5B%22{experiment_id}%22%5D"


def get_projects_url() -> str:
Expand Down

0 comments on commit fd9c847

Please sign in to comment.