embedding-flow 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.
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/PKG-INFO +10 -8
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/README.md +4 -3
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow.egg-info/PKG-INFO +10 -8
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow.egg-info/requires.txt +5 -4
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/pyproject.toml +6 -5
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/LICENSE +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/__init__.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/contracts/__init__.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/contracts/contracts.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/load/__init__.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/load/load.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/main.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/transform/__init__.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow/transform/transform.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow.egg-info/SOURCES.txt +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow.egg-info/dependency_links.txt +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/embedding_flow.egg-info/top_level.txt +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/setup.cfg +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/setup.py +0 -0
- {embedding_flow-0.1.2 → embedding_flow-0.1.4}/tests/test_load.py +0 -0
- {embedding_flow-0.1.2 → 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
|
+
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,11 +12,12 @@ 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:
|
16
|
-
Requires-Dist: pyarrow>=12.0.0
|
17
|
-
Requires-Dist: sentence-transformers>=2.2.0
|
18
|
-
Requires-Dist: qdrant-client>=1.7.0
|
15
|
+
Requires-Dist: sentence-transformers
|
19
16
|
Requires-Dist: transformers
|
17
|
+
Requires-Dist: pandas
|
18
|
+
Requires-Dist: pyarrow
|
19
|
+
Requires-Dist: qdrant-client>=1.7.0
|
20
|
+
Requires-Dist: python-dotenv
|
20
21
|
Provides-Extra: dev
|
21
22
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
22
23
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
@@ -33,11 +34,12 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
|
|
33
34
|
## Instalación
|
34
35
|
|
35
36
|
```bash
|
36
|
-
#
|
37
|
+
# Instalar con torch CPU (recomendado, evita descargar CUDA)
|
38
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
37
39
|
pip install embedding-flow
|
38
40
|
|
39
|
-
# O instalar
|
40
|
-
pip install
|
41
|
+
# O instalar todo junto
|
42
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install embedding-flow
|
41
43
|
```
|
42
44
|
|
43
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
|
-
#
|
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
|
12
|
-
pip install
|
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
|
+
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,11 +12,12 @@ 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:
|
16
|
-
Requires-Dist: pyarrow>=12.0.0
|
17
|
-
Requires-Dist: sentence-transformers>=2.2.0
|
18
|
-
Requires-Dist: qdrant-client>=1.7.0
|
15
|
+
Requires-Dist: sentence-transformers
|
19
16
|
Requires-Dist: transformers
|
17
|
+
Requires-Dist: pandas
|
18
|
+
Requires-Dist: pyarrow
|
19
|
+
Requires-Dist: qdrant-client>=1.7.0
|
20
|
+
Requires-Dist: python-dotenv
|
20
21
|
Provides-Extra: dev
|
21
22
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
22
23
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
@@ -33,11 +34,12 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
|
|
33
34
|
## Instalación
|
34
35
|
|
35
36
|
```bash
|
36
|
-
#
|
37
|
+
# Instalar con torch CPU (recomendado, evita descargar CUDA)
|
38
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu
|
37
39
|
pip install embedding-flow
|
38
40
|
|
39
|
-
# O instalar
|
40
|
-
pip install
|
41
|
+
# O instalar todo junto
|
42
|
+
pip install torch --index-url https://download.pytorch.org/whl/cpu && pip install embedding-flow
|
41
43
|
```
|
42
44
|
|
43
45
|
## Uso
|
@@ -4,17 +4,18 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "embedding-flow"
|
7
|
-
version = "0.1.
|
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
|
-
"
|
14
|
-
"pyarrow>=12.0.0",
|
15
|
-
"sentence-transformers>=2.2.0",
|
16
|
-
"qdrant-client>=1.7.0",
|
13
|
+
"sentence-transformers",
|
17
14
|
"transformers",
|
15
|
+
"pandas",
|
16
|
+
"pyarrow",
|
17
|
+
"qdrant-client>=1.7.0",
|
18
|
+
"python-dotenv",
|
18
19
|
]
|
19
20
|
classifiers = [
|
20
21
|
"Programming Language :: Python :: 3",
|
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
|
File without changes
|