[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "firstpass"
description = "Drop-in, Anthropic-compatible LLM proxy that routes each request to the cheapest model that provably passes a quality gate, escalates on failure, and records a tamper-evident audit trace."
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = ["llm", "proxy", "routing", "anthropic", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Rust",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://dshakes.github.io/firstpass"
Repository = "https://github.com/dshakes/firstpass"
[tool.maturin]
bindings = "bin"
manifest-path = "Cargo.toml"