kenton-li commited on
Commit
b613472
·
1 Parent(s): df0437c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -139,7 +139,7 @@ with gr.Blocks() as demo:
139
 
140
  question = ""
141
  for each_ques in history:
142
- question = each_ques[0]+" ; "
143
 
144
  response = csv_prompter(question,csv_name)
145
 
 
139
 
140
  question = ""
141
  for each_ques in history:
142
+ question = question+ each_ques[0].replace("Patient: ","")+" \n"
143
 
144
  response = csv_prompter(question,csv_name)
145