Metadata-Version: 2.4
Name: hanzo-tools-vector
Version: 0.2.2
Summary: Vector/embedding tools for Hanzo AI - indexing, search, RAG
Author-email: Hanzo Industries Inc <dev@hanzo.ai>
License: MIT
Keywords: hanzo,tools,vector,embeddings,rag,mcp,ai
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: hanzo-tools>=0.3.4
Requires-Dist: mcp>=1.25.0
Requires-Dist: fastmcp>=2.14.1
Requires-Dist: pydantic>=2.12.5
Requires-Dist: httpx>=0.25.0

# hanzo-tools-vector

Vector search and embedding tools for Hanzo AI MCP.

## Tools

- `index` - Project indexing for semantic search
- `vector_index` - Create and manage vector embeddings
- `vector_search` - Semantic search across indexed content

## Installation

```bash
pip install hanzo-tools-vector

# With embedding models
pip install hanzo-tools-vector[full]
```

## Features

- Semantic code search
- Document embedding and retrieval
- Project-aware indexing
- Multiple embedding model support

## Usage

```python
from hanzo_tools.vector import TOOLS, VECTOR_AVAILABLE, register_tools

if VECTOR_AVAILABLE:
    register_tools(mcp_server, permission_manager)
```

## Part of hanzo-tools

This package is part of the modular [hanzo-tools](../hanzo-tools) ecosystem.
