-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Description
Anthropic changed their python sdk - making this code line outdated.
MM-REACT/langchain/llms/anthropic.py
Line 70 in b8f29af
| values["client"] = anthropic.Client(anthropic_api_key) |
Would love to know if this might help - https://github.com/BerriAI/litellm
~Simple I/O library, that standardizes all the llm api calls to the OpenAI call
from litellm import completion
## set ENV variables
# ENV variables can be set in .env file, too. Example in .env.example
os.environ["OPENAI_API_KEY"] = "openai key"
os.environ["ANTHROPIC_API_KEY"] = "anthropic key"
messages = [{ "content": "Hello, how are you?","role": "user"}]
# openai call
response = completion(model="gpt-3.5-turbo", messages=messages)
# anthropic call
response = completion("claude-v-2", messages)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels