vector-inspector 0.2.1__py3-none-any.whl → 0.2.3__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.
@@ -282,7 +282,7 @@ class MainWindow(QMainWindow):
282
282
  "<h2>Vector Inspector 0.1.0</h2>"
283
283
  "<p>A comprehensive desktop application for visualizing, "
284
284
  "querying, and managing vector database data.</p>"
285
- '<p><a href="https://github.com/anthonypdawson/vector-viewer" style="color:#2980b9;">GitHub Project Page</a></p>'
285
+ '<p><a href="https://github.com/anthonypdawson/vector-inspector" style="color:#2980b9;">GitHub Project Page</a></p>'
286
286
  "<hr />"
287
287
  "<p>Built with PySide6 and ChromaDB</p>"
288
288
  )
@@ -1,9 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vector-inspector
3
- Version: 0.2.1
3
+ Version: 0.2.3
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
7
+ Project-URL: Homepage, https://vector-inspector.divinedevops.com
8
+ Project-URL: Source, https://github.com/anthony-dawson/vector-inspector
9
+ Project-URL: Issues, https://github.com/anthony-dawson/vector-inspector/issues
10
+ Project-URL: Documentation, https://github.com/anthony-dawson/vector-inspector#readme
7
11
  Requires-Python: ==3.12.*
8
12
  Requires-Dist: chromadb>=0.4.22
9
13
  Requires-Dist: qdrant-client>=1.7.0
@@ -17,21 +21,26 @@ Requires-Dist: plotly>=5.18.0
17
21
  Requires-Dist: sentence-transformers>=2.2.0
18
22
  Requires-Dist: fastembed>=0.7.4
19
23
  Requires-Dist: pyarrow>=14.0.0
24
+ Requires-Dist: pinecone>=8.0.0
20
25
  Description-Content-Type: text/markdown
21
26
 
27
+
22
28
  # Vector Inspector
29
+ ![PyPI](https://img.shields.io/pypi/v/vector-inspector)
30
+ [![PyPI Downloads](https://static.pepy.tech/personalized-badge/vector-inspector?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads)](https://pepy.tech/projects/vector-inspector)
23
31
 
24
32
 
25
33
  A comprehensive desktop application for visualizing, querying, and managing vector database data. Similar to SQL database viewers, Vector Inspector provides an intuitive GUI for exploring vector embeddings, metadata, and performing similarity searches across multiple vector database providers.
26
34
 
27
35
  ## Overview
28
36
 
37
+ Vector Inspector bridges the gap between vector databases and user-friendly data exploration tools. While vector databases are powerful for semantic search and AI applications, they often lack the intuitive inspection and management tools that traditional SQL databases have. This project aims to provide that missing layer.
38
+
29
39
  ## Table of Contents
30
40
 
31
41
  - [Overview](#overview)
32
42
  - [Key Features](#key-features)
33
43
  - [Architecture](#architecture)
34
- - [Application Structure](#application-structure)
35
44
  - [Use Cases](#use-cases)
36
45
  - [Feature Access](#feature-access)
37
46
  - [Roadmap](#roadmap)
@@ -42,8 +51,6 @@ A comprehensive desktop application for visualizing, querying, and managing vect
42
51
  - [License](#license)
43
52
  - [Acknowledgments](#acknowledgments)
44
53
 
45
- Vector Inspector bridges the gap between vector databases and user-friendly data exploration tools. While vector databases are powerful for semantic search and AI applications, they often lack the intuitive inspection and management tools that traditional SQL databases have. This project aims to provide that missing layer.
46
-
47
54
  ## Key Features
48
55
 
49
56
  ### 1. **Multi-Provider Support**
@@ -134,9 +141,13 @@ For detailed architecture information, see [docs/architecture.md](docs/architect
134
141
 
135
142
  ## Feature Access
136
143
 
137
- Vector Inspector is available in both free (open source) and Pro versions. The free version includes all core features for ChromaDB and basic Qdrant support, while Pro adds advanced analytics and additional providers.
144
+ Vector Inspector follows a user-friendly monetization model:
138
145
 
139
- See [FEATURES.md](FEATURES.md) for a complete feature comparison.
146
+ - **All vector database providers are free** — Try the full app with any database
147
+ - **Core workflows remain free** — Connect, browse, search, visualize, and manage your data
148
+ - **Pro adds power tools** — Advanced analytics, enterprise formats, workflow automation, and collaboration
149
+
150
+ **Nothing currently in Free will ever move to Pro.** See [FEATURES.md](FEATURES.md) for a detailed comparison.
140
151
 
141
152
  ## Roadmap
142
153
 
@@ -144,6 +155,7 @@ See [FEATURES.md](FEATURES.md) for a complete feature comparison.
144
155
 
145
156
  See [ROADMAP.md](ROADMAP.md) for the complete development roadmap and planned features.
146
157
 
158
+
147
159
  ## Installation
148
160
 
149
161
  ### From PyPI (Recommended)
@@ -153,12 +165,28 @@ pip install vector-inspector
153
165
  vector-inspector
154
166
  ```
155
167
 
168
+ ### From a Downloaded Wheel or Tarball (e.g., GitHub Release)
169
+
170
+ Download the `.whl` or `.tar.gz` file from the [GitHub Releases](https://github.com/anthonypdawson/vector-inspector/releases) page, then install with:
171
+
172
+ ```bash
173
+ pip install <your-filename.whl>
174
+ # or
175
+ pip install <your-filename.tar.gz>
176
+ ```
177
+
178
+ After installation, run the application with:
179
+
180
+ ```bash
181
+ vector-inspector
182
+ ```
183
+
156
184
  ### From Source
157
185
 
158
186
  ```bash
159
187
  # Clone the repository
160
- git clone https://github.com/anthonypdawson/vector-viewer.git
161
- cd vector-viewer
188
+ git clone https://github.com/anthonypdawson/vector-inspector.git
189
+ cd vector-inspector
162
190
 
163
191
  # Install dependencies using PDM
164
192
  pdm install
@@ -231,15 +259,8 @@ This project draws inspiration from:
231
259
 
232
260
  ---
233
261
 
234
- **Status**: ✅ Phase 2 Complete - Advanced Features Implemented!
235
262
 
236
- **What's New in Phase 2:**
237
- - 🔍 Advanced metadata filtering with customizable filter rules (AND/OR logic)
238
- - ✏️ Double-click to edit items directly in the data browser
239
- - 📥 Import data from CSV, JSON, and Parquet files
240
- - 📤 Export filtered data to CSV, JSON, and Parquet formats
241
- - 💾 Comprehensive backup and restore system for collections
242
- - 🔄 Metadata filters integrated with search for powerful queries
263
+ See [CHANGELOG.md](CHANGELOG.md) for the latest status and what's new in each release.
243
264
 
244
265
  See [GETTING_STARTED.md](GETTING_STARTED.md) for usage instructions and [IMPLEMENTATION_SUMMARY.md](IMPLEMENTATION_SUMMARY.md) for technical details.
245
266
 
@@ -1,6 +1,6 @@
1
- vector_inspector-0.2.1.dist-info/METADATA,sha256=QqrDwhDHEWhC5-t2yWbplCVCxYc7Xk_qFwVrZMDKeSw,8659
2
- vector_inspector-0.2.1.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
3
- vector_inspector-0.2.1.dist-info/entry_points.txt,sha256=u96envMI2NFImZUJDFutiiWl7ZoHrrev9joAgtyvTxo,80
1
+ vector_inspector-0.2.3.dist-info/METADATA,sha256=l_D2Z-QyHHaxIhHUWO-iIocIlkLWbB8IiYytYU86l_k,9384
2
+ vector_inspector-0.2.3.dist-info/WHEEL,sha256=tsUv_t7BDeJeRHaSrczbGeuK-TtDpGsWi_JfpzD255I,90
3
+ vector_inspector-0.2.3.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/core/__init__.py,sha256=hjOqiJwF1P0rXjiOKhK4qDTvBY7G3m4kq8taH-gKrFM,57
@@ -22,11 +22,11 @@ vector_inspector/ui/components/backup_restore_dialog.py,sha256=CrZ2u8vXzggv3aBkY
22
22
  vector_inspector/ui/components/filter_builder.py,sha256=NSR_hp-rzUZVAca6dIJhTxZA3igOKFM1g-YXiYPhFos,13360
23
23
  vector_inspector/ui/components/item_dialog.py,sha256=VMwehEjQ6xrdxWygR9J-hHsLfzOVb_E3ePUGYO_c7XA,3951
24
24
  vector_inspector/ui/components/loading_dialog.py,sha256=YEKYGU-R-Zz4CjXSArJtkNxgTy4O9hI5Bbt6qlIzD8U,1018
25
- vector_inspector/ui/main_window.py,sha256=7_SOn7DaO9ZzzNXNQ5G3C8TcOVFYWZwK2zPahiv1COc,11351
25
+ vector_inspector/ui/main_window.py,sha256=zHL7V_0pxyL_Bw2421GOJ-2X1jNphQdhwTX9s8m3WPY,11354
26
26
  vector_inspector/ui/views/__init__.py,sha256=FeMtVzSbVFBMjdwLQSQqD0FRW4ieJ4ZKXtTBci2e_bw,30
27
27
  vector_inspector/ui/views/collection_browser.py,sha256=oG9_YGPoVuMs-f_zSd4EcITmEU9caxvwuubsFUrNf-c,3991
28
28
  vector_inspector/ui/views/connection_view.py,sha256=5TL28JMfb0W42eUDDNbj6bIaj6m7WpalpdUEcd37qmM,16903
29
29
  vector_inspector/ui/views/metadata_view.py,sha256=1prg0ZFkPbA2PxUzr5Z-WlW8nTXa-_WSNlLIU-RTLME,21286
30
30
  vector_inspector/ui/views/search_view.py,sha256=p6vt2heSpEbiRge46VSedTZjg7i3-AWdS0f96JXzlEU,10527
31
31
  vector_inspector/ui/views/visualization_view.py,sha256=389lKOOqz4_7I-pUIIu86ZbA2ttq8Tuwflbb5W-W4g0,9038
32
- vector_inspector-0.2.1.dist-info/RECORD,,
32
+ vector_inspector-0.2.3.dist-info/RECORD,,