Skip to content

Commit fe583ce

Browse files
gustavocidornelaswhoseoyster
authored andcommitted
Bump version and update changelog
1 parent 865b3a3 commit fe583ce

File tree

4 files changed

+8
-23
lines changed

4 files changed

+8
-23
lines changed

CHANGELOG.md

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,8 @@ 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]
9-
10-
### Fixed
11-
12-
* Fix warnings related to not closing requests sessions
13-
* Loading bar no longer jumps from 0% to 100% for large uploads
8+
## [0.1.0a20]
149

1510
### Added
16-
17-
* Added the project's `export` method, which exports the resources in the project's staging area to a specified location.
18-
* Added `llm` as a supported `architectureType` for models.
19-
* Added `protobuf<3.20` to requirements to fix compatibility issue with Tensorflow.
20-
* Warnings if the dependencies from the `requirement_txt_file` and current environment are inconsistent.
21-
* 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.
22-
* Ability to check for goal statuses through the API.
23-
24-
### Changed
25-
26-
* Renamed conda environment created by the model runner from `new-openlayer` to `model-runner-env-%m-%d-%H-%M-%S-%f`.
27-
* Modified the zero-index integer checks for `predictionsColumnName` and `labelColumnName` to support dataset uploads with only a sample of the classes.
28-
* Renamed `predictionsColumnName` argument from the datasets' configuration YAML to `predictionScoresColumnName`.
29-
* Migrated package name from [openlayer](https://pypi.org/project/openlayer/) to [openlayer](https://pypi.org/project/openlayer/) due to a company name change.
30-
* Required Python version `>=3.7` and `<3.9`.
11+
* Added `prompt` as an optional field in the config for LLM production data.
12+
* `llm_monitor` for OpenAI ChatCompletion models records the `prompt` used and uploads it.

openlayer/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
project.status()
2222
project.push()
2323
"""
24-
import copy
2524
import os
2625
import shutil
2726
import tarfile

openlayer/schemas/project_schemas.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# pylint: disable=invalid-name, unused-argument
2+
"""Schemas for the project object that shall be created on the Openlayer
3+
platform.
4+
"""
15
import marshmallow as ma
26

37
from ..tasks import TaskType

openlayer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
data=data,
2323
)
2424
"""
25-
__version__ = "0.1.0a19"
25+
__version__ = "0.1.0a20"

0 commit comments

Comments
 (0)