Spaces:
Runtime error
Runtime error
File size: 399 Bytes
63deadc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# flake8: noqa
from langchain_core.prompts import PromptTemplate
prompt_template = """Use the following pieces of context to answer the question at the end. If you don't know the answer, just say that you don't know, don't try to make up an answer.
{context}
Question: {question}
Helpful Answer:"""
PROMPT = PromptTemplate(
template=prompt_template, input_variables=["context", "question"]
)
|