nvidia-haystack 0.1.2__tar.gz → 0.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/CHANGELOG.md +49 -4
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/PKG-INFO +4 -3
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/rankers/nvidia/ranker.py +2 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/.gitignore +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/LICENSE.txt +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/README.md +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/pydoc/config.yml +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/pyproject.toml +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/embedders/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/embedders/nvidia/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/embedders/nvidia/document_embedder.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/embedders/nvidia/text_embedder.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/embedders/nvidia/truncate.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/generators/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/generators/nvidia/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/generators/nvidia/chat/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/generators/nvidia/generator.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/rankers/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/rankers/nvidia/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/rankers/nvidia/truncate.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/utils/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/utils/nvidia/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/utils/nvidia/nim_backend.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/utils/nvidia/utils.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/__init__.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/conftest.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/test_base_url.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/test_document_embedder.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/test_embedding_truncate_mode.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/test_generator.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/test_ranker.py +0 -0
- {nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/tests/test_text_embedder.py +0 -0
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [integrations/nvidia-v0.1.3] - 2025-01-02
|
|
4
|
+
|
|
5
|
+
### 🚀 Features
|
|
6
|
+
|
|
7
|
+
- Improvements to NvidiaRanker and adding user input timeout (#1193)
|
|
8
|
+
- Add model `nvidia/llama-3.2-nv-rerankqa-1b-v2` to `_MODEL_ENDPOINT_MAP` (#1260)
|
|
9
|
+
|
|
10
|
+
### 🧹 Chores
|
|
11
|
+
|
|
12
|
+
- Fix linting/isort (#1215)
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## [integrations/nvidia-v0.1.1] - 2024-11-14
|
|
4
16
|
|
|
5
17
|
### 🐛 Bug Fixes
|
|
6
18
|
|
|
7
19
|
- Fixes to NvidiaRanker (#1191)
|
|
8
20
|
|
|
21
|
+
|
|
9
22
|
## [integrations/nvidia-v0.1.0] - 2024-11-13
|
|
10
23
|
|
|
11
24
|
### 🚀 Features
|
|
@@ -31,16 +44,25 @@
|
|
|
31
44
|
|
|
32
45
|
- Do not retry tests in `hatch run test` command (#954)
|
|
33
46
|
|
|
34
|
-
### ⚙️
|
|
47
|
+
### ⚙️ CI
|
|
35
48
|
|
|
36
49
|
- Retry tests to reduce flakyness (#836)
|
|
50
|
+
- Adopt uv as installer (#1142)
|
|
51
|
+
|
|
52
|
+
### 🧹 Chores
|
|
53
|
+
|
|
37
54
|
- Update ruff invocation to include check parameter (#853)
|
|
38
55
|
- Update ruff linting scripts and settings (#1105)
|
|
39
|
-
- Adopt uv as installer (#1142)
|
|
40
56
|
|
|
41
|
-
###
|
|
57
|
+
### 🌀 Miscellaneous
|
|
42
58
|
|
|
59
|
+
- Fix: make hosted nim default (#734)
|
|
60
|
+
- Fix: align tests and docs on NVIDIA_API_KEY (instead of NVIDIA_CATALOG_API_KEY) (#731)
|
|
61
|
+
- Ci: install `pytest-rerunfailures` where needed; add retry config to `test-cov` script (#845)
|
|
62
|
+
- Raise warning for base_url ../embeddings .../completions .../rankings (#922)
|
|
43
63
|
- Update NvidiaGenerator docstrings (#966)
|
|
64
|
+
- Add default model for NVIDIA HayStack local NIM endpoints (#915)
|
|
65
|
+
- Feat: add nvidia/llama-3.2-nv-rerankqa-1b-v1 to set of known ranking models (#1183)
|
|
44
66
|
|
|
45
67
|
## [integrations/nvidia-v0.0.3] - 2024-05-22
|
|
46
68
|
|
|
@@ -48,16 +70,30 @@
|
|
|
48
70
|
|
|
49
71
|
- Update docstrings of Nvidia integrations (#599)
|
|
50
72
|
|
|
51
|
-
### ⚙️
|
|
73
|
+
### ⚙️ CI
|
|
52
74
|
|
|
53
75
|
- Add generate docs to Nvidia workflow (#603)
|
|
54
76
|
|
|
77
|
+
### 🌀 Miscellaneous
|
|
78
|
+
|
|
79
|
+
- Remove references to Python 3.7 (#601)
|
|
80
|
+
- Chore: add license classifiers (#680)
|
|
81
|
+
- Chore: change the pydoc renderer class (#718)
|
|
82
|
+
- Update Nvidia integration to support new endpoints (#701)
|
|
83
|
+
- Docs: add missing api references (#728)
|
|
84
|
+
- Update _nim_backend.py (#744)
|
|
85
|
+
|
|
55
86
|
## [integrations/nvidia-v0.0.2] - 2024-03-18
|
|
56
87
|
|
|
57
88
|
### 📚 Documentation
|
|
58
89
|
|
|
59
90
|
- Disable-class-def (#556)
|
|
60
91
|
|
|
92
|
+
### 🌀 Miscellaneous
|
|
93
|
+
|
|
94
|
+
- Make tests show coverage (#566)
|
|
95
|
+
- Add NIM backend support (#597)
|
|
96
|
+
|
|
61
97
|
## [integrations/nvidia-v0.0.1] - 2024-03-07
|
|
62
98
|
|
|
63
99
|
### 🚀 Features
|
|
@@ -68,6 +104,15 @@
|
|
|
68
104
|
|
|
69
105
|
- `nvidia-haystack`- Handle non-strict env var secrets correctly (#543)
|
|
70
106
|
|
|
107
|
+
### 🌀 Miscellaneous
|
|
108
|
+
|
|
109
|
+
- Add `NvidiaGenerator` (#557)
|
|
110
|
+
- Add missing import in NvidiaGenerator docstring (#559)
|
|
111
|
+
|
|
71
112
|
## [integrations/nvidia-v0.0.0] - 2024-03-01
|
|
72
113
|
|
|
114
|
+
### 🌀 Miscellaneous
|
|
115
|
+
|
|
116
|
+
- Add Nvidia integration scaffold (#515)
|
|
117
|
+
|
|
73
118
|
<!-- generated by git-cliff -->
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: nvidia-haystack
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Project-URL: Documentation, https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/nvidia#readme
|
|
5
5
|
Project-URL: Issues, https://github.com/deepset-ai/haystack-core-integrations/issues
|
|
6
6
|
Project-URL: Source, https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/nvidia
|
|
7
7
|
Author-email: deepset GmbH <info@deepset.ai>
|
|
8
|
-
License: Apache-2.0
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
License-File: LICENSE.txt
|
|
9
10
|
Classifier: Development Status :: 4 - Beta
|
|
10
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
12
|
Classifier: Programming Language :: Python
|
|
@@ -17,8 +17,10 @@ logger = logging.getLogger(__name__)
|
|
|
17
17
|
_DEFAULT_MODEL = "nvidia/nv-rerankqa-mistral-4b-v3"
|
|
18
18
|
|
|
19
19
|
_MODEL_ENDPOINT_MAP = {
|
|
20
|
+
"nv-rerank-qa-mistral-4b:1": "https://ai.api.nvidia.com/v1/retrieval/nvidia/reranking",
|
|
20
21
|
"nvidia/nv-rerankqa-mistral-4b-v3": "https://ai.api.nvidia.com/v1/retrieval/nvidia/nv-rerankqa-mistral-4b-v3/reranking",
|
|
21
22
|
"nvidia/llama-3.2-nv-rerankqa-1b-v1": "https://ai.api.nvidia.com/v1/retrieval/nvidia/llama-3_2-nv-rerankqa-1b-v1/reranking",
|
|
23
|
+
"nvidia/llama-3.2-nv-rerankqa-1b-v2": "https://ai.api.nvidia.com/v1/retrieval/nvidia/llama-3_2-nv-rerankqa-1b-v2/reranking",
|
|
22
24
|
}
|
|
23
25
|
|
|
24
26
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/components/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/utils/nvidia/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{nvidia_haystack-0.1.2 → nvidia_haystack-0.1.4}/src/haystack_integrations/utils/nvidia/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|