harmonization

This commit is contained in:
Justin Hayes 2024-05-29 08:58:57 -04:00 committed by GitHub
parent 26eaf4ab19
commit 19c3fb4954
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
"""
title: Anthropic Pipeline
title: Anthropic Manifold Pipeline
author: justinh-rahb
date: 2024-05-27
version: 1.0

View File

@ -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):