PearlIsa commited on
Commit
9dea84d
·
verified ·
1 Parent(s): d57569a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -312,7 +312,7 @@ Guidelines:
312
  def _get_location(self, postcode):
313
  return "London" if postcode.startswith("L") else "Manchester"
314
 
315
- def _build_prompt(self, message, history):
316
  conversation = "\n".join([f"User: {user}\nAssistant: {bot}" for user, bot in history[-3:]])
317
  context = self.get_medical_context(message)
318
 
 
312
  def _get_location(self, postcode):
313
  return "London" if postcode.startswith("L") else "Manchester"
314
 
315
+ def _build_prompt(self, message, history):
316
  conversation = "\n".join([f"User: {user}\nAssistant: {bot}" for user, bot in history[-3:]])
317
  context = self.get_medical_context(message)
318