Comet LLM releases¶
The following is a history of released comet_llm
versions. It does not list everything that was changed in a release, but does mention the highlights and all public-facing additions, changes, and deprecations.
You can install any one of the following released version numbers. The full list of releases is at Python Package Index.
Release 2.2.5¶
Release date: Jun 21, 2024
- Renamed get_llm_trace_by_key to get_llm_trace_by_id
- Add support to overriding existing metadata
- Updated docstrings
Release 2.2.4¶
Release date: May 16, 2024
- Requests optimization
Release 2.2.3¶
Release date: May 14, 2024
- Bugfixes in openai integration
Release 2.2.2¶
Release date: Apr 18, 2024
- Exposed Tag query variable in query_dsl
- bugfix: no more errors when calling log_metadata method for a prompt that doesn't have metadata
Release 2.2.1¶
Release date: Apr 10, 2024
- Bump minimal
comet_ml
dependency version to 3.40.0
Release 2.2.0¶
Release date: Apr 10, 2024
- Introduced functionality in the SDK to determine the Comet URL to log data to based on the API key used. This means that you won't need to specify the
COMET_URL_OVERRIDE
environment variable for on-premise deployments. Note: for this functionality to be enabled on your on-premise deployment please contact our deployment team.
Release 2.1.1¶
Release date: Jan 23, 2024
- Introduced a new query variable in the
comet_llm.API
to query traces by user feedback - Introduced minimum version for the
comet_ml
package dependency
Release 2.1.0¶
Release date: Dec 15, 2023
- Introduced the
comet_llm.API
class to query and edit LLM traces
Release 2.0.2¶
Release date: Dec 4, 2023
- TLS verification can now be disabled using the
COMET_INTERNAL_CHECK_TLS_CERTIFICATE
environment variable - Fixed exception raised when patching the OpenAI library for some scenarios
Release 2.0.1¶
Release date: Nov 30, 2023
- Fixed issue that lead some ssl certificates to be ignored
Release 1.6.0¶
Release date: Nov 9, 2023
- Added support for openai v1
Release 1.5.0¶
Release date: Nov 6, 2023
- Introduced new logic and config variable(COMET_RAISE_EXCEPTIONS_OR_ERROR) for errors related to API key.
Release 1.4.1¶
Release date: Oct 6, 2023
- Fixed issue with packaging that meant version 1.4.0 couldn't be imported
Release 1.4.0¶
Release date: Oct 6, 2023
note: This version had a packaging issue and can't be imported, please use version 1.4.1 instead
- Added OpenAI auto-logger
- Added debug logging mode
- Now an error is logged if trying to log to a non-LLM project
Release 1.3.0¶
Release date: Sep 7, 2023
- Introduced
comet_llm.is_ready()
that can signalize if everything is ready for starting logging data - Introduced disabled mode for
comet-llm
api. In this mode all calls to prompt- and chain-logging API do nothing.
Release 1.2.0¶
Release date: Sep 1, 2023
- Added multi-thread support for chains. Now every thread might have it's own "global" chain. It means that now
start_chain
,end_chain
andSpan
calls refer to different chains if called in different threads. It makes it possible to execute multiple chains in parallel out of the box (but 1 per thread) without problems with chain consistency. - Added examples folder with jupyter notebook and readme files.