LangChain - Fundamentals
Given this LangChain snippet, what will be the output type of
response?
from langchain import LLMChain, PromptTemplate
prompt = PromptTemplate(template="Hello, {name}!")
chain = LLMChain(prompt=prompt)
response = chain.run(name="Alice")