Metadata-Version: 2.4
Name: stratarouter
Version: 0.2.5
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Rust
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: numpy>=1.21.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: sentence-transformers>=2.2.0 ; extra == 'all'
Requires-Dist: openai>=1.0.0 ; extra == 'all'
Requires-Dist: cohere>=4.0.0 ; extra == 'all'
Requires-Dist: langchain-core>=0.1.0 ; extra == 'all'
Requires-Dist: httpx>=0.24.0 ; extra == 'all'
Requires-Dist: httpx>=0.24.0 ; extra == 'cloud'
Requires-Dist: cohere>=4.0.0 ; extra == 'cohere'
Requires-Dist: pytest>=7.0.0 ; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0 ; extra == 'dev'
Requires-Dist: black>=23.0.0 ; extra == 'dev'
Requires-Dist: ruff>=0.1.0 ; extra == 'dev'
Requires-Dist: mypy>=1.0.0 ; extra == 'dev'
Requires-Dist: numpy>=1.21.0 ; extra == 'dev'
Requires-Dist: sentence-transformers>=2.2.0 ; extra == 'huggingface'
Requires-Dist: langchain-core>=0.1.0 ; extra == 'langchain'
Requires-Dist: openai>=1.0.0 ; extra == 'openai'
Provides-Extra: all
Provides-Extra: cloud
Provides-Extra: cohere
Provides-Extra: dev
Provides-Extra: huggingface
Provides-Extra: langchain
Provides-Extra: openai
License-File: LICENSE
Summary: High-performance semantic routing backed by a Rust core
Keywords: routing,semantic,embeddings,llm,ai,nlp,rust
Home-Page: https://stratarouter.com
Author-email: StrataRouter Contributors <hello@stratarouter.dev>
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Bug Tracker, https://github.com/ai-deeptech/stratarouter/issues
Project-URL: Changelog, https://github.com/ai-deeptech/stratarouter/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/ai-deeptech/stratarouter#readme
Project-URL: Homepage, https://github.com/ai-deeptech/stratarouter
Project-URL: Repository, https://github.com/ai-deeptech/stratarouter

"""
# StrataRouter Python Package

High-performance semantic routing for Python.

## Installation

```bash
pip install stratarouter
```

## Quick Start

```python
from stratarouter import Router, Route

router = Router()
router.add(Route(id="billing", keywords=["invoice", "payment"]))
router.build_index()
result = router.route("Where's my invoice?")
print(result.route_id)  # "billing"
```

## Documentation

Full documentation: https://docs.stratarouter.io

## License

MIT License - See LICENSE file for details.
"""

