Metadata-Version: 2.4
Name: openmodelmap
Version: 1.0.0
Summary: OpenModelMap Python SDK — query 2,484 AI models with one line of code
License: MIT
Project-URL: Homepage, https://openmodelmap.com/api
Project-URL: Documentation, https://openmodelmap.com/api
Project-URL: Repository, https://github.com/duola15/open-source-model-nav
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: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# OpenModelMap Python SDK

Zero-config API client for querying 2,484 open-source AI models.

```python
from openmodelmap import OpenModelMap

omm = OpenModelMap()  # api_key optional for free tier

# Search models
models = omm.models(gpu="rtx4070", task="coding", limit=5)

# Get GPU recommendations
gpu_models = omm.gpu("rtx4070", task="coding")

# Get single model
model = omm.model("deepseek-ai/DeepSeek-V3")

# Get rankings
rankings = omm.rankings("frontier-models")
```

## Install

```bash
pip install openmodelmap
```

## Pricing

| Tier | Rate Limit | Price |
|------|-----------|-------|
| Free | 500 req/day | $0 |
| Pro | 10,000 req/day | $29/month |
| Ultra | 50,000 req/day | $79/month |

## Docs

https://openmodelmap.com/api
