Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for evals with no args (#1517)
As raised in #1515, the `args` field of `EvalSpec` is optional. Therefore it is possible for evals with no args to exist. Here `args` is `None`. However, currently our [arg overriding code](https://github.com/openai/evals/blame/main/evals/cli/oaieval.py#L158) mistakingly does not support this API, since it assumes `args` is not `None`. This PR addresses the issue with an if statement. Fixes #1515
- Loading branch information