Skip to content

Commit

Permalink
Restructured folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
allegra-noto committed Mar 31, 2024
1 parent 54cc7be commit e646091
Show file tree
Hide file tree
Showing 37 changed files with 596 additions and 751 deletions.
15 changes: 5 additions & 10 deletions google_cloud_automlops/AutoMLOps.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,12 @@
write_file
)
# Orchestration imports
from google_cloud_automlops.orchestration.enums import (
from google_cloud_automlops.orchestration.base import (
Orchestrator,
PipelineJobSubmitter
)

from google_cloud_automlops.orchestration.Component import Component
from google_cloud_automlops.orchestration.Pipeline import Pipeline
from google_cloud_automlops.orchestration.Services import Services
from google_cloud_automlops.orchestration.kfp.KFPComponent import KFPComponent
from google_cloud_automlops.orchestration.kfp.KFPPipeline import KFPPipeline
from google_cloud_automlops.orchestration.kfp.KFPServices import KFPServices
from google_cloud_automlops.orchestration.base import BaseComponent, BasePipeline, BaseServices
from google_cloud_automlops.orchestration.kfp import KFPComponent, KFPPipeline, KFPServices

# Provisioning imports
from google_cloud_automlops.provisioning.pulumi import builder as PulumiBuilder
Expand Down Expand Up @@ -562,7 +557,7 @@ def my_function_one(input: str, output: Output[Model]):
component,
packages_to_install=packages_to_install)
else:
components_dict[func.__name__] = Component(
components_dict[func.__name__] = BaseComponent(
func=func,
packages_to_install=packages_to_install
)
Expand Down Expand Up @@ -603,7 +598,7 @@ def pipeline(bq_table: str,
description=description)
else:
global pipeline_glob
pipeline_glob = Pipeline(func=func,
pipeline_glob = BasePipeline(func=func,
name=name,
description=description,
comps_dict=components_dict)
Expand Down
169 changes: 0 additions & 169 deletions google_cloud_automlops/orchestration/Component.py

This file was deleted.

141 changes: 0 additions & 141 deletions google_cloud_automlops/orchestration/Pipeline.py

This file was deleted.

Loading

0 comments on commit e646091

Please sign in to comment.