refactor: move models.py into providers package

This commit is contained in:
Konstantin Fickel 2026-02-15 08:03:21 +01:00
parent 6a7de0d031
commit 6a80cfb78e
Signed by: kfickel
GPG key ID: A793722F9933C1A5
2 changed files with 1 additions and 1 deletions

View file

@ -13,7 +13,7 @@ import typer
from bulkgen.builder import BuildEvent, BuildResult, run_build
from bulkgen.config import ProjectConfig, load_config
from bulkgen.graph import build_graph, get_build_order
from bulkgen.models import ALL_MODELS
from bulkgen.providers.models import ALL_MODELS
app = typer.Typer(name="bulkgen", help="AI artifact build tool.")