From 19a94e5f15e7f438bcdfe3e826b1fbbd03d10203 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 20 Apr 2025 10:59:59 -0700 Subject: [PATCH] fix: Update litellm_path to correctly locate JSON file --- scripts/clean_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/clean_metadata.py b/scripts/clean_metadata.py index 29328c9e8..3f57bbfef 100644 --- a/scripts/clean_metadata.py +++ b/scripts/clean_metadata.py @@ -6,7 +6,7 @@ from pathlib import Path def main(): script_dir = Path(__file__).parent.resolve() - litellm_path = script_dir / "../litellm/model_prices_and_context_window.json" + litellm_path = script_dir / "../../litellm/model_prices_and_context_window.json" aider_path = script_dir / "../aider/resources/model-metadata.json" if not litellm_path.exists():