Metadata-Version: 2.4
Name: solvec
Version: 0.1.0a2
Summary: Decentralized vector database for AI agents. Rust HNSW + Solana on-chain provenance.
Project-URL: Homepage, https://veclabs.xyz
Project-URL: Repository, https://github.com/veclabs/veclabs
Project-URL: Documentation, https://veclabs.xyz/docs
Author-email: VecLabs <dev@veclabs.xyz>
License: MIT
Keywords: ai-agents,embeddings,hnsw,solana,vector-database
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: typing-extensions>=4.0.0
Description-Content-Type: text/markdown

# SolVec Python SDK

Decentralized vector database for AI agents. Rust HNSW + Solana on-chain provenance.

## Installation

```bash
pip install solvec
```

## Quick Start

```python
from solvec import SolVec

sv = SolVec(network="devnet")
col = sv.collection("agent-memory", dimensions=1536)

col.upsert([
    {"id": "mem_001", "values": [...], "metadata": {"text": "User is Alex"}}
])

results = col.query(vector=[...], top_k=5)
```
