You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
The text was updated successfully, but these errors were encountered:
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!
The text was updated successfully, but these errors were encountered: