LangChain - LLM and Chat Model Integration
What is wrong with this code snippet?
from langchain.chat_models import ChatAnthropic
client = ChatAnthropic(model='claude-v1')
response = client.invoke({'message': [{'role': 'user', 'content': 'Hello'}]})