cmem-plugin-pgvector 0.9.0__tar.gz → 0.10.0__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.
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/PKG-INFO +3 -5
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/pyproject.toml +11 -12
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/LICENSE +0 -0
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/README-public.md +0 -0
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/__init__.py +0 -0
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/commons.py +0 -0
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/postgresql.svg +0 -0
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/search_task.py +0 -0
- {cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/store_task.py +0 -0
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cmem-plugin-pgvector
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: Store and search for embedding vectors in a Postgres vector store.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Keywords: eccenca Corporate Memory,plugin
|
|
8
8
|
Author: eccenca GmbH
|
|
9
9
|
Author-email: cmempy-developer@eccenca.com
|
|
10
|
-
Maintainer: Edgard Marx
|
|
11
|
-
Maintainer-email: edgard.marx@eccenca.com
|
|
12
10
|
Requires-Python: >=3.13,<4.0
|
|
13
11
|
Classifier: Development Status :: 4 - Beta
|
|
14
12
|
Classifier: Environment :: Plugins
|
|
@@ -17,8 +15,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
17
15
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.14
|
|
19
17
|
Requires-Dist: cmem-plugin-base (>=4.15.0,<5.0.0)
|
|
20
|
-
Requires-Dist: langchain-core (>=
|
|
21
|
-
Requires-Dist: langchain-postgres (>=0.0.
|
|
18
|
+
Requires-Dist: langchain-core (>=1.2.22,<2.0.0)
|
|
19
|
+
Requires-Dist: langchain-postgres (>=0.0.17,<0.0.18)
|
|
22
20
|
Requires-Dist: psycopg[binary] (>=3.2.9,<4.0.0)
|
|
23
21
|
Description-Content-Type: text/markdown
|
|
24
22
|
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "cmem-plugin-pgvector"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.10.0"
|
|
4
4
|
license = "Apache-2.0"
|
|
5
5
|
description = "Store and search for embedding vectors in a Postgres vector store."
|
|
6
6
|
authors = ["eccenca GmbH <cmempy-developer@eccenca.com>"]
|
|
7
|
-
maintainers = ["Edgard Marx <edgard.marx@eccenca.com>"]
|
|
8
7
|
classifiers = [
|
|
9
8
|
"Development Status :: 4 - Beta","Environment :: Plugins",
|
|
10
9
|
]
|
|
@@ -16,9 +15,9 @@ keywords = [
|
|
|
16
15
|
|
|
17
16
|
[tool.poetry.dependencies]# if you need to change python version here, change it also in .python-version
|
|
18
17
|
python = "^3.13"
|
|
19
|
-
langchain-postgres = "^0.0.
|
|
18
|
+
langchain-postgres = "^0.0.17"
|
|
20
19
|
psycopg = {extras = ["binary"], version = "^3.2.9"}
|
|
21
|
-
langchain-core = "^
|
|
20
|
+
langchain-core = "^1.2.22"
|
|
22
21
|
|
|
23
22
|
[tool.poetry.dependencies.cmem-plugin-base]
|
|
24
23
|
version = "^4.15.0"
|
|
@@ -28,17 +27,17 @@ allow-prereleases = false
|
|
|
28
27
|
version = ">=24.2.0"
|
|
29
28
|
|
|
30
29
|
[tool.poetry.group.dev.dependencies]
|
|
31
|
-
deptry = "^0.
|
|
32
|
-
genbadge = {extras = ["coverage"], version = "^1.1.
|
|
33
|
-
mypy = "^1.
|
|
34
|
-
pip = "^
|
|
35
|
-
pytest = "^
|
|
30
|
+
deptry = "^0.24.0"
|
|
31
|
+
genbadge = {extras = ["coverage"], version = "^1.1.3"}
|
|
32
|
+
mypy = "^1.19.1"
|
|
33
|
+
pip = "^26"
|
|
34
|
+
pytest = "^9.0.2"
|
|
36
35
|
pytest-cov = "^7.0.0"
|
|
37
36
|
pytest-dotenv = "^0.5.2"
|
|
38
|
-
pytest-html = "^4.
|
|
37
|
+
pytest-html = "^4.2.0"
|
|
39
38
|
pytest-memray = { version = "^1.8.0", markers = "platform_system != 'Windows'" }
|
|
40
|
-
ruff = "^0.
|
|
41
|
-
|
|
39
|
+
ruff = "^0.15.0"
|
|
40
|
+
trivy-py-ecc = "^0.69"
|
|
42
41
|
aiohttp = "^3.10.11"
|
|
43
42
|
testcontainers = "^4.12.0"
|
|
44
43
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/postgresql.svg
RENAMED
|
File without changes
|
{cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/search_task.py
RENAMED
|
File without changes
|
{cmem_plugin_pgvector-0.9.0 → cmem_plugin_pgvector-0.10.0}/cmem_plugin_pgvector/store_task.py
RENAMED
|
File without changes
|