Update app.py
Browse files
app.py
CHANGED
@@ -142,7 +142,7 @@ if uploaded_files:
|
|
142 |
# Post Processing
|
143 |
post_prompt = f"""Except the last test case, display everything that is present in this end to end: \n\n{resp}\
|
144 |
\n\n Do not add anything extra. Just copy and paste everything except the last test case.
|
145 |
-
\n\n
|
146 |
"""
|
147 |
post_resp = res(prompt = post_prompt, model = model)
|
148 |
st.session_state.messages.append({"role": "assistant", "content": f"{post_resp}"})
|
|
|
142 |
# Post Processing
|
143 |
post_prompt = f"""Except the last test case, display everything that is present in this end to end: \n\n{resp}\
|
144 |
\n\n Do not add anything extra. Just copy and paste everything except the last test case.
|
145 |
+
\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"
|
146 |
"""
|
147 |
post_resp = res(prompt = post_prompt, model = model)
|
148 |
st.session_state.messages.append({"role": "assistant", "content": f"{post_resp}"})
|