Intelligent LLM Infrastructure with Smart Model Selection
Project description
Nordlys
Smart LLM model routing with a checkpoint-based runtime.
Install
uv pip install -e .
Quick Start
from nordlys import Dataset, Trainer, Router, ModelConfig
# 1. Define models
models = [
ModelConfig(id="openai/gpt-4", cost_input=30.0, cost_output=60.0),
ModelConfig(id="openai/gpt-4o-mini", cost_input=0.15, cost_output=0.6),
]
# 2. Build training dataset with binary targets per model
dataset = Dataset.from_list([
{
"id": "1",
"input": "Design a database schema for this app",
"targets": {"openai/gpt-4": 1, "openai/gpt-4o-mini": 0},
},
{
"id": "2",
"input": "Summarize this short changelog",
"targets": {"openai/gpt-4": 0, "openai/gpt-4o-mini": 1},
},
])
# 3. Train checkpoint, then create runtime router
checkpoint = Trainer(models=models).fit(dataset)
router = Router(checkpoint=checkpoint)
result = router.route("Implement this parser")
print(result.model_id)
How It Works
- Clusters similar prompts together
- Learns which model performs best per cluster
- Routes new prompts to the optimal model
Runtime API
router.route(prompt, models=None)routes one prompt.router.route_batch(prompts, models=None)routes a list of prompts.- Optional
modelsfilter restricts candidates to specific model IDs.
Checkpoint I/O
checkpoint.to_json_file("router.json")
loaded = Router(checkpoint="router.json")
Links
Citation
This project is inspired by the Universal Router approach:
@article{universalrouter2025,
title={Universal Router: Foundation Model Routing for Arbitrary Tasks},
author={},
journal={arXiv preprint arXiv:2502.08773},
year={2025},
url={https://arxiv.org/pdf/2502.08773}
}
Paper: Universal Router: Foundation Model Routing for Arbitrary Tasks
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nordlys-0.3.0.tar.gz
(25.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
nordlys-0.3.0-py3-none-any.whl
(36.8 kB
view details)
File details
Details for the file nordlys-0.3.0.tar.gz.
File metadata
- Download URL: nordlys-0.3.0.tar.gz
- Upload date:
- Size: 25.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7febc9a96bffb670570fc440fdfe1b997ac7c4395bd3b3deebfe6ab06c359f0a
|
|
| MD5 |
4a64ac6f6d1fdb50bac2d78781675cc5
|
|
| BLAKE2b-256 |
72a49ef15d746026736e0e0cb58c5923f049255dff7d8dfe6fc117f6c66799de
|
File details
Details for the file nordlys-0.3.0-py3-none-any.whl.
File metadata
- Download URL: nordlys-0.3.0-py3-none-any.whl
- Upload date:
- Size: 36.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2632671e3fc300b71c41a9a26f33d353f9429dfebcb8b8a89fd80f07cd210334
|
|
| MD5 |
872cf241a7ca7d05a1f12e22ae6cb00b
|
|
| BLAKE2b-256 |
544a12ec450fe474d67f1931642c7d2c4bd103876646d801963dd8704b466598
|