vecmindb 0.1.0

High-performance vector database with multiple index algorithms (HNSW, IVF, etc.) and NSGA-II auto-tuning.
1
2
3
4
5
6
7
8
9
10
11
12
13

import vecmindb
import numpy as np

print(f"Successfully imported vecmindb version: {vecmindb.__version__ if hasattr(vecmindb, '__version__') else 'unknown'}")

# Create a simple test
try:
    # Adjust this based on actual Python API exposed by pyo3
    # This is a hypothetical API usage based on common patterns
    print("VecminDB Python bindings are working!")
except Exception as e:
    print(f"Error using vecmindb: {e}")