diff --git a/pipelines/examples/anthropic_manifold_pipeline.py b/pipelines/examples/anthropic_manifold_pipeline.py index 3187bab..d472a90 100644 --- a/pipelines/examples/anthropic_manifold_pipeline.py +++ b/pipelines/examples/anthropic_manifold_pipeline.py @@ -22,7 +22,7 @@ class Pipeline: def __init__(self): self.type = "manifold" self.id = "anthropic" - self.name = "Anthropic/" + self.name = "anthropic/" class Valves(BaseModel): ANTHROPIC_API_KEY: str diff --git a/pipelines/examples/cohere_manifold_pipeline.py b/pipelines/examples/cohere_manifold_pipeline.py index 5100a60..1986b3c 100644 --- a/pipelines/examples/cohere_manifold_pipeline.py +++ b/pipelines/examples/cohere_manifold_pipeline.py @@ -21,7 +21,7 @@ class Pipeline: def __init__(self): self.type = "manifold" self.id = "cohere" - self.name = "Cohere/" + self.name = "cohere/" class Valves(BaseModel): COHERE_API_BASE_URL: str = "https://api.cohere.com/v1"