From 4d39bde9fa3e430836fd94c7a08ba8783c101366 Mon Sep 17 00:00:00 2001 From: Philippe Moussalli Date: Wed, 29 Nov 2023 16:30:07 +0100 Subject: [PATCH] bump custom component version --- src/components/generate_prompts/fondant_component.yaml | 2 +- src/components/generate_prompts/requirements.txt | 2 +- src/components/write_to_hub_controlnet/fondant_component.yaml | 2 +- src/pipeline.ipynb | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/generate_prompts/fondant_component.yaml b/src/components/generate_prompts/fondant_component.yaml index 21a4797..c547c20 100644 --- a/src/components/generate_prompts/fondant_component.yaml +++ b/src/components/generate_prompts/fondant_component.yaml @@ -1,6 +1,6 @@ name: Generate prompts description: Component that generates a set of seed prompts -image: ghcr.io/ml6team/generate_prompts:0.6.2 +image: ghcr.io/ml6team/generate_prompts:0.7.0 produces: prompts: diff --git a/src/components/generate_prompts/requirements.txt b/src/components/generate_prompts/requirements.txt index 95a39d9..7c83e75 100644 --- a/src/components/generate_prompts/requirements.txt +++ b/src/components/generate_prompts/requirements.txt @@ -1 +1 @@ -fondant[aws,azure,gcp]==0.6.2 \ No newline at end of file +fondant[aws,azure,gcp, component]==0.7.0 \ No newline at end of file diff --git a/src/components/write_to_hub_controlnet/fondant_component.yaml b/src/components/write_to_hub_controlnet/fondant_component.yaml index 3699329..47c403e 100644 --- a/src/components/write_to_hub_controlnet/fondant_component.yaml +++ b/src/components/write_to_hub_controlnet/fondant_component.yaml @@ -1,6 +1,6 @@ name: Write to hub description: Component that writes a dataset to the hub -image: fndnt/write_to_hf_hub:0.6.2 # We use a docker image from the Fondant Hub instead of implementing our own. +image: fndnt/write_to_hf_hub:0.7.0 # We use a docker image from the Fondant Hub instead of implementing our own. consumes: # We fill in our data schema here. The component will write this data to the Hugging Face Hub. images: diff --git a/src/pipeline.ipynb b/src/pipeline.ipynb index f39c063..0ce62b2 100644 --- a/src/pipeline.ipynb +++ b/src/pipeline.ipynb @@ -339,7 +339,7 @@ "%%writefile components/write_to_hub_controlnet/fondant_component.yaml\n", "name: Write to hub\n", "description: Component that writes a dataset to the hub\n", - "image: fndnt/write_to_hf_hub:0.6.2 # We use a docker image from the Fondant Hub instead of implementing our own.\n", + "image: fndnt/write_to_hf_hub:0.7.0 # We use a docker image from the Fondant Hub instead of implementing our own.\n", "\n", "consumes: # We fill in our data schema here. The component will write this data to the Hugging Face Hub.\n", " images:\n", @@ -484,7 +484,7 @@ "run_explorer_app(\n", " base_path=BASE_PATH,\n", " container=\"fndnt/data_explorer\",\n", - " tag=\"latest\",\n", + " tag=\"0.7.0\",\n", " port=8501,\n", ")" ]