From 8bd91ae770fa4e5e54072fa6672d8e45b12260ea Mon Sep 17 00:00:00 2001 From: asim-shrestha Date: Thu, 30 Nov 2023 13:39:40 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Update=20check=5Fmatch?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bananalyzer/__init__.py | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/bananalyzer/__init__.py b/bananalyzer/__init__.py index 1fa44fae..d47700cf 100644 --- a/bananalyzer/__init__.py +++ b/bananalyzer/__init__.py @@ -1,5 +1,6 @@ from bananalyzer.data.examples import get_all_examples from bananalyzer.data.schemas import Example, GoalType from bananalyzer.runner.agent_runner import AgentRunner +from bananalyzer.runner.evals import check_match -__all__ = ["AgentRunner", "GoalType", "Example", "get_all_examples"] +__all__ = ["AgentRunner", "GoalType", "Example", "get_all_examples", "check_match"] diff --git a/pyproject.toml b/pyproject.toml index 520d7acb..782d57e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bananalyzer" -version = "0.6.8" +version = "0.6.9" description = "Open source AI Agent evaluation framework for web tasks 🐒🍌" authors = ["asim-shrestha "]