LangChain - Fundamentals
Identify the error in this LangChain code snippet:
from langchain import LLMChain, PromptTemplate
prompt = PromptTemplate(template="What is {topic}?")
chain = LLMChain(prompt=prompt, llm=None)
result = chain.run(topic="Python")