diff --git a/README.md b/README.md index 0cdecc2..8e95fe9 100644 --- a/README.md +++ b/README.md @@ -54,12 +54,12 @@ To immediately use a LLM model for your NLP task, we provide the `Pipeline` API. ```python from promptify import Prompter,OpenAI, Pipeline -sentence = "The patient is a 93-year-old female with a medical +sentence = """The patient is a 93-year-old female with a medical history of chronic right hip pain, osteoporosis, hypertension, depression, and chronic atrial fibrillation admitted for evaluation and management of severe nausea and vomiting and urinary tract - infection" + infection""" model = OpenAI(api_key) # or `HubModel()` for Huggingface-based inference or 'Azure' etc prompter = Prompter('ner.jinja') # select a template or provide custom template