sie-haystack 0.6.16__tar.gz → 0.6.18__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.
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/.gitignore +9 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/PKG-INFO +2 -2
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/pyproject.toml +2 -2
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/README.md +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/haystack_integrations/components/embedders/sie/__init__.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/haystack_integrations/components/extractors/sie/__init__.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/haystack_integrations/components/rankers/sie/__init__.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/sie_haystack/__init__.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/sie_haystack/embedders.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/sie_haystack/extractors.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/src/sie_haystack/rankers.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/__init__.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/conftest.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/test_embedders.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/test_extractors.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/test_integration.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/test_namespace_aliases.py +0 -0
- {sie_haystack-0.6.16 → sie_haystack-0.6.18}/tests/test_rankers.py +0 -0
|
@@ -142,6 +142,11 @@ celerybeat.pid
|
|
|
142
142
|
|
|
143
143
|
# Environments
|
|
144
144
|
.env
|
|
145
|
+
# Managed-service cloud provisioning secrets (cloud-provision / deploy/cloud).
|
|
146
|
+
# Vendor credentials live in the env or a gitignored secrets file, never the
|
|
147
|
+
# repo (audit §1/§14). Belt-and-braces so a local copy can never be committed.
|
|
148
|
+
*.sie-cloud-secrets.env
|
|
149
|
+
.env.cloud
|
|
145
150
|
.venv
|
|
146
151
|
env/
|
|
147
152
|
venv/
|
|
@@ -239,6 +244,9 @@ override.tf.json
|
|
|
239
244
|
# tfvars files may contain secrets
|
|
240
245
|
*.tfvars
|
|
241
246
|
*.tfvars.json
|
|
247
|
+
# Exception: this edge tfvars carries only a Secrets Manager ARN (a resource
|
|
248
|
+
# identifier, not a secret) so the staging-us edge apply needs no manual -var.
|
|
249
|
+
!deploy/cloud/terraform/aws-edge/staging-us.tfvars
|
|
242
250
|
# Keep .terraform.lock.hcl for reproducibility (provider versions)
|
|
243
251
|
|
|
244
252
|
# Node.js
|
|
@@ -264,3 +272,4 @@ tmp/
|
|
|
264
272
|
.local/
|
|
265
273
|
|
|
266
274
|
.requirements-modal.txt
|
|
275
|
+
packages/sie_cloud/deploy/manifests/archive/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sie-haystack
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.18
|
|
4
4
|
Summary: SIE integration for Haystack
|
|
5
5
|
Author-email: Superlinked <dev@superlinked.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -15,7 +15,7 @@ Requires-Dist: haystack-ai>=2.0.0
|
|
|
15
15
|
Requires-Dist: sie-sdk>=0.1.0
|
|
16
16
|
Provides-Extra: dev
|
|
17
17
|
Requires-Dist: chroma-haystack>=2.0.0; extra == 'dev'
|
|
18
|
-
Requires-Dist: chromadb>=
|
|
18
|
+
Requires-Dist: chromadb>=1.5.9; extra == 'dev'
|
|
19
19
|
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
|
|
20
20
|
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "sie-haystack"
|
|
3
|
-
version = "0.6.
|
|
3
|
+
version = "0.6.18"
|
|
4
4
|
description = "SIE integration for Haystack"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -24,7 +24,7 @@ dependencies = [
|
|
|
24
24
|
dev = [
|
|
25
25
|
"pytest>=8.0.0",
|
|
26
26
|
"pytest-asyncio>=0.23.0",
|
|
27
|
-
"chromadb>=
|
|
27
|
+
"chromadb>=1.5.9",
|
|
28
28
|
"chroma-haystack>=2.0.0"
|
|
29
29
|
]
|
|
30
30
|
|
|
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
|
|
File without changes
|