Skip to content

Commit

Permalink
Merge pull request #260 from whylabs/log
Browse files Browse the repository at this point in the history
Fix log
  • Loading branch information
naddeoa authored Mar 11, 2024
2 parents b17e251 + 0e679be commit 312a5b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.90
current_version = 0.0.91
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
Expand Down
2 changes: 1 addition & 1 deletion langkit/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def init(self) -> None:
if not set(targets).issubset(metric_names):
raise ValueError(
f"Validator {validator} has target metric names ({targets}) but this workflow is "
"only generating metrics for these: {metric_names}"
f"only generating metrics for these: {metric_names}"
)

def _condense_metric_results(self, metric_results: Dict[str, SingleMetricResult]) -> pd.DataFrame:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langkit"
version = "0.0.90"
version = "0.0.91"
description = "A language toolkit for monitoring LLM interactions"
authors = ["WhyLabs.ai <[email protected]>"]
homepage = "https://docs.whylabs.ai/docs/large-language-model-monitoring"
Expand Down

0 comments on commit 312a5b9

Please sign in to comment.