embedding-flow 0.1.1__tar.gz → 0.1.2__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.
Files changed (21) hide show
  1. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/PKG-INFO +10 -2
  2. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/README.md +4 -0
  3. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow.egg-info/PKG-INFO +10 -2
  4. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow.egg-info/requires.txt +7 -1
  5. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/pyproject.toml +8 -2
  6. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/LICENSE +0 -0
  7. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/__init__.py +0 -0
  8. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/contracts/__init__.py +0 -0
  9. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/contracts/contracts.py +0 -0
  10. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/load/__init__.py +0 -0
  11. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/load/load.py +0 -0
  12. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/main.py +0 -0
  13. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/transform/__init__.py +0 -0
  14. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow/transform/transform.py +0 -0
  15. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow.egg-info/SOURCES.txt +0 -0
  16. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow.egg-info/dependency_links.txt +0 -0
  17. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/embedding_flow.egg-info/top_level.txt +0 -0
  18. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/setup.cfg +0 -0
  19. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/setup.py +0 -0
  20. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/tests/test_load.py +0 -0
  21. {embedding_flow-0.1.1 → embedding_flow-0.1.2}/tests/test_transform.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: embedding-flow
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Pipeline to transform text chunks into embeddings and load to Qdrant
5
5
  Author: facuvega
6
6
  Classifier: Programming Language :: Python :: 3
@@ -15,11 +15,15 @@ License-File: LICENSE
15
15
  Requires-Dist: pandas>=2.0.0
16
16
  Requires-Dist: pyarrow>=12.0.0
17
17
  Requires-Dist: sentence-transformers>=2.2.0
18
- Requires-Dist: torch>=2.0.0
19
18
  Requires-Dist: qdrant-client>=1.7.0
19
+ Requires-Dist: transformers
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: pytest>=7.0.0; extra == "dev"
22
22
  Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
23
+ Provides-Extra: cpu
24
+ Requires-Dist: torch>=2.0.0; extra == "cpu"
25
+ Provides-Extra: cuda
26
+ Requires-Dist: torch>=2.0.0; extra == "cuda"
23
27
  Dynamic: license-file
24
28
 
25
29
  # embedding-flow
@@ -29,7 +33,11 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
29
33
  ## Instalación
30
34
 
31
35
  ```bash
36
+ # Instalación básica (instala torch según tu sistema)
32
37
  pip install embedding-flow
38
+
39
+ # O instalar con torch CPU (recomendado si no tenés GPU)
40
+ pip install embedding-flow torch --index-url https://download.pytorch.org/whl/cpu
33
41
  ```
34
42
 
35
43
  ## Uso
@@ -5,7 +5,11 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
5
5
  ## Instalación
6
6
 
7
7
  ```bash
8
+ # Instalación básica (instala torch según tu sistema)
8
9
  pip install embedding-flow
10
+
11
+ # O instalar con torch CPU (recomendado si no tenés GPU)
12
+ pip install embedding-flow torch --index-url https://download.pytorch.org/whl/cpu
9
13
  ```
10
14
 
11
15
  ## Uso
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: embedding-flow
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Pipeline to transform text chunks into embeddings and load to Qdrant
5
5
  Author: facuvega
6
6
  Classifier: Programming Language :: Python :: 3
@@ -15,11 +15,15 @@ License-File: LICENSE
15
15
  Requires-Dist: pandas>=2.0.0
16
16
  Requires-Dist: pyarrow>=12.0.0
17
17
  Requires-Dist: sentence-transformers>=2.2.0
18
- Requires-Dist: torch>=2.0.0
19
18
  Requires-Dist: qdrant-client>=1.7.0
19
+ Requires-Dist: transformers
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: pytest>=7.0.0; extra == "dev"
22
22
  Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
23
+ Provides-Extra: cpu
24
+ Requires-Dist: torch>=2.0.0; extra == "cpu"
25
+ Provides-Extra: cuda
26
+ Requires-Dist: torch>=2.0.0; extra == "cuda"
23
27
  Dynamic: license-file
24
28
 
25
29
  # embedding-flow
@@ -29,7 +33,11 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
29
33
  ## Instalación
30
34
 
31
35
  ```bash
36
+ # Instalación básica (instala torch según tu sistema)
32
37
  pip install embedding-flow
38
+
39
+ # O instalar con torch CPU (recomendado si no tenés GPU)
40
+ pip install embedding-flow torch --index-url https://download.pytorch.org/whl/cpu
33
41
  ```
34
42
 
35
43
  ## Uso
@@ -1,8 +1,14 @@
1
1
  pandas>=2.0.0
2
2
  pyarrow>=12.0.0
3
3
  sentence-transformers>=2.2.0
4
- torch>=2.0.0
5
4
  qdrant-client>=1.7.0
5
+ transformers
6
+
7
+ [cpu]
8
+ torch>=2.0.0
9
+
10
+ [cuda]
11
+ torch>=2.0.0
6
12
 
7
13
  [dev]
8
14
  pytest>=7.0.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "embedding-flow"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "Pipeline to transform text chunks into embeddings and load to Qdrant"
9
9
  readme = "README.md"
10
10
  authors = [{name = "facuvega"}]
@@ -13,8 +13,8 @@ dependencies = [
13
13
  "pandas>=2.0.0",
14
14
  "pyarrow>=12.0.0",
15
15
  "sentence-transformers>=2.2.0",
16
- "torch>=2.0.0",
17
16
  "qdrant-client>=1.7.0",
17
+ "transformers",
18
18
  ]
19
19
  classifiers = [
20
20
  "Programming Language :: Python :: 3",
@@ -30,6 +30,12 @@ dev = [
30
30
  "pytest>=7.0.0",
31
31
  "pytest-cov>=4.0.0",
32
32
  ]
33
+ cpu = [
34
+ "torch>=2.0.0",
35
+ ]
36
+ cuda = [
37
+ "torch>=2.0.0",
38
+ ]
33
39
 
34
40
  [tool.setuptools.packages.find]
35
41
  include = ["embedding_flow*"]
File without changes
File without changes
File without changes