From bd4f257589a396f3538ced09f35f6c962698b46f Mon Sep 17 00:00:00 2001 From: Zhengfei Wang <38847871+zhengfeiwang@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:29:34 +0800 Subject: [PATCH] [SDK/CLI] Upgrade JS visualize library for experience improvements (#734) # Description Upgrade JS visualize lib to 0.0.29 for more experience improvements. ![image](https://github.com/microsoft/promptflow/assets/38847871/c94e4d0c-74d1-4bcd-a565-e56de25fc764) # All Promptflow Contribution checklist: - [x] **The pull request does not introduce [breaking changes].** - [x] **CHANGELOG is updated for new features, bug fixes or other significant changes.** - [x] **I have read the [contribution guidelines](../CONTRIBUTING.md).** - [ ] **Create an issue and link to the pull request to get dedicated review from promptflow team. Learn more: [suggested workflow](../CONTRIBUTING.md#suggested-workflow).** ## General Guidelines and Best Practices - [x] Title of the pull request is clear and informative. - [x] There are a small number of commits, each of which have an informative message. This means that previously merged commits do not appear in the history of the PR. For more information on cleaning up the commits in your PR, [see this page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/cleaning-up-commits.md). ### Testing Guidelines - [x] Pull request includes test coverage for the included changes. --- src/promptflow/CHANGELOG.md | 4 +++- src/promptflow/promptflow/_sdk/_constants.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/promptflow/CHANGELOG.md b/src/promptflow/CHANGELOG.md index eb75d228397..dbc99bd6a84 100644 --- a/src/promptflow/CHANGELOG.md +++ b/src/promptflow/CHANGELOG.md @@ -12,7 +12,9 @@ ### Improvements -- [SDK/CLI] Include flow path & output path in `pf run visualize` page. +- [SDK/CLI] Experience improvements in `pf run visualize` page: + - Add column status. + - Support opening flow file by clicking run id. ## 0.1.0b7.post1 (2023.09.28) diff --git a/src/promptflow/promptflow/_sdk/_constants.py b/src/promptflow/promptflow/_sdk/_constants.py index 01b132e14c5..d7cbf1379eb 100644 --- a/src/promptflow/promptflow/_sdk/_constants.py +++ b/src/promptflow/promptflow/_sdk/_constants.py @@ -236,7 +236,7 @@ def get_list_view_type(archived_only: bool, include_archived: bool) -> ListViewT VIS_LIB_CDN_LINK_TMPL = ( "https://sdk-bulk-test-endpoint.azureedge.net/bulk-test-details/view/{version}/bulkTestDetails.min.js?version=1" ) -VIS_LIB_VERSION = "0.0.28" +VIS_LIB_VERSION = "0.0.29" VIS_PORTAL_URL_TMPL = ( "https://ml.azure.com/prompts/flow/bulkrun/runs/outputs" "?wsid=/subscriptions/{subscription_id}/resourceGroups/{resource_group_name}"