diff --git a/examples/pipelines/providers/litellm_manifold_pipeline.py b/examples/pipelines/providers/litellm_manifold_pipeline.py index 40c891c..0b6771f 100644 --- a/examples/pipelines/providers/litellm_manifold_pipeline.py +++ b/examples/pipelines/providers/litellm_manifold_pipeline.py @@ -70,7 +70,7 @@ class Pipeline: print(f"Error: {e}") return [ { - "id": self.id, + "id": "error", "name": "Could not fetch models from LiteLLM, please update the URL in the valves.", }, ] diff --git a/examples/pipelines/providers/litellm_subprocess_manifold_pipeline.py b/examples/pipelines/providers/litellm_subprocess_manifold_pipeline.py index 4fab306..4213c36 100644 --- a/examples/pipelines/providers/litellm_subprocess_manifold_pipeline.py +++ b/examples/pipelines/providers/litellm_subprocess_manifold_pipeline.py @@ -173,7 +173,7 @@ class Pipeline: print(f"Error: {e}") return [ { - "id": self.id, + "id": "error", "name": "Could not fetch models from LiteLLM, please update the URL in the valves.", }, ]