LangChain - LLM and Chat Model Integration
Identify the mistake in this code snippet that attempts to create a HuggingFaceHub instance:
from langchain.llms import HuggingFaceHub
hub = HuggingFaceHub('facebook/bart-large')
response = hub.run('Hello')
print(response)