-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docs): update github tag url for v0.11.1 feat(pyproject.toml): add URLs and update dependencies chore: update changelog Update colang changelog
- Loading branch information
Showing
6 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ description = "NeMo Guardrails is an open-source toolkit for easily adding progr | |
authors = ["NVIDIA <[email protected]>"] | ||
license = "LICENSE.md" | ||
readme = "README.md" | ||
version = "0.11.0" | ||
version = "0.11.1" | ||
packages = [{ include = "nemoguardrails" }] | ||
|
||
|
||
|
@@ -34,6 +34,8 @@ classifiers = [ | |
|
||
[tool.poetry.urls] | ||
homepage = "https://github.com/NVIDIA/nemo-guardrails" | ||
issues = "https://github.com/NVIDIA/nemo-guardrails/issues" | ||
changelog = "https://github.com/NVIDIA/NeMo-Guardrails/blob/develop/CHANGELOG.md" | ||
documentation = "https://docs.nvidia.com/nemo/guardrails/" | ||
repository = "https://github.com/NVIDIA/NeMo-Guardrails" | ||
|
||
|
@@ -46,6 +48,14 @@ aiohttp = ">=3.10.11" | |
annoy = ">=1.17.3" | ||
fastapi = ">=0.103.0," | ||
fastembed = ">=0.2.2, <0.4.1" | ||
# onnxruntime in 1.20 has dropped python 3.9 support | ||
# fastembed has also dropped python 3.9 support entirely as of 0.5.0 | ||
# fastembed depends on onnxruntime we pindown the working version for 3.9 here | ||
# as it is a transient dependency we must remove it later | ||
onnxruntime = [ | ||
{ version = ">=1.17.0,<=1.19.2", python = "^3.9" }, | ||
{ version = ">=1.17.0,<2.0.0", python = ">=3.10" }, | ||
] | ||
httpx = "^0.24.1" | ||
jinja2 = ">=3.1.5" | ||
langchain = ">=0.2.14,<0.4.0" | ||
|
@@ -90,7 +100,7 @@ sdd = ["presidio-analyzer", "presidio-anonymizer", "spacy"] | |
eval = ["tqdm", "numpy", "streamlit"] | ||
openai = ["langchain-openai"] | ||
gcp = ["google-cloud-language"] | ||
trace = ["opentelemetry-api", "opentelemetry-sdk", "aiofiles"] | ||
tracing = ["opentelemetry-api", "opentelemetry-sdk", "aiofiles"] | ||
# Poetry does not support recursive dependencies, so we need to add all the dependencies here. | ||
# I also support their decision. There is no PEP for recursive dependencies, but it has been supported in pip since version 21.2. | ||
# It is here for backward compatibility. | ||
|