Hi, thanks for your work.
I try to run this:
python -m alpha_codium.solve_my_problem --my_problem_json_file /path/to/my_problem.json
with my_problem_example.json like:
{ "name": "Median of Two Sorted Arrays", "description": "Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.", "public_tests": { "input": [], "is_valid_test": null, "output": [] }, "private_tests": { "input": [], "is_valid_test": null, "output": [] } }
Then I meet this error:ERROR:root:Failed 'run_validate_self_reflect', Error: exceptions must derive from BaseException.
So how can I use this flow on a problem without test cases?
Thanks a lot!
Hi, thanks for your work.
I try to run this:
python -m alpha_codium.solve_my_problem --my_problem_json_file /path/to/my_problem.jsonwith my_problem_example.json like:
{ "name": "Median of Two Sorted Arrays", "description": "Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.", "public_tests": { "input": [], "is_valid_test": null, "output": [] }, "private_tests": { "input": [], "is_valid_test": null, "output": [] } }Then I meet this error:ERROR:root:Failed 'run_validate_self_reflect', Error: exceptions must derive from BaseException.
So how can I use this flow on a problem without test cases?
Thanks a lot!