From 6a80cfb78e988113facbb73b4feba0d8dbc42d18 Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sun, 15 Feb 2026 08:03:21 +0100 Subject: [PATCH] refactor: move models.py into providers package --- bulkgen/cli.py | 2 +- bulkgen/{ => providers}/models.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename bulkgen/{ => providers}/models.py (100%) 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