diff --git a/bulkgen/cli.py b/bulkgen/cli.py index aa6c6a8..a41933a 100644 --- a/bulkgen/cli.py +++ b/bulkgen/cli.py @@ -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.") diff --git a/bulkgen/models.py b/bulkgen/providers/models.py similarity index 100% rename from bulkgen/models.py rename to bulkgen/providers/models.py