From c91b44adebf423b2bd4505fa4dd22746a1bed457 Mon Sep 17 00:00:00 2001 From: Chesars Date: Sun, 22 Mar 2026 00:14:29 -0300 Subject: [PATCH] fix: ensure gitignored model_prices JSON is included in wheel/sdist --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 143054572e..f3c3d1cfbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,9 @@ packages = [ { include = "litellm" }, { include = "litellm/py.typed"}, ] +include = [ + { path = "litellm/model_prices_and_context_window.json", format = ["wheel", "sdist"] } +] [tool.poetry.urls] homepage = "https://litellm.ai"