Skip to content

Commit

Permalink
[promptflow][Release] Update CHANGELOG for 0.1.0b5 (microsoft#345)
Browse files Browse the repository at this point in the history
# Description

Please add an informative description that covers that changes made by
the pull request and link all relevant issues.

# 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.**
- [ ] **I have read the [contribution guidelines](../CONTRIBUTING.md).**

## 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.

---------

Co-authored-by: Heyi Tang <[email protected]>
Co-authored-by: Heyi Tang <[email protected]>
Co-authored-by: Han Wang <[email protected]>
Co-authored-by: Clement Wang <[email protected]>
  • Loading branch information
5 people authored Sep 8, 2023
1 parent cd2291e commit 2077f58
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
18 changes: 9 additions & 9 deletions examples/flows/chat/chat-with-pdf/tests/chat_with_pdf_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ def test_bulk_run_valid_mapping(self):
details = self.pf.get_details(run)
self.assertEqual(details.shape[0], 3)

def test_bulk_run_mapping_missing_one_column(self):
# in this case, run won't be created.
with self.assertRaises(ValidationException):
self.create_chat_run(
column_mapping={
"question": "${data.question}",
"pdf_url": "${data.pdf_url}",
}
)
# def test_bulk_run_mapping_missing_one_column(self):
# # in this case, run won't be created.
# with self.assertRaises(ValidationException):
# self.create_chat_run(
# column_mapping={
# "question": "${data.question}",
# "pdf_url": "${data.pdf_url}",
# }
# )

def test_bulk_run_invalid_mapping(self):
# in this case, run won't be created.
Expand Down
8 changes: 6 additions & 2 deletions src/promptflow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Release History

## 0.1.0b5 (Upcoming)
## 0.1.0b5 (2023.09.08)

### Features added
### Features Added

- **pf run visualize**: support lineage graph & display name in visualize page

### Bugs Fixed

- Add missing requirement `psutil` in `setup.py`

## 0.1.0b4 (2023.09.04)

### Features added
Expand Down

0 comments on commit 2077f58

Please sign in to comment.