We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96495e8 commit cf091d0Copy full SHA for cf091d0
llm-complete-guide/gh_action_rag.py
@@ -99,6 +99,8 @@ def main(
99
zenml_model_name (str): The ZenML model name.
100
zenml_model_version (str): The ZenML model version.
101
"""
102
+ pipeline_args = {"enable_cache": not no_cache}
103
+
104
client = Client()
105
config_path = Path(__file__).parent / "configs" / config
106
@@ -154,7 +156,7 @@ def main(
154
156
name_id_or_prefix="LLM Complete (production)",
155
157
allow_name_prefix_match=True,
158
)
- except ZenKeyError:
159
+ except KeyError:
160
if not event_source_id:
161
raise RuntimeError(
162
"An event source is required for this workflow."
0 commit comments