LangChain - Prompt Templates
What is wrong with this chaining code snippet?
from langchain import PromptTemplate, LLMChain
prompt1 = PromptTemplate(template="{greeting}, {name}!")
chain = LLMChain(prompt=prompt1)
output = chain.run(greeting="Hi")
print(output)