From b1e7970e918539b164ea4932602ed38e89450283 Mon Sep 17 00:00:00 2001 From: Hamza Tahir Date: Mon, 11 Nov 2024 21:07:41 +0100 Subject: [PATCH] Update gh_action_rag.py to remove action_id parameter --- .github/workflows/production_run_complete_llm.yml | 2 +- llm-complete-guide/gh_action_rag.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/production_run_complete_llm.yml b/.github/workflows/production_run_complete_llm.yml index 49834dc3..56d37f4f 100644 --- a/.github/workflows/production_run_complete_llm.yml +++ b/.github/workflows/production_run_complete_llm.yml @@ -57,4 +57,4 @@ jobs: - name: Run pipeline, create pipeline, configure trigger (Production) working-directory: ./llm-complete-guide run: | - python gh_action_rag.py --no-cache --create-template --event-source-id --service-account-id ${{ env.ZENML_SERVICE_ACCOUNT_ID }} --action-id ${{ env.ZENML_ACTION_ID }} --config production/rag.yaml --zenml-model-version production \ No newline at end of file + python gh_action_rag.py --no-cache --create-template --event-source-id --service-account-id ${{ env.ZENML_SERVICE_ACCOUNT_ID }} --config production/rag.yaml --zenml-model-version production \ No newline at end of file diff --git a/llm-complete-guide/gh_action_rag.py b/llm-complete-guide/gh_action_rag.py index bfd3dbd3..00c0cc12 100644 --- a/llm-complete-guide/gh_action_rag.py +++ b/llm-complete-guide/gh_action_rag.py @@ -94,7 +94,6 @@ def main( no_cache (bool): If `True`, cache will be disabled. config (str): The path to the configuration file. create_template (bool): If `True`, a run template will be created. - action_id (str): The action ID. service_account_id (str): The service account ID. event_source_id (str): The event source ID. zenml_model_name (str): The ZenML model name.