Skip to content

Commit

Permalink
Merge pull request #901 from parea-ai/PAI-1139-encode-forward-slash-f…
Browse files Browse the repository at this point in the history
…rom-exp-name-sdkp

encodeURIComponent /
  • Loading branch information
jalexanderII committed May 27, 2024
2 parents bb8eeed + ba762fb commit 4c401ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion parea/experiment/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def limit_concurrency_sync(sample):
if dataset_level_eval_results:
stat_name_to_avg_std.update(**{eval_result.name: eval_result.score for eval_result in dataset_level_eval_results})
print(f"Experiment {experiment_name} Run {run_name} stats:\n{json_dumps(stat_name_to_avg_std, indent=2)}\n\n")
print(f"View experiment & traces at: https://app.parea.ai/experiments/{quote(experiment_name)}/{experiment_uuid}\n")
print(f"View experiment & traces at: https://app.parea.ai/experiments/{quote(experiment_name, safe='')}/{experiment_uuid}\n")
save_results_to_dvc_if_init(run_name, stat_name_to_avg_std)

if os.environ.get(PAREA_OS_ENV_EXPERIMENT_UUID, None):
Expand Down
11 changes: 1 addition & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "parea-ai"
packages = [{ include = "parea" }]
version = "0.2.160"
version = "0.2.161"
description = "Parea python sdk"
readme = "README.md"
authors = ["joel-parea-ai <[email protected]>"]
Expand Down

0 comments on commit 4c401ec

Please sign in to comment.