embedding-flow 0.1.1__tar.gz → 0.1.3__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.1 → embedding_flow-0.1.3}/PKG-INFO +15 -5
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/README.md +4 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow.egg-info/PKG-INFO +15 -5
- embedding_flow-0.1.3/embedding_flow.egg-info/requires.txt +17 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/pyproject.toml +13 -5
- embedding_flow-0.1.1/embedding_flow.egg-info/requires.txt +0 -9
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/LICENSE +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/__init__.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/contracts/__init__.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/contracts/contracts.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/load/__init__.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/load/load.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/main.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/transform/__init__.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow/transform/transform.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow.egg-info/SOURCES.txt +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow.egg-info/dependency_links.txt +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/embedding_flow.egg-info/top_level.txt +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/setup.cfg +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/setup.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/tests/test_load.py +0 -0
- {embedding_flow-0.1.1 → embedding_flow-0.1.3}/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.3
|
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,14 +12,20 @@ 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:
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
15
|
+
Requires-Dist: torch==2.8.0
|
16
|
+
Requires-Dist: sentence-transformers
|
17
|
+
Requires-Dist: transformers
|
18
|
+
Requires-Dist: pandas
|
19
|
+
Requires-Dist: pyarrow
|
19
20
|
Requires-Dist: qdrant-client>=1.7.0
|
21
|
+
Requires-Dist: python-dotenv
|
20
22
|
Provides-Extra: dev
|
21
23
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
22
24
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
25
|
+
Provides-Extra: cpu
|
26
|
+
Requires-Dist: torch>=2.0.0; extra == "cpu"
|
27
|
+
Provides-Extra: cuda
|
28
|
+
Requires-Dist: torch>=2.0.0; extra == "cuda"
|
23
29
|
Dynamic: license-file
|
24
30
|
|
25
31
|
# embedding-flow
|
@@ -29,7 +35,11 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
|
|
29
35
|
## Instalación
|
30
36
|
|
31
37
|
```bash
|
38
|
+
# Instalación básica (instala torch según tu sistema)
|
32
39
|
pip install embedding-flow
|
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
|
33
43
|
```
|
34
44
|
|
35
45
|
## 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.
|
3
|
+
Version: 0.1.3
|
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,14 +12,20 @@ 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:
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
15
|
+
Requires-Dist: torch==2.8.0
|
16
|
+
Requires-Dist: sentence-transformers
|
17
|
+
Requires-Dist: transformers
|
18
|
+
Requires-Dist: pandas
|
19
|
+
Requires-Dist: pyarrow
|
19
20
|
Requires-Dist: qdrant-client>=1.7.0
|
21
|
+
Requires-Dist: python-dotenv
|
20
22
|
Provides-Extra: dev
|
21
23
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
22
24
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
25
|
+
Provides-Extra: cpu
|
26
|
+
Requires-Dist: torch>=2.0.0; extra == "cpu"
|
27
|
+
Provides-Extra: cuda
|
28
|
+
Requires-Dist: torch>=2.0.0; extra == "cuda"
|
23
29
|
Dynamic: license-file
|
24
30
|
|
25
31
|
# embedding-flow
|
@@ -29,7 +35,11 @@ Biblioteca para transformar chunks de texto en embeddings de 768 dimensiones y c
|
|
29
35
|
## Instalación
|
30
36
|
|
31
37
|
```bash
|
38
|
+
# Instalación básica (instala torch según tu sistema)
|
32
39
|
pip install embedding-flow
|
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
|
33
43
|
```
|
34
44
|
|
35
45
|
## Uso
|
@@ -4,17 +4,19 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "embedding-flow"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.3"
|
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
|
-
"
|
15
|
-
"
|
16
|
-
"
|
13
|
+
"torch==2.8.0",
|
14
|
+
"sentence-transformers",
|
15
|
+
"transformers",
|
16
|
+
"pandas",
|
17
|
+
"pyarrow",
|
17
18
|
"qdrant-client>=1.7.0",
|
19
|
+
"python-dotenv",
|
18
20
|
]
|
19
21
|
classifiers = [
|
20
22
|
"Programming Language :: Python :: 3",
|
@@ -30,6 +32,12 @@ dev = [
|
|
30
32
|
"pytest>=7.0.0",
|
31
33
|
"pytest-cov>=4.0.0",
|
32
34
|
]
|
35
|
+
cpu = [
|
36
|
+
"torch>=2.0.0",
|
37
|
+
]
|
38
|
+
cuda = [
|
39
|
+
"torch>=2.0.0",
|
40
|
+
]
|
33
41
|
|
34
42
|
[tool.setuptools.packages.find]
|
35
43
|
include = ["embedding_flow*"]
|
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
|