diff --git a/basic-union-template/{{cookiecutter.project_name}}/requirements.txt b/basic-union-template/{{cookiecutter.project_name}}/requirements.txt index cc7b8d5..abdc440 100644 --- a/basic-union-template/{{cookiecutter.project_name}}/requirements.txt +++ b/basic-union-template/{{cookiecutter.project_name}}/requirements.txt @@ -1 +1 @@ -unionai +union diff --git a/basic-union-template/{{cookiecutter.project_name}}/workflows/example.py b/basic-union-template/{{cookiecutter.project_name}}/workflows/example.py index a81daa6..07591cc 100644 --- a/basic-union-template/{{cookiecutter.project_name}}/workflows/example.py +++ b/basic-union-template/{{cookiecutter.project_name}}/workflows/example.py @@ -1,6 +1,6 @@ """Basic Union workflow template.""" -from unionai import task, workflow, ImageSpec +from union import task, workflow, ImageSpec # ImageSpec defines the container image used for the Kubernetes pods that run the tasks in Union. image_spec = ImageSpec( @@ -20,7 +20,7 @@ # # Make sure that: # - # * You subsitutue the actual name of the registry here. + # * You substitute the actual name of the registry here. # (for example if you are using GitHub's GHCR, you would # use "https://ghcr.io/"). #