mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 20:35:00 +00:00
fix: Update litellm_path to correctly locate JSON file
This commit is contained in:
parent
7bde345b83
commit
19a94e5f15
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ from pathlib import Path
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
script_dir = Path(__file__).parent.resolve()
|
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"
|
aider_path = script_dir / "../aider/resources/model-metadata.json"
|
||||||
|
|
||||||
if not litellm_path.exists():
|
if not litellm_path.exists():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue