From ce52d7445dc38369bf7ed8bde00a8c163bc0c996 Mon Sep 17 00:00:00 2001 From: Hamza Tahir Date: Mon, 11 Nov 2024 19:43:55 +0100 Subject: [PATCH] Update default ZenML model name to "zenml-docs-qa-chatbot". --- llm-complete-guide/gh_action_rag.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llm-complete-guide/gh_action_rag.py b/llm-complete-guide/gh_action_rag.py index 2873c7be..bfd3dbd3 100644 --- a/llm-complete-guide/gh_action_rag.py +++ b/llm-complete-guide/gh_action_rag.py @@ -67,7 +67,7 @@ @click.option( "--zenml-model-name", "zenml_model_name", - default="zenml-docs-qa-rag", + default="zenml-docs-qa-chatbot", help="Specify a ZenML model name", required=False, ) @@ -145,7 +145,7 @@ def main( )() # create new run template rt = client.create_run_template( - name=f"zenml-docs-qa-rag-{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}", + name=f"zenml-docs-qa-chatbot-{datetime.now().strftime('%Y-%m-%d_%H-%M-%S')}", deployment_id=run.deployment_id, )