Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion py/autoevals/string.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Optional

from braintrust_core.score import Score
from Levenshtein import distance
from polyleven import levenshtein as distance

from autoevals.partial import ScorerWithPartial
from autoevals.value import normalize_value
Expand Down
2 changes: 1 addition & 1 deletion py/autoevals/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.122"
VERSION = "0.0.123"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with open(os.path.join(dir_name, "README.md"), "r", encoding="utf-8") as f:
long_description = f.read()

install_requires = ["chevron", "levenshtein", "pyyaml", "braintrust_core", "jsonschema"]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good!

let's do a bump autoevals/py/autoevals/version.py. I'll take care of the publishing after merging.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh and I think it should be polyleven?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed typo and bumped version. Thanks!

install_requires = ["chevron", "polyleven", "pyyaml", "braintrust_core", "jsonschema"]

extras_require = {
"dev": [
Expand Down
Loading