mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
load .env in benchmark.py
This commit is contained in:
parent
dc7e61f3c9
commit
70b1c0c20c
1 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,7 @@ import lox
|
|||
import pandas as pd
|
||||
import prompts
|
||||
import typer
|
||||
from dotenv import load_dotenv
|
||||
from plots import plot_refactoring
|
||||
from rich.console import Console
|
||||
|
||||
|
@ -27,6 +28,8 @@ from aider.coders import Coder
|
|||
from aider.dump import dump # noqa: F401
|
||||
from aider.io import InputOutput
|
||||
|
||||
load_dotenv()
|
||||
|
||||
BENCHMARK_DNAME = Path(os.environ.get("AIDER_BENCHMARK_DIR", "tmp.benchmarks"))
|
||||
|
||||
EXERCISES_DIR_DEFAULT = "exercism-python"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue