LangChain - Chains and LCEL
Given this code snippet, what will be the output of
result?
from langchain.chains import LLMChain
llm = SomeLLM()
prompt = "Translate English to French: {text}"
chain = LLMChain(llm=llm, prompt=prompt)
result = chain.run({"text": "Hello"})