diff --git a/pipelines/examples/anthropic_manifold_pipeline.py b/pipelines/examples/anthropic_manifold_pipeline.py index 5ff9636..bfd3c14 100644 --- a/pipelines/examples/anthropic_manifold_pipeline.py +++ b/pipelines/examples/anthropic_manifold_pipeline.py @@ -1,5 +1,5 @@ """ -title: Anthropic Pipeline +title: Anthropic Manifold Pipeline author: justinh-rahb date: 2024-05-27 version: 1.0 diff --git a/pipelines/examples/cohere_manifold_pipeline.py b/pipelines/examples/cohere_manifold_pipeline.py index b4538a2..5100a60 100644 --- a/pipelines/examples/cohere_manifold_pipeline.py +++ b/pipelines/examples/cohere_manifold_pipeline.py @@ -1,11 +1,11 @@ """ -title: Anthropic Pipeline +title: Cohere Manifold Pipeline author: justinh-rahb -date: 2024-05-27 +date: 2024-05-28 version: 1.0 license: MIT description: A pipeline for generating text using the Anthropic API. -dependencies: requests, anthropic +dependencies: requests environment_variables: COHERE_API_KEY """ @@ -20,7 +20,7 @@ import requests class Pipeline: def __init__(self): self.type = "manifold" - self.id = "cohere_manifold" + self.id = "cohere" self.name = "Cohere/" class Valves(BaseModel):