LangChain - RAG Chain Construction
Given this Langchain prompt template:
What will be printed?
template = "Hello, {name}! Your task is: {task}."
prompt = template.format(name="Alice", task="Translate text")
print(prompt)What will be printed?
