Skip to content

Commit 0cd0337

Browse files
committed
release: 0.2.0-alpha.23
1 parent 7ded1ef commit 0cd0337

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

.release-please-manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.0-alpha.22"
3-
}
2+
".": "0.2.0-alpha.23"
3+
}

CHANGELOG.md

+6-11
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## 0.2.0-alpha.23 (2024-08-26)
99

10-
### Added
11-
* Added support for OpenAI assistants. The `llm_monitor` now supports monitoring OpenAI assistant runs with the function `monitor_run`.
12-
* Added the ability to use the `llm_monitor.OpenAIMonitor` as a context manager.
13-
* Added `openlayer_inference_pipeline_id` as an optional parameter to the `OpenAIMonitor`. This is an alternative to `openlayer_inference_pipeline_name` and `openlayer_inference_project_name` parameters for identifying the inference pipeline on the platform.
14-
* Added `monitor_output_only` as an argument to the OpenAI `llm_monitor`. If set to `True`, the monitor will only record the output of the model, and not the input.
15-
* Added `costColumnName` as an optional field in the config for LLM data.
10+
Full Changelog: [v0.2.0-alpha.22...v0.2.0-alpha.23](https://github.com/openlayer-ai/openlayer-python/compare/v0.2.0-alpha.22...v0.2.0-alpha.23)
1611

17-
### Changed
18-
* `llm_monitor` for OpenAI models now records the `cost` estimate and uploads it.
12+
### Features
1913

20-
### Removed
21-
* Deprecated and removed `publish_ground_truths` method. Use `update_data` instead.
14+
* improvement: updates to custom metric runner
15+
* improvement: skip metrics if already computed, surface errors for each metric
16+
* feat: add --dataset flag so custom metrics can be forced to run on only specific datasets
2217

2318
## 0.2.0-alpha.22 (2024-08-21)
2419

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openlayer"
3-
version = "0.2.0-alpha.22"
3+
version = "0.2.0-alpha.23"
44
description = "The official Python library for the openlayer API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/openlayer/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "openlayer"
4-
__version__ = "0.2.0-alpha.22" # x-release-please-version
4+
__version__ = "0.2.0-alpha.23" # x-release-please-version

0 commit comments

Comments
 (0)