vector-inspector 0.3.4__py3-none-any.whl → 0.3.6__py3-none-any.whl
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.
- vector_inspector/core/connections/base_connection.py +86 -1
- vector_inspector/core/connections/chroma_connection.py +23 -3
- vector_inspector/core/connections/pgvector_connection.py +1100 -0
- vector_inspector/core/connections/pinecone_connection.py +24 -4
- vector_inspector/core/connections/qdrant_connection.py +224 -189
- vector_inspector/core/embedding_providers/provider_factory.py +33 -38
- vector_inspector/core/embedding_utils.py +2 -2
- vector_inspector/services/backup_restore_service.py +41 -33
- vector_inspector/ui/components/connection_manager_panel.py +96 -77
- vector_inspector/ui/components/profile_manager_panel.py +315 -121
- vector_inspector/ui/dialogs/embedding_config_dialog.py +79 -58
- vector_inspector/ui/main_window.py +22 -0
- vector_inspector/ui/views/connection_view.py +215 -116
- vector_inspector/ui/views/info_panel.py +6 -6
- vector_inspector/ui/views/metadata_view.py +466 -187
- {vector_inspector-0.3.4.dist-info → vector_inspector-0.3.6.dist-info}/METADATA +7 -6
- {vector_inspector-0.3.4.dist-info → vector_inspector-0.3.6.dist-info}/RECORD +19 -18
- {vector_inspector-0.3.4.dist-info → vector_inspector-0.3.6.dist-info}/WHEEL +0 -0
- {vector_inspector-0.3.4.dist-info → vector_inspector-0.3.6.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vector-inspector
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: A comprehensive desktop application for visualizing, querying, and managing vector database data
|
|
5
5
|
Author-Email: Anthony Dawson <anthonypdawson+github@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -26,15 +26,16 @@ Requires-Dist: keyring>=25.7.0
|
|
|
26
26
|
Requires-Dist: hf-xet>=1.2.0
|
|
27
27
|
Requires-Dist: pymilvus>=2.6.6
|
|
28
28
|
Requires-Dist: lancedb>=0.27.0
|
|
29
|
+
Requires-Dist: psycopg2>=2.9.11
|
|
30
|
+
Requires-Dist: pgvector>=0.4.2
|
|
29
31
|
Description-Content-Type: text/markdown
|
|
30
32
|
|
|
31
|
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
|
|
33
|
+
# Latest updates
|
|
34
|
+
- Added Postgres (pgvector extension) support as a new vector database connection option.
|
|
35
|
+
- Fixed issue with embedding regeneration on add/edit
|
|
36
|
+
- Added option for editing items without regenerating embeddings
|
|
35
37
|
---
|
|
36
38
|
|
|
37
|
-
|
|
38
39
|
# Vector Inspector
|
|
39
40
|
|
|
40
41
|
> **Disclaimer:** This tool is currently under active development and is **not production ready**. Not all features have been thoroughly tested and code is released frequently. Use with caution in critical or production environments.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
vector_inspector-0.3.
|
|
2
|
-
vector_inspector-0.3.
|
|
3
|
-
vector_inspector-0.3.
|
|
1
|
+
vector_inspector-0.3.6.dist-info/METADATA,sha256=p7H27JQIdMv3bNqDlU98WDzCVdWkNJTirylQTbGW8DQ,10587
|
|
2
|
+
vector_inspector-0.3.6.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
|
|
3
|
+
vector_inspector-0.3.6.dist-info/entry_points.txt,sha256=u96envMI2NFImZUJDFutiiWl7ZoHrrev9joAgtyvTxo,80
|
|
4
4
|
vector_inspector/__init__.py,sha256=Q8XbXn98o0eliQWPePhy-aGUz2KNnVg7bQq-sBPl7zQ,119
|
|
5
5
|
vector_inspector/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
|
6
6
|
vector_inspector/config/__init__.py,sha256=vHkVsXSUdInsfzWSOLPZzaaELa3SGenAgfpY5EYbsYA,95
|
|
@@ -9,10 +9,11 @@ vector_inspector/core/__init__.py,sha256=hjOqiJwF1P0rXjiOKhK4qDTvBY7G3m4kq8taH-g
|
|
|
9
9
|
vector_inspector/core/cache_manager.py,sha256=cHdbIYR-eS9vLLTqvq4Xejyi5Z7Fm9DqMhb_PMZjnjY,5695
|
|
10
10
|
vector_inspector/core/connection_manager.py,sha256=xNmgSXqJcMC-iaOY33-Xnfxq4QjUN4CuwppPjzhn3DY,9958
|
|
11
11
|
vector_inspector/core/connections/__init__.py,sha256=lDZ-Qv-CbBvVcSlT8K2824zojovEIKhykHVSLARHZWs,345
|
|
12
|
-
vector_inspector/core/connections/base_connection.py,sha256=
|
|
13
|
-
vector_inspector/core/connections/chroma_connection.py,sha256
|
|
14
|
-
vector_inspector/core/connections/
|
|
15
|
-
vector_inspector/core/connections/
|
|
12
|
+
vector_inspector/core/connections/base_connection.py,sha256=jDA1cEeNbTghqcCZYoLRpRPXIUteU5mSdpKcjvr4JQI,12236
|
|
13
|
+
vector_inspector/core/connections/chroma_connection.py,sha256=YE5kzW5poGqQqEvwVWx_E9_E3iPag8y6uGFSG0Mv9jY,20799
|
|
14
|
+
vector_inspector/core/connections/pgvector_connection.py,sha256=rcx567u5vQxQv-v_lEoi34hmfHpoM7f3UTelatzSRCw,43688
|
|
15
|
+
vector_inspector/core/connections/pinecone_connection.py,sha256=TbvPmbMygkqssb7w4HGc-h_PxI-KimIf1OL9bQ_fyLk,26804
|
|
16
|
+
vector_inspector/core/connections/qdrant_connection.py,sha256=67SxKiHH3m3jxGIyHt7E6ZduNiQ93ROKLsbfag_h7-I,31478
|
|
16
17
|
vector_inspector/core/connections/qdrant_helpers/__init__.py,sha256=u2YNjiW4sbNtqhTNOQr4hmOFqirlNlllsyBK2gWs9eU,262
|
|
17
18
|
vector_inspector/core/connections/qdrant_helpers/qdrant_embedding_resolver.py,sha256=9lQrVnjIDH2YyMMZwHdAtcSeWhNwUDrmMkFik3xWvGU,1547
|
|
18
19
|
vector_inspector/core/connections/qdrant_helpers/qdrant_filter_builder.py,sha256=WebqoWXuejaRUhpNTrEqf2JPG3BRQGhkz1HG82jBqLc,2514
|
|
@@ -20,15 +21,15 @@ vector_inspector/core/connections/template_connection.py,sha256=oBlmb2rzorfVOKVk
|
|
|
20
21
|
vector_inspector/core/embedding_providers/__init__.py,sha256=anorFsmLVrdK6bHP8YcPZF9DQTIJ9CEnrmJRnqOzWdc,440
|
|
21
22
|
vector_inspector/core/embedding_providers/base_provider.py,sha256=SqQFoE6lmmxCdns6ce36_x5Ucivvo5jSp8HEbzs7kLw,3933
|
|
22
23
|
vector_inspector/core/embedding_providers/clip_provider.py,sha256=vvFqoQZNB0PsFJxvDsoDf8-L_z61CrYROFT9IGt7nIE,9088
|
|
23
|
-
vector_inspector/core/embedding_providers/provider_factory.py,sha256=
|
|
24
|
+
vector_inspector/core/embedding_providers/provider_factory.py,sha256=yBIw5Fk6HvVJiioyc8jledh4TGcQ68fvKXUKo3oqi-Q,5742
|
|
24
25
|
vector_inspector/core/embedding_providers/sentence_transformer_provider.py,sha256=3YGUt7-6VrfbWKMuo3vDzx9SJXi2CjbpdOqdtE5CymM,6913
|
|
25
|
-
vector_inspector/core/embedding_utils.py,sha256=
|
|
26
|
+
vector_inspector/core/embedding_utils.py,sha256=UCnJllDS_YPqbOPVo_kxSCUxM64C5tmcH-fuU9IUifQ,5558
|
|
26
27
|
vector_inspector/core/logging.py,sha256=HQ6_OZgZmaS3OMFOTAqc0oRbZujqo1W0w8OU4viXP1g,845
|
|
27
28
|
vector_inspector/core/model_registry.py,sha256=fdofceD3iyNpECVC7djTEAaDYgHX_7JQ3ROh5A0plpY,6269
|
|
28
29
|
vector_inspector/main.py,sha256=iZeMPH94q6Ma92hWQLJ7on3rwxytUoS0V8n9MkAuEaY,595
|
|
29
30
|
vector_inspector/services/__init__.py,sha256=QLgH7oybjHuEYDFNiBgmJxvSpgAzHEuBEPXa3SKJb_I,67
|
|
30
31
|
vector_inspector/services/backup_helpers.py,sha256=aX1ONFegERq6dpoNM1eJrbyE1gWCV3SuUHMyPpnxrYM,2005
|
|
31
|
-
vector_inspector/services/backup_restore_service.py,sha256=
|
|
32
|
+
vector_inspector/services/backup_restore_service.py,sha256=8e64C4v8v-5Sw0upC4YaJWlLFkqAkspNt0k7yZjf_zk,7625
|
|
32
33
|
vector_inspector/services/credential_service.py,sha256=Ui4JzivQ5YCytQYsKdzpLs5nZcBtWiaQAOEzhZzpEeE,4089
|
|
33
34
|
vector_inspector/services/filter_service.py,sha256=xDrMxNWsYzRcR1n0Fd-yp6Fo-4aLbVIDkhj2GKmrw5o,2370
|
|
34
35
|
vector_inspector/services/import_export_service.py,sha256=4NOfAa6ZyvMyj5cDM4xu0Wqx0pgnK3cCNBGo3E6j4LE,10200
|
|
@@ -38,25 +39,25 @@ vector_inspector/services/visualization_service.py,sha256=9TOK1S1u1U74wLpF5NdDir
|
|
|
38
39
|
vector_inspector/ui/__init__.py,sha256=262ZiXO6Luk8vZnhCIoYxOtGiny0bXK-BTKjxUNBx-w,43
|
|
39
40
|
vector_inspector/ui/components/__init__.py,sha256=S-GWU1P820dJ6mHmeeBEy-CGF9fjpBeNf8vrbhRlFMk,30
|
|
40
41
|
vector_inspector/ui/components/backup_restore_dialog.py,sha256=CrZ2u8vXzggv3aBkYR4FulpY74oZWMLW5BHU4dMiWug,13073
|
|
41
|
-
vector_inspector/ui/components/connection_manager_panel.py,sha256=
|
|
42
|
+
vector_inspector/ui/components/connection_manager_panel.py,sha256=NZ-4QyHQsd-BHjPw2OxADgqIuTeytcKIMcfs_otBq8o,13050
|
|
42
43
|
vector_inspector/ui/components/filter_builder.py,sha256=NSR_hp-rzUZVAca6dIJhTxZA3igOKFM1g-YXiYPhFos,13360
|
|
43
44
|
vector_inspector/ui/components/item_dialog.py,sha256=VMwehEjQ6xrdxWygR9J-hHsLfzOVb_E3ePUGYO_c7XA,3951
|
|
44
45
|
vector_inspector/ui/components/loading_dialog.py,sha256=YEKYGU-R-Zz4CjXSArJtkNxgTy4O9hI5Bbt6qlIzD8U,1018
|
|
45
|
-
vector_inspector/ui/components/profile_manager_panel.py,sha256=
|
|
46
|
+
vector_inspector/ui/components/profile_manager_panel.py,sha256=U-Ea6KC97ltj7bYtG4h9Okb97SbfBAvH1SusbYHTn1o,27930
|
|
46
47
|
vector_inspector/ui/components/splash_window.py,sha256=lnCdva1fys0BQ1k_rEIQuWjQYXdhGZOf8zRweG2VdyM,1904
|
|
47
48
|
vector_inspector/ui/dialogs/__init__.py,sha256=xtT77L91PFfm3zHYRENHkWHJaKPm1htuUzRXAF53P8w,211
|
|
48
49
|
vector_inspector/ui/dialogs/cross_db_migration.py,sha256=BaUyic8l5Ywwql2hQyxVrCXHMjGtqerNAQHDYxcbQ54,15872
|
|
49
|
-
vector_inspector/ui/dialogs/embedding_config_dialog.py,sha256=
|
|
50
|
+
vector_inspector/ui/dialogs/embedding_config_dialog.py,sha256=1K5LBSBXp590BvKwtHx9qgPwGREsn1mJ8cjFGSZHnMA,12926
|
|
50
51
|
vector_inspector/ui/dialogs/provider_type_dialog.py,sha256=W_FAJuvicwBUJJ7PyvKow9lc8_a5pnE3RIAsh-DVndQ,6809
|
|
51
|
-
vector_inspector/ui/main_window.py,sha256=
|
|
52
|
+
vector_inspector/ui/main_window.py,sha256=UFWQt-yCTJhdS05bHX5bZfw_Bv4iAw1GavBc-mNaug4,27842
|
|
52
53
|
vector_inspector/ui/views/__init__.py,sha256=FeMtVzSbVFBMjdwLQSQqD0FRW4ieJ4ZKXtTBci2e_bw,30
|
|
53
54
|
vector_inspector/ui/views/collection_browser.py,sha256=oG9_YGPoVuMs-f_zSd4EcITmEU9caxvwuubsFUrNf-c,3991
|
|
54
|
-
vector_inspector/ui/views/connection_view.py,sha256=
|
|
55
|
-
vector_inspector/ui/views/info_panel.py,sha256=
|
|
56
|
-
vector_inspector/ui/views/metadata_view.py,sha256=
|
|
55
|
+
vector_inspector/ui/views/connection_view.py,sha256=3oGbClqwpVuUD3AIT8TuM-8heDvwMYw7RowHT3b1b8o,23749
|
|
56
|
+
vector_inspector/ui/views/info_panel.py,sha256=6LwOQFmRdFOcNZo_BcZ8DZ5a5GTdGLwO2IIHqYWNBdQ,26179
|
|
57
|
+
vector_inspector/ui/views/metadata_view.py,sha256=WV21oTB8MV1CvMCyQ1T5zEM1OFCoMPEXxV0L-r0d7VE,41771
|
|
57
58
|
vector_inspector/ui/views/search_view.py,sha256=LFGmbyVoB04bE6KX-Gt-WYmFrFfnMy808iHWiWVH-gU,12291
|
|
58
59
|
vector_inspector/ui/views/visualization_view.py,sha256=wgkSkOM-ShOHDj1GCUtKnqH87Io5vYtiOdubGV5rN44,11050
|
|
59
60
|
vector_inspector/utils/__init__.py,sha256=jhHBQC8C8bfhNlf6CAt07ejjStp_YAyleaYr2dm0Dk0,38
|
|
60
61
|
vector_inspector/utils/lazy_imports.py,sha256=2XZ3ZnwTvZ5vvrh36nJ_TUjwwkgjoAED6i6P9yctvt0,1211
|
|
61
62
|
vector_inspector/utils/version.py,sha256=wFhZKqblnXu2pyXkg9pCOsUhFNOgTxEKS5fQZxXDQYk,121
|
|
62
|
-
vector_inspector-0.3.
|
|
63
|
+
vector_inspector-0.3.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|