Update
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ if "problem" in st.query_params:
|
|
49 |
|
50 |
with st.expander("Test Case Generator"):
|
51 |
test_case_generator = problem_instance["test_case_generator"]
|
52 |
-
prompt = "# For now, we only disclose the top 10 lines of the test case generator
|
53 |
test_case_generator = "\n".join(test_case_generator.split("\n")[:10])
|
54 |
st.code(prompt+test_case_generator)
|
55 |
|
|
|
49 |
|
50 |
with st.expander("Test Case Generator"):
|
51 |
test_case_generator = problem_instance["test_case_generator"]
|
52 |
+
prompt = "# For now, we only disclose the top 10 lines of the test case generator.\n# the full version will be released after the paper review process.\n"
|
53 |
test_case_generator = "\n".join(test_case_generator.split("\n")[:10])
|
54 |
st.code(prompt+test_case_generator)
|
55 |
|