Skip to content

Commit

Permalink
[internal][feat] update trace view js bundle (#3620)
Browse files Browse the repository at this point in the history
# Description

- fixed:#3613
- Several trace view UI enhancement 

# All Promptflow Contribution checklist:
- [x] **The pull request does not introduce [breaking changes].**
- [ ] **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
- [ ] Pull request includes test coverage for the included changes.

---------

Co-authored-by: Zhengfei Wang <38847871+zhengfeiwang@users.noreply.github.com>
  • Loading branch information
RealKai42 and zhengfeiwang authored Aug 6, 2024
1 parent 8346990 commit f6d2926
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 138 deletions.
4 changes: 4 additions & 0 deletions src/promptflow-devkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# promptflow-devkit package

## v1.15.0 (Upcoming)
### Bugs fixed
- Fixed trace view can't display boolean output (#3613)

## v1.14.0 (2024.07.25)
### Improvements
- Add `promptflow` to dockerfile when build flow with `python_requirements_txt` incase promptflow not exists in custom requirements.
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/v1.0/ui/traces/assets/icon-oxB8RKmI.svg" media="(prefers-color-scheme:no-preference)">
<link rel="icon" href="/v1.0/ui/traces/assets/icon_for_dark-7fdboOJT.svg" media="(prefers-color-scheme:dark)">
<link rel="icon" href="/v1.0/ui/traces/assets/icon-oxB8RKmI.svg" media="(prefers-color-scheme:light)">
<title>Trace View</title>
<script type="module" crossorigin src="/v1.0/ui/traces/assets/index-uhZP70pN.js"></script>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/v1.0/ui/traces/assets/icon-IVYk8x5p.svg" media="(prefers-color-scheme:no-preference)">
<link rel="icon" href="/v1.0/ui/traces/assets/icon_for_dark-3C8HbOu4.svg" media="(prefers-color-scheme:dark)">
<link rel="icon" href="/v1.0/ui/traces/assets/icon-IVYk8x5p.svg" media="(prefers-color-scheme:light)">
<title>Trace View</title>
<script type="module" crossorigin src="/v1.0/ui/traces/assets/index-Gv8oRpaG.js"></script>

</head>
<body>
<div id="root"></div>
</body>
</html>
</head>
<body>
<div id="root"></div>
</body>
</html>
Expand Down
1 change: 1 addition & 0 deletions src/promptflow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Bugs fixed
- [promptflow-azure] Fixed `Connection aborted` error for local to cloud run when registering the run to cloud.
- [promptflow-core] Fixed openai error handler not functioning for `AsyncPrompty`.
- [promptflow-devkit] Fixed trace view can't display boolean output (#3613)

## v1.14.0 (2024.07.25)
### Improvements
Expand Down

0 comments on commit f6d2926

Please sign in to comment.