From e3ebb1e24bb2065a9904602d4879e60afaeaba39 Mon Sep 17 00:00:00 2001 From: Jason-Vaughan <95194903+Jason-Vaughan@users.noreply.github.com> Date: Thu, 18 Jun 2026 15:22:28 -0700 Subject: [PATCH] Drop cost-tiered from pyproject keywords (#42) Follow-up to #50: the same purged framing leaked into the keywords list. Swap the cost-tiered keyword for local-llm and fold it into the existing CHANGELOG entry. --- CHANGELOG.md | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f21c53..68990ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed -- **`pyproject.toml` package description carried the purged "cost-tiered / flat-rate subscriptions" - framing** that the public-rollout neutralization scrubbed everywhere else (#42). The package - metadata — rendered on the repo and any package index — now matches the neutral positioning used in - the README and `ARCHITECTURE.md`: *"A local-first, config-driven LLM router across OpenAI-compatible - backends you own."* +- **`pyproject.toml` package metadata carried the purged "cost-tiered / flat-rate subscriptions" + framing** that the public-rollout neutralization scrubbed everywhere else (#42). Both the `description` + and the `cost-tiered` entry in `keywords` (→ `local-llm`) — the metadata rendered on the repo and any + package index — now match the neutral positioning used in the README and `ARCHITECTURE.md`: + *"A local-first, config-driven LLM router across OpenAI-compatible backends you own."* ## [0.14.0] - 2026-06-18 diff --git a/pyproject.toml b/pyproject.toml index 4064528..161deda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [{ name = "Jason Vaughan" }] -keywords = ["llm", "router", "ollama", "openai-compatible", "litellm", "cost-tiered"] +keywords = ["llm", "router", "ollama", "openai-compatible", "litellm", "local-llm"] dependencies = [ "httpx >= 0.27",