|
| 1 | +--- |
| 2 | +tocdepth: 2 |
| 3 | +--- |
| 4 | +<!-- |
| 5 | + SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
| 6 | + SPDX-License-Identifier: Apache-2.0 |
| 7 | +--> |
| 8 | + |
| 9 | +# Release Notes |
| 10 | + |
| 11 | +The following sections summarize and highlight the changes for each release. |
| 12 | +For a complete record of changes in a release, refer to the |
| 13 | +[CHANGELOG.md](https://github.com/NVIDIA/NeMo-Guardrails/blob/develop/CHANGELOG.md) in the GitHub repository. |
| 14 | + |
| 15 | +## 0.14.0 |
| 16 | + |
| 17 | +### Features |
| 18 | + |
| 19 | +- Added support for Python 3.13. |
| 20 | +- Simplified and broadened support for chat model providers from LangChain and |
| 21 | + LangChain Community chat model providers. |
| 22 | + You must use `langchain` version `0.2.14` or higher and `langchain-community` version `0.2.5` or higher. |
| 23 | +- Added support for code injection detection. |
| 24 | + For more information, refer to [](./user-guides/guardrails-library.md#injection-detection). |
| 25 | +- Enhanced the `nemoguardrails` CLI with a `find-providers` argument to list chat and text completion providers. |
| 26 | + For more information, refer to [](./user-guides/cli.md#providers). |
| 27 | + |
| 28 | +### Breaking Changes |
| 29 | + |
| 30 | +- Removed support for the NeMo LLM Service, `nemollm`. |
| 31 | + This provider reached end-of-life on February 5, 2025. |
| 32 | +- The `HuggingFacePipelineCompatible` provider is refactored. |
| 33 | + Previously, the class was available from the `nemoguardrails.llm.providers` package. |
| 34 | + In this release, the class is moved to the `nemoguardrails.llm.providers.huggingface` package. |
| 35 | + |
| 36 | +### Fixed Issues |
| 37 | + |
| 38 | +- Fixed an issue when tracing is enabled. |
| 39 | + Previously, the response was replaced when tracing is enabled and could cause a crash or exception. |
| 40 | + In this release, the response is not modified when tracing is enabled. |
| 41 | + For more information, refer to <pr:1103>. |
| 42 | + |
| 43 | +- Fixed an issue with the self check output flow. |
| 44 | + Previously, the `stop` instruction was not executed when `enable_rails_exceptions` was enabled. |
| 45 | + In this release, the `stop` instruction correctly regardless of the `enable_rails_execptions` value. |
| 46 | + For more information, refer to <pr:1126>. |
| 47 | + |
| 48 | +- Previously, the model specification in the guardrails configuration file, `config.yml`, did not validate the model name. |
| 49 | + In this release you must specify the model name in the `model` top-level field or as `model` or `model_name` in |
| 50 | + the parameters field. |
| 51 | + For more information, refer to <pr:1084>. |
0 commit comments