CoolFace
Apppublic

svijayanand/Podcast_Oracle

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
prompts.py21 linesDownload Raw Back to helpers
1from langchain.prompts import PromptTemplate2 3prompt_template = """4Write a concise bullet point summary of the following:5 6{text}7 8CONSCISE SUMMARY IN BULLET POINTS:9"""10 11BULLET_POINT_PROMPT = PromptTemplate(template=prompt_template, input_variables=["text"])12 13prompt_template = """14Write a concise summary of the following:15 16{text}17 18CONSCISE SUMMARY IN BULLET POINTS:"""19 20PROMPT = PromptTemplate(template=prompt_template, input_variables=["text"])21