Skip to content

Commit

Permalink
[Python] 0.1.30 (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw authored Mar 19, 2024
1 parent bacd776 commit 87c0d04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python/langsmith/beta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Beta functionality prone to change."""

from langsmith.beta._evals import convert_runs_to_test
from langsmith.beta._evals import compute_test_metrics, convert_runs_to_test

__all__ = ["convert_runs_to_test"]
__all__ = ["convert_runs_to_test", "compute_test_metrics"]
1 change: 1 addition & 0 deletions python/langsmith/beta/_evals.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ def _outer_product(list1: List[T], list2: List[U]) -> List[Tuple[T, U]]:
return list(itertools.product(list1, list2))


@beta_utils.warn_beta
def compute_test_metrics(
project_name: str,
*,
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langsmith"
version = "0.1.29"
version = "0.1.30"
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
authors = ["LangChain <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 87c0d04

Please sign in to comment.