Skip to content

Commit

Permalink
Bump version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavocidornelas committed Dec 13, 2023
1 parent a76ac66 commit c9bd7bf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 22 deletions.
24 changes: 3 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

* Fix warnings related to not closing requests sessions
* Loading bar no longer jumps from 0% to 100% for large uploads
## [0.1.0a20]

### Added

* Added the project's `export` method, which exports the resources in the project's staging area to a specified location.
* Added `llm` as a supported `architectureType` for models.
* Added `protobuf<3.20` to requirements to fix compatibility issue with Tensorflow.
* Warnings if the dependencies from the `requirement_txt_file` and current environment are inconsistent.
* Paths to custom SSL certificates can now be modified by altering `openlayer.api.VERIFY_REQUESTS`. The value can either be True (default), False, or a path to a certificate.
* Ability to check for goal statuses through the API.

### Changed

* Renamed conda environment created by the model runner from `new-openlayer` to `model-runner-env-%m-%d-%H-%M-%S-%f`.
* Modified the zero-index integer checks for `predictionsColumnName` and `labelColumnName` to support dataset uploads with only a sample of the classes.
* Renamed `predictionsColumnName` argument from the datasets' configuration YAML to `predictionScoresColumnName`.
* Migrated package name from [openlayer](https://pypi.org/project/openlayer/) to [openlayer](https://pypi.org/project/openlayer/) due to a company name change.
* Required Python version `>=3.7` and `<3.9`.
* Added `prompt` as an optional field in the config for LLM production data.
* `llm_monitor` for OpenAI ChatCompletion models records the `prompt` used and uploads it.
4 changes: 4 additions & 0 deletions openlayer/schemas/project_schemas.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# pylint: disable=invalid-name, unused-argument
"""Schemas for the project object that shall be created on the Openlayer
platform.
"""
import marshmallow as ma

from ..tasks import TaskType
Expand Down
2 changes: 1 addition & 1 deletion openlayer/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
data=data,
)
"""
__version__ = "0.1.0a19"
__version__ = "0.1.0a20"

0 comments on commit c9bd7bf

Please sign in to comment.