datawithsuman commited on
Commit
ac315d9
·
verified ·
1 Parent(s): 5c27ab5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -181,7 +181,8 @@ if uploaded_files:
181
  # Post Processing
182
  post_prompt = f"""Except the last test case, display everything that is present in this end to end: \n\n{resp}\
183
  \n\n Do not add anything extra. Just copy and paste everything except the last test case.
184
- \n\n Do not mention the count of total number of test cases in the response nor mention "I have excluded the last test case as per your request"
 
185
  """
186
  post_resp = res(prompt = post_prompt, model = model)
187
  st.session_state.messages.append({"role": "assistant", "content": f"{post_resp}"})
 
181
  # Post Processing
182
  post_prompt = f"""Except the last test case, display everything that is present in this end to end: \n\n{resp}\
183
  \n\n Do not add anything extra. Just copy and paste everything except the last test case.
184
+ \n\n Do not mention the count of total number of test cases in the response.
185
+ \n\n Do not mention this sentence - "I have excluded the last test case as per your request"
186
  """
187
  post_resp = res(prompt = post_prompt, model = model)
188
  st.session_state.messages.append({"role": "assistant", "content": f"{post_resp}"})