Elfsong commited on
Commit
63dcee3
·
1 Parent(s): 0ea4232
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,8 +49,8 @@ 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.\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
 
56
 
 
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 20 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")[:20])
54
  st.code(prompt+test_case_generator)
55
 
56