Metadata-Version: 2.5
Name: vectorsmith
Version: 0.1.0
Summary: YAML tools for agents: load_tools in-process, or vectorsmith serve as MCP
Project-URL: Homepage, https://github.com/kjgpta/vectorsmith
Project-URL: Documentation, https://kjgpta.github.io/vectorsmith/
Project-URL: Issues, https://github.com/kjgpta/vectorsmith/issues
Project-URL: Changelog, https://github.com/kjgpta/vectorsmith/blob/main/CHANGELOG.md
Author: VectorSmith contributors
License: Apache-2.0
Keywords: agents,claude,codex,langchain,langgraph,mcp
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: argon2-cffi
Requires-Dist: httpx
Requires-Dist: jsonschema
Requires-Dist: lark
Requires-Dist: mcp>=1.2
Requires-Dist: polars>=1.0
Requires-Dist: pydantic>=2.7
Requires-Dist: pyyaml
Requires-Dist: ruamel-yaml
Requires-Dist: starlette
Requires-Dist: typer
Requires-Dist: uvicorn
Requires-Dist: watchfiles
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.40; extra == 'anthropic'
Provides-Extra: chroma
Requires-Dist: chromadb>=0.5; extra == 'chroma'
Requires-Dist: fastembed>=0.3; extra == 'chroma'
Provides-Extra: langchain
Requires-Dist: langchain-core>=0.3; extra == 'langchain'
Provides-Extra: langgraph
Requires-Dist: langchain-core>=0.3; extra == 'langgraph'
Requires-Dist: langgraph>=0.2; extra == 'langgraph'
Provides-Extra: milvus
Requires-Dist: fastembed>=0.3; extra == 'milvus'
Requires-Dist: pymilvus>=2.4; extra == 'milvus'
Provides-Extra: openai-agents
Requires-Dist: openai-agents>=0.2; extra == 'openai-agents'
Provides-Extra: pgvector
Requires-Dist: fastembed>=0.3; extra == 'pgvector'
Requires-Dist: psycopg[binary,pool]>=3.2; extra == 'pgvector'
Provides-Extra: pinecone
Requires-Dist: fastembed>=0.3; extra == 'pinecone'
Requires-Dist: pinecone>=5.0; extra == 'pinecone'
Provides-Extra: qdrant
Requires-Dist: fastembed>=0.3; extra == 'qdrant'
Requires-Dist: qdrant-client>=1.9; extra == 'qdrant'
Provides-Extra: weaviate
Requires-Dist: fastembed>=0.3; extra == 'weaviate'
Requires-Dist: weaviate-client>=4.0; extra == 'weaviate'
Description-Content-Type: text/markdown

# vectorsmith

Install this package. Write a `tools.yaml`. Use `load_tools` in Python or `vectorsmith serve` as an MCP server.

```bash
pip install "vectorsmith[qdrant,langchain]"
```

```python
from vectorsmith import load_tools

tools = load_tools("tools.yaml")
```

See the repository `README.md` and `docs/` for integrations and the YAML reference.
