embedding-flow 0.1.3__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.
Files changed (21) hide show
  1. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/PKG-INFO +5 -5
  2. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/README.md +4 -3
  3. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow.egg-info/PKG-INFO +5 -5
  4. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow.egg-info/requires.txt +0 -1
  5. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/pyproject.toml +1 -2
  6. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/LICENSE +0 -0
  7. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/__init__.py +0 -0
  8. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/contracts/__init__.py +0 -0
  9. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/contracts/contracts.py +0 -0
  10. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/load/__init__.py +0 -0
  11. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/load/load.py +0 -0
  12. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/main.py +0 -0
  13. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/transform/__init__.py +0 -0
  14. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow/transform/transform.py +0 -0
  15. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow.egg-info/SOURCES.txt +0 -0
  16. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow.egg-info/dependency_links.txt +0 -0
  17. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/embedding_flow.egg-info/top_level.txt +0 -0
  18. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/setup.cfg +0 -0
  19. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/setup.py +0 -0
  20. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/tests/test_load.py +0 -0
  21. {embedding_flow-0.1.3 → embedding_flow-0.1.4}/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.3
3
+ Version: 0.1.4
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
@@ -12,7 +12,6 @@ Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Requires-Dist: torch==2.8.0
16
15
  Requires-Dist: sentence-transformers
17
16
  Requires-Dist: transformers
18
17
  Requires-Dist: pandas
@@ -35,11 +34,12 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
35
34
  ## Instalación
36
35
 
37
36
  ```bash
38
- # Instalación básica (instala torch según tu sistema)
37
+ # Instalar con torch CPU (recomendado, evita descargar CUDA)
38
+ pip install torch --index-url https://download.pytorch.org/whl/cpu
39
39
  pip install embedding-flow
40
40
 
41
- # O instalar con torch CPU (recomendado si no tenés GPU)
42
- pip install embedding-flow torch --index-url https://download.pytorch.org/whl/cpu
41
+ # O instalar todo junto
42
+ pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install embedding-flow
43
43
  ```
44
44
 
45
45
  ## Uso
@@ -5,11 +5,12 @@ 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
+ # Instalar con torch CPU (recomendado, evita descargar CUDA)
9
+ pip install torch --index-url https://download.pytorch.org/whl/cpu
9
10
  pip install embedding-flow
10
11
 
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
12
+ # O instalar todo junto
13
+ pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install embedding-flow
13
14
  ```
14
15
 
15
16
  ## Uso
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: embedding-flow
3
- Version: 0.1.3
3
+ Version: 0.1.4
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
@@ -12,7 +12,6 @@ Classifier: Operating System :: OS Independent
12
12
  Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
- Requires-Dist: torch==2.8.0
16
15
  Requires-Dist: sentence-transformers
17
16
  Requires-Dist: transformers
18
17
  Requires-Dist: pandas
@@ -35,11 +34,12 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
35
34
  ## Instalación
36
35
 
37
36
  ```bash
38
- # Instalación básica (instala torch según tu sistema)
37
+ # Instalar con torch CPU (recomendado, evita descargar CUDA)
38
+ pip install torch --index-url https://download.pytorch.org/whl/cpu
39
39
  pip install embedding-flow
40
40
 
41
- # O instalar con torch CPU (recomendado si no tenés GPU)
42
- pip install embedding-flow torch --index-url https://download.pytorch.org/whl/cpu
41
+ # O instalar todo junto
42
+ pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install embedding-flow
43
43
  ```
44
44
 
45
45
  ## Uso
@@ -1,4 +1,3 @@
1
- torch==2.8.0
2
1
  sentence-transformers
3
2
  transformers
4
3
  pandas
@@ -4,13 +4,12 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "embedding-flow"
7
- version = "0.1.3"
7
+ version = "0.1.4"
8
8
  description = "Pipeline to transform text chunks into embeddings and load to Qdrant"
9
9
  readme = "README.md"
10
10
  authors = [{name = "facuvega"}]
11
11
  requires-python = ">=3.10"
12
12
  dependencies = [
13
- "torch==2.8.0",
14
13
  "sentence-transformers",
15
14
  "transformers",
16
15
  "pandas",
File without changes
File without changes
File without changes