From 84cfa62cd4a0a7656ad33214c0d9ef4b0fc18889 Mon Sep 17 00:00:00 2001 From: Justin Hayes Date: Sun, 2 Jun 2024 22:08:49 -0400 Subject: [PATCH] Fix id --- examples/pipelines/providers/cohere_manifold_pipeline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/pipelines/providers/cohere_manifold_pipeline.py b/examples/pipelines/providers/cohere_manifold_pipeline.py index c99f8c3..4bdd7fe 100644 --- a/examples/pipelines/providers/cohere_manifold_pipeline.py +++ b/examples/pipelines/providers/cohere_manifold_pipeline.py @@ -29,7 +29,8 @@ class Pipeline: # Best practice is to not specify the id so that it can be automatically inferred from the filename, so that users can install multiple versions of the same pipeline. # The identifier must be unique across all pipelines. # The identifier must be an alphanumeric string that can include underscores or hyphens. It cannot contain spaces, special characters, slashes, or backslashes. - # self.id = "cohere" + + self.id = "cohere" self.name = "cohere/"